diff --git a/dev/develop.html b/dev/develop.html index 90362f2068..d1b720d548 100644 --- a/dev/develop.html +++ b/dev/develop.html @@ -300,6 +300,20 @@

Sample output max: 16995.32ms total time: 16995.32ms total time: 17014.19ms + +

Macro expansion

+

For example if you have code like in path/to/file.rs

+
#![allow(unused)]
+fn main() {
+#[extern_spec]
+#[flux::refined_by(elems: Set<T>)]
+struct HashSet<T, S = RandomState>;
+}
+

and you want to see what the extern_spec macro expands it out to, then run

+
cargo x run -- -Zunpretty=expanded path/to/file.rs
+
+

Or you can run the xtask command directly

+
cargo x expand path/to/file.rs
 
diff --git a/doc/flux_desugar/desugar/fn.resolve_num_const.html b/doc/flux_desugar/desugar/fn.resolve_num_const.html index a7325dcd9a..e71ec560e8 100644 --- a/doc/flux_desugar/desugar/fn.resolve_num_const.html +++ b/doc/flux_desugar/desugar/fn.resolve_num_const.html @@ -1 +1 @@ -resolve_num_const in flux_desugar::desugar - Rust
fn resolve_num_const(typ: Ident, name: Ident) -> Option<QPathRes<'static>>
\ No newline at end of file +resolve_num_const in flux_desugar::desugar - Rust
fn resolve_num_const(typ: Ident, name: Ident) -> Option<QPathRes<'static>>
\ No newline at end of file diff --git a/doc/flux_desugar/desugar/index.html b/doc/flux_desugar/desugar/index.html index 8164534312..65eb73dac7 100644 --- a/doc/flux_desugar/desugar/index.html +++ b/doc/flux_desugar/desugar/index.html @@ -1 +1 @@ -flux_desugar::desugar - Rust

Module flux_desugar::desugar

source ·

Modules

  • env 🔒
  • gather 🔒
    Gathering is the process of building an Env for a surface item.

Macros

Structs

Enums

Traits

Functions

Type Aliases

\ No newline at end of file +flux_desugar::desugar - Rust

Module flux_desugar::desugar

source ·

Modules

  • env 🔒
  • gather 🔒
    Gathering is the process of building an Env for a surface item.

Macros

Structs

Enums

Traits

Functions

Type Aliases

\ No newline at end of file diff --git a/doc/flux_desugar/desugar/macro.define_resolve_num_const.html b/doc/flux_desugar/desugar/macro.define_resolve_num_const.html index dbf3481274..f0f41783e1 100644 --- a/doc/flux_desugar/desugar/macro.define_resolve_num_const.html +++ b/doc/flux_desugar/desugar/macro.define_resolve_num_const.html @@ -1,3 +1,3 @@ -define_resolve_num_const in flux_desugar::desugar - Rust
macro_rules! define_resolve_num_const {
+define_resolve_num_const in flux_desugar::desugar - Rust
macro_rules! define_resolve_num_const {
     ($($typ:ident),*) => { ... };
 }
\ No newline at end of file diff --git a/doc/flux_desugar/desugar/struct.FluxItemCtxt.html b/doc/flux_desugar/desugar/struct.FluxItemCtxt.html index 25675d0133..8f0af6637c 100644 --- a/doc/flux_desugar/desugar/struct.FluxItemCtxt.html +++ b/doc/flux_desugar/desugar/struct.FluxItemCtxt.html @@ -2,7 +2,7 @@ genv: &'a GlobalEnv<'a, 'tcx>, local_id_gen: IndexGen<ItemLocalId>, owner: Symbol, -}

Fields§

§genv: &'a GlobalEnv<'a, 'tcx>§local_id_gen: IndexGen<ItemLocalId>§owner: Symbol

Implementations§

source§

impl<'a, 'tcx> FluxItemCtxt<'a, 'tcx>

source

fn new(genv: &'a GlobalEnv<'a, 'tcx>, owner: Symbol) -> Self

Trait Implementations§

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for FluxItemCtxt<'a, 'tcx>

source§

fn next_fhir_id(&self) -> FhirId

source§

fn genv(&self) -> &'a GlobalEnv<'a, 'tcx>

source§

fn desugar_expr( +}

Fields§

§genv: &'a GlobalEnv<'a, 'tcx>§local_id_gen: IndexGen<ItemLocalId>§owner: Symbol

Implementations§

source§

impl<'a, 'tcx> FluxItemCtxt<'a, 'tcx>

source

fn new(genv: &'a GlobalEnv<'a, 'tcx>, owner: Symbol) -> Self

Trait Implementations§

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for FluxItemCtxt<'a, 'tcx>

source§

fn next_fhir_id(&self) -> FhirId

source§

fn genv(&self) -> &'a GlobalEnv<'a, 'tcx>

source§

fn desugar_expr( &self, env: &mut Env<Param>, expr: &Expr @@ -10,19 +10,23 @@ &self, env: &mut Env<Param>, exprs: &[Expr] -) -> Result<Vec<Expr>, ErrorGuaranteed>

source§

fn desugar_lit(&self, span: Span, lit: Lit) -> Result<Lit, ErrorGuaranteed>

source§

fn resolve_func( +) -> Result<Vec<Expr>, ErrorGuaranteed>

source§

fn try_parse_int_lit( + &self, + span: Span, + s: &str +) -> Result<i128, ErrorGuaranteed>

source§

fn desugar_lit(&self, span: Span, lit: Lit) -> Result<Lit, ErrorGuaranteed>

source§

fn resolve_func( &self, env: &Env<Param>, func: Ident -) -> Result<FuncRes<'a>, ErrorGuaranteed>

source§

fn resolve_qpath( +) -> Result<FuncRes<'a>, ErrorGuaranteed>

source§

fn resolve_qpath( &self, env: &Env<Param>, qpath: &QPathExpr -) -> Result<QPathRes<'a>, ErrorGuaranteed>

source§

fn resolve_loc( +) -> Result<QPathRes<'a>, ErrorGuaranteed>

source§

fn resolve_loc( &self, env: &Env<Param>, loc: Ident -) -> Result<Ident, ErrorGuaranteed>

source§

fn emit_err(&self, err: impl IntoDiagnostic<'a>) -> ErrorGuaranteed

Auto Trait Implementations§

§

impl<'a, 'tcx> !RefUnwindSafe for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Send for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for FluxItemCtxt<'a, 'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere +) -> Result<Ident, ErrorGuaranteed>

source§

fn emit_err(&self, err: impl IntoDiagnostic<'a>) -> ErrorGuaranteed

Auto Trait Implementations§

§

impl<'a, 'tcx> !RefUnwindSafe for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Send for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for FluxItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for FluxItemCtxt<'a, 'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/doc/flux_desugar/desugar/struct.RustItemCtxt.html b/doc/flux_desugar/desugar/struct.RustItemCtxt.html index beeafa62ac..1c7aed6315 100644 --- a/doc/flux_desugar/desugar/struct.RustItemCtxt.html +++ b/doc/flux_desugar/desugar/struct.RustItemCtxt.html @@ -189,7 +189,7 @@ &mut self, ret: &VariantRet, env: &mut Env<Param> -) -> Result<VariantRet, ErrorGuaranteed>
source

fn insert_opaque_ty(&mut self, def_id: LocalDefId, opaque_ty: OpaqueTy)

source

fn sess(&self) -> &'a FluxSession

source

fn emit_err<'b>(&'b self, err: impl IntoDiagnostic<'b>) -> ErrorGuaranteed

Trait Implementations§

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for RustItemCtxt<'a, 'tcx>

source§

fn next_fhir_id(&self) -> FhirId

source§

fn genv(&self) -> &'a GlobalEnv<'a, 'tcx>

source§

fn desugar_expr( +) -> Result<VariantRet, ErrorGuaranteed>

source

fn insert_opaque_ty(&mut self, def_id: LocalDefId, opaque_ty: OpaqueTy)

source

fn sess(&self) -> &'a FluxSession

source

fn emit_err<'b>(&'b self, err: impl IntoDiagnostic<'b>) -> ErrorGuaranteed

Trait Implementations§

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for RustItemCtxt<'a, 'tcx>

source§

fn next_fhir_id(&self) -> FhirId

source§

fn genv(&self) -> &'a GlobalEnv<'a, 'tcx>

source§

fn desugar_expr( &self, env: &mut Env<Param>, expr: &Expr @@ -197,19 +197,23 @@ &self, env: &mut Env<Param>, exprs: &[Expr] -) -> Result<Vec<Expr>, ErrorGuaranteed>

source§

fn desugar_lit(&self, span: Span, lit: Lit) -> Result<Lit, ErrorGuaranteed>

source§

fn resolve_func( +) -> Result<Vec<Expr>, ErrorGuaranteed>

source§

fn try_parse_int_lit( + &self, + span: Span, + s: &str +) -> Result<i128, ErrorGuaranteed>

source§

fn desugar_lit(&self, span: Span, lit: Lit) -> Result<Lit, ErrorGuaranteed>

source§

fn resolve_func( &self, env: &Env<Param>, func: Ident -) -> Result<FuncRes<'a>, ErrorGuaranteed>

source§

fn resolve_qpath( +) -> Result<FuncRes<'a>, ErrorGuaranteed>

source§

fn resolve_qpath( &self, env: &Env<Param>, qpath: &QPathExpr -) -> Result<QPathRes<'a>, ErrorGuaranteed>

source§

fn resolve_loc( +) -> Result<QPathRes<'a>, ErrorGuaranteed>

source§

fn resolve_loc( &self, env: &Env<Param>, loc: Ident -) -> Result<Ident, ErrorGuaranteed>

source§

fn emit_err(&self, err: impl IntoDiagnostic<'a>) -> ErrorGuaranteed

Auto Trait Implementations§

§

impl<'a, 'tcx> !RefUnwindSafe for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Send for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for RustItemCtxt<'a, 'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere +) -> Result<Ident, ErrorGuaranteed>

source§

fn emit_err(&self, err: impl IntoDiagnostic<'a>) -> ErrorGuaranteed

Auto Trait Implementations§

§

impl<'a, 'tcx> !RefUnwindSafe for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Send for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for RustItemCtxt<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for RustItemCtxt<'a, 'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/doc/flux_desugar/desugar/trait.DesugarCtxt.html b/doc/flux_desugar/desugar/trait.DesugarCtxt.html index a67d735450..e61d20e6a1 100644 --- a/doc/flux_desugar/desugar/trait.DesugarCtxt.html +++ b/doc/flux_desugar/desugar/trait.DesugarCtxt.html @@ -1,4 +1,4 @@ -DesugarCtxt in flux_desugar::desugar - Rust
trait DesugarCtxt<'a, 'tcx: 'a> {
+DesugarCtxt in flux_desugar::desugar - Rust
trait DesugarCtxt<'a, 'tcx: 'a> {
     // Required methods
     fn genv(&self) -> &'a GlobalEnv<'a, 'tcx>;
     fn next_fhir_id(&self) -> FhirId;
@@ -14,6 +14,11 @@
         env: &mut Env<Param>,
         exprs: &[Expr]
     ) -> Result<Vec<Expr>, ErrorGuaranteed> { ... }
+    fn try_parse_int_lit(
+        &self,
+        span: Span,
+        s: &str
+    ) -> Result<i128, ErrorGuaranteed> { ... }
     fn desugar_lit(&self, span: Span, lit: Lit) -> Result<Lit, ErrorGuaranteed> { ... }
     fn resolve_func(
         &self,
@@ -39,16 +44,20 @@
     &self,
     env: &mut Env<Param>,
     exprs: &[Expr]
-) -> Result<Vec<Expr>, ErrorGuaranteed>
source

fn desugar_lit(&self, span: Span, lit: Lit) -> Result<Lit, ErrorGuaranteed>

source

fn resolve_func( +) -> Result<Vec<Expr>, ErrorGuaranteed>

source

fn try_parse_int_lit( + &self, + span: Span, + s: &str +) -> Result<i128, ErrorGuaranteed>

source

fn desugar_lit(&self, span: Span, lit: Lit) -> Result<Lit, ErrorGuaranteed>

source

fn resolve_func( &self, env: &Env<Param>, func: Ident -) -> Result<FuncRes<'a>, ErrorGuaranteed>

source

fn resolve_qpath( +) -> Result<FuncRes<'a>, ErrorGuaranteed>

source

fn resolve_qpath( &self, env: &Env<Param>, qpath: &QPathExpr -) -> Result<QPathRes<'a>, ErrorGuaranteed>

source

fn resolve_loc( +) -> Result<QPathRes<'a>, ErrorGuaranteed>

source

fn resolve_loc( &self, env: &Env<Param>, loc: Ident -) -> Result<Ident, ErrorGuaranteed>

source

fn emit_err(&self, err: impl IntoDiagnostic<'a>) -> ErrorGuaranteed

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for FluxItemCtxt<'a, 'tcx>

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for RustItemCtxt<'a, 'tcx>

\ No newline at end of file +) -> Result<Ident, ErrorGuaranteed>
source

fn emit_err(&self, err: impl IntoDiagnostic<'a>) -> ErrorGuaranteed

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for FluxItemCtxt<'a, 'tcx>

source§

impl<'a, 'tcx> DesugarCtxt<'a, 'tcx> for RustItemCtxt<'a, 'tcx>

\ No newline at end of file diff --git a/doc/flux_middle/fhir/enum.InferMode.html b/doc/flux_middle/fhir/enum.InferMode.html index c1ac1ee1ca..725d94b315 100644 --- a/doc/flux_middle/fhir/enum.InferMode.html +++ b/doc/flux_middle/fhir/enum.InferMode.html @@ -12,7 +12,7 @@ H: Hasher, Self: Sized,
Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for InferMode

source§

fn eq(&self, other: &InferMode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl SliceInternable for InferMode

source§

impl Copy for InferMode

source§

impl Eq for InferMode

source§

impl StructuralEq for InferMode

source§

impl StructuralPartialEq for InferMode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl SliceInternable for InferMode

source§

impl Copy for InferMode

source§

impl Eq for InferMode

source§

impl StructuralEq for InferMode

source§

impl StructuralPartialEq for InferMode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/global_env/index.html b/doc/flux_middle/global_env/index.html index 2c9829e2bd..72ddecf36d 100644 --- a/doc/flux_middle/global_env/index.html +++ b/doc/flux_middle/global_env/index.html @@ -1 +1 @@ -flux_middle::global_env - Rust

Module flux_middle::global_env

source ·

Structs

\ No newline at end of file +flux_middle::global_env - Rust

Module flux_middle::global_env

source ·

Structs

\ No newline at end of file diff --git a/doc/flux_middle/global_env/struct.GlobalEnv.html b/doc/flux_middle/global_env/struct.GlobalEnv.html index 8ec93feba4..22b4583205 100644 --- a/doc/flux_middle/global_env/struct.GlobalEnv.html +++ b/doc/flux_middle/global_env/struct.GlobalEnv.html @@ -4,7 +4,7 @@ cstore: Box<CrateStoreDyn>, map: Map, queries: Queries<'tcx>, -}

Fields§

§tcx: TyCtxt<'tcx>§sess: &'sess FluxSession§cstore: Box<CrateStoreDyn>§map: Map§queries: Queries<'tcx>

Implementations§

source§

impl<'sess, 'tcx> GlobalEnv<'sess, 'tcx>

source

pub fn new( +}

Fields§

§tcx: TyCtxt<'tcx>§sess: &'sess FluxSession§cstore: Box<CrateStoreDyn>§map: Map§queries: Queries<'tcx>

Implementations§

source§

impl<'sess, 'tcx> GlobalEnv<'sess, 'tcx>

source

pub fn new( tcx: TyCtxt<'tcx>, sess: &'sess FluxSession, cstore: Box<CrateStoreDyn> @@ -47,34 +47,34 @@ ) -> Vec<Sort>

source

pub fn has_equality(&self, sort: &Sort) -> bool

Whether values of this sort can be compared for equality.

source

fn ctor_has_equality(&self, _: &SortCtor, args: &[Sort]) -> bool

For now all sort constructors have equality if all the generic arguments do. In the future we may have a more fine-grained notion of equality for sort constructors.

-
source

pub fn field_sort( +

source

pub fn field_sort( &self, def_id: DefId, sort_args: List<Sort>, fld: Symbol -) -> Option<Sort>

source

pub fn field_index(&self, def_id: DefId, fld: Symbol) -> Option<usize>

source

pub fn refine_default_generic_args( +) -> Option<Sort>

source

pub fn field_index(&self, def_id: DefId, fld: Symbol) -> Option<usize>

source

pub fn refine_default_generic_args( &self, generics: &Generics, args: &GenericArgs -) -> QueryResult<GenericArgs>

source

pub fn refine_default( +) -> QueryResult<GenericArgs>

source

pub fn refine_default( &self, generics: &Generics, rustc_ty: &Ty -) -> QueryResult<Ty>

source

pub fn refine_with_holes( +) -> QueryResult<Ty>

source

pub fn refine_with_holes( &self, generics: &Generics, rustc_ty: &Ty -) -> QueryResult<Ty>

source

pub fn instantiate_arg_for_fun( +) -> QueryResult<Ty>

source

pub fn instantiate_arg_for_fun( &self, generics: &Generics, param: &GenericParamDef, arg: &GenericArg -) -> QueryResult<GenericArg>

source

pub fn instantiate_arg_for_constructor( +) -> QueryResult<GenericArg>

source

pub fn instantiate_arg_for_constructor( &self, generics: &Generics, param: &GenericParamDef, arg: &GenericArg -) -> QueryResult<GenericArg>

source

pub(crate) fn cstore(&self) -> &CrateStoreDyn

source

pub fn hir(&self) -> Map<'tcx>

source

pub(crate) fn lookup_extern(&self, def_id: DefId) -> Option<DefId>

source

pub(crate) fn is_fn_once_output(&self, def_id: DefId) -> bool

Auto Trait Implementations§

§

impl<'sess, 'tcx> !RefUnwindSafe for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> !Send for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> !Sync for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> Unpin for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> !UnwindSafe for GlobalEnv<'sess, 'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere +) -> QueryResult<GenericArg>

source

pub(crate) fn cstore(&self) -> &CrateStoreDyn

source

pub fn hir(&self) -> Map<'tcx>

source

pub(crate) fn lookup_extern(&self, def_id: DefId) -> Option<DefId>

source

pub(crate) fn is_fn_once_output(&self, def_id: DefId) -> bool

Auto Trait Implementations§

§

impl<'sess, 'tcx> !RefUnwindSafe for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> !Send for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> !Sync for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> Unpin for GlobalEnv<'sess, 'tcx>

§

impl<'sess, 'tcx> !UnwindSafe for GlobalEnv<'sess, 'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/doc/flux_middle/intern/struct.Interned.html b/doc/flux_middle/intern/struct.Interned.html index cb251b7127..f369cc0ebf 100644 --- a/doc/flux_middle/intern/struct.Interned.html +++ b/doc/flux_middle/intern/struct.Interned.html @@ -42,17 +42,17 @@ generics: &Generics, mk_kind: &mut F ) -> QueryResult<()>where - F: FnMut(&GenericParamDef, &[GenericArg]) -> GenericArg,
source§

impl Interned<[GenericArg]>

source§

impl Interned<[BoundVariableKind]>

source

pub fn to_sort_list(&self) -> List<Sort>

source§

impl Interned<TyS>

source

pub fn alias(kind: AliasKind, alias_ty: AliasTy) -> Ty

source

pub fn opaque( + F: FnMut(&GenericParamDef, &[GenericArg]) -> GenericArg,

source§

impl Interned<[GenericArg]>

source§

impl Interned<[BoundVariableKind]>

source

pub fn to_sort_list(&self) -> List<Sort>

source§

impl Interned<TyS>

source

pub fn alias(kind: AliasKind, alias_ty: AliasTy) -> Ty

source

pub fn opaque( def_id: impl Into<DefId>, args: GenericArgs, refine_args: RefineArgs -) -> Ty

source

pub fn projection(alias_ty: AliasTy) -> Ty

source

pub fn ptr(pk: impl Into<PtrKind>, path: impl Into<Path>) -> Ty

source

pub fn constr(p: impl Into<Expr>, ty: Ty) -> Ty

source

pub fn uninit() -> Ty

source

pub fn indexed(bty: BaseTy, idx: impl Into<Index>) -> Ty

source

pub fn exists(ty: Binder<Ty>) -> Ty

source

pub fn exists_with_constr(bty: BaseTy, pred: Expr) -> Ty

source

pub fn discr(adt_def: AdtDef, place: Place) -> Ty

source

pub fn unit() -> Ty

source

pub fn bool() -> Ty

source

pub fn int(int_ty: IntTy) -> Ty

source

pub fn uint(uint_ty: UintTy) -> Ty

source

pub fn param(param_ty: ParamTy) -> Ty

source

pub fn downcast( +) -> Ty

source

pub fn projection(alias_ty: AliasTy) -> Ty

source

pub fn ptr(pk: impl Into<PtrKind>, path: impl Into<Path>) -> Ty

source

pub fn constr(p: impl Into<Expr>, ty: Ty) -> Ty

source

pub fn uninit() -> Ty

source

pub fn indexed(bty: BaseTy, idx: impl Into<Index>) -> Ty

source

pub fn exists(ty: Binder<Ty>) -> Ty

source

pub fn exists_with_constr(bty: BaseTy, pred: Expr) -> Ty

source

pub fn discr(adt_def: AdtDef, place: Place) -> Ty

source

pub fn unit() -> Ty

source

pub fn bool() -> Ty

source

pub fn int(int_ty: IntTy) -> Ty

source

pub fn uint(uint_ty: UintTy) -> Ty

source

pub fn param(param_ty: ParamTy) -> Ty

source

pub fn downcast( adt: AdtDef, args: GenericArgs, ty: Ty, variant: VariantIdx, fields: List<Ty> -) -> Ty

source

pub fn blocked(ty: Ty) -> Ty

source

pub fn usize() -> Ty

source

pub fn str() -> Ty

source

pub fn char() -> Ty

source

pub fn float(float_ty: FloatTy) -> Ty

source

pub fn mk_ref(region: Region, ty: Ty, mutbl: Mutability) -> Ty

source

pub fn mk_slice(ty: Ty) -> Ty

source

pub fn tuple(tys: impl Into<List<Ty>>) -> Ty

source

pub fn array(ty: Ty, c: Const) -> Ty

source

pub fn closure(did: DefId, tys: impl Into<List<Ty>>) -> Ty

source

pub fn generator(did: DefId, args: impl Into<List<GenericArg>>) -> Ty

source

pub fn never() -> Ty

source

pub fn unconstr(&self) -> (Ty, Expr)

source

pub fn unblocked(&self) -> Ty

source§

impl Interned<[GenericArg]>

Trait Implementations§

source§

impl<T: Internable + ?Sized> AsRef<T> for Interned<T>

source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: Internable + ?Sized> Clone for Interned<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + Internable + ?Sized> Debug for Interned<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<D, T> Decodable<D> for Interned<[T]>where +) -> Ty

source

pub fn blocked(ty: Ty) -> Ty

source

pub fn usize() -> Ty

source

pub fn str() -> Ty

source

pub fn char() -> Ty

source

pub fn float(float_ty: FloatTy) -> Ty

source

pub fn mk_ref(region: Region, ty: Ty, mutbl: Mutability) -> Ty

source

pub fn mk_slice(ty: Ty) -> Ty

source

pub fn tuple(tys: impl Into<List<Ty>>) -> Ty

source

pub fn array(ty: Ty, c: Const) -> Ty

source

pub fn closure(did: DefId, tys: impl Into<List<Ty>>) -> Ty

source

pub fn generator(did: DefId, args: impl Into<List<GenericArg>>) -> Ty

source

pub fn never() -> Ty

source

pub fn unconstr(&self) -> (Ty, Expr)

source

pub fn unblocked(&self) -> Ty

source§

impl Interned<[GenericArg]>

Trait Implementations§

source§

impl<T: Internable + ?Sized> AsRef<T> for Interned<T>

source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: Internable + ?Sized> Clone for Interned<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + Internable + ?Sized> Debug for Interned<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<D, T> Decodable<D> for Interned<[T]>where D: Decoder, T: Decodable<D>, [T]: Internable,

source§

fn decode(d: &mut D) -> Self

source§

impl<D, T> Decodable<D> for Interned<T>where @@ -64,7 +64,7 @@ E: Encoder, T: Encodable<E> + Internable,

source§

fn encode(&self, s: &mut E)

source§

impl<T> From<&[T]> for Interned<[T]>where [T]: Internable, - T: Clone,

source§

fn from(slice: &[T]) -> Self

Converts to this type from the input type.
source§

impl From<&Interned<ExprS>> for Expr

source§

fn from(e: &Expr) -> Self

Converts to this type from the input type.
source§

impl From<Interned<ExprS>> for Index

source§

fn from(expr: Expr) -> Self

Converts to this type from the input type.
source§

impl<T> From<Vec<T>> for Interned<[T]>where + T: Clone,

source§

fn from(slice: &[T]) -> Self

Converts to this type from the input type.
source§

impl From<&Interned<ExprS>> for Expr

source§

fn from(e: &Expr) -> Self

Converts to this type from the input type.
source§

impl From<Interned<ExprS>> for Index

source§

fn from(expr: Expr) -> Self

Converts to this type from the input type.
source§

impl<T> From<Vec<T>> for Interned<[T]>where [T]: Internable,

source§

fn from(vec: Vec<T>) -> Self

Converts to this type from the input type.
source§

impl<T: Internable + ?Sized> Hash for Interned<T>

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a, T> IntoIterator for &'a Interned<[T]>where diff --git a/doc/flux_middle/intern/trait.Internable.html b/doc/flux_middle/intern/trait.Internable.html index fc9fd6591c..a2b81eb83e 100644 --- a/doc/flux_middle/intern/trait.Internable.html +++ b/doc/flux_middle/intern/trait.Internable.html @@ -2,4 +2,4 @@ // Required method fn storage() -> &'static InternStorage<Self>; }

Required Methods§

source

fn storage() -> &'static InternStorage<Self>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Internable for [Sort]

source§

fn storage() -> &'static InternStorage<Self>

source§

impl<T> Internable for [T]where - T: SliceInternable,

source§

fn storage() -> &'static InternStorage<Self>

Implementors§

source§

impl Internable for ExprS

source§

impl Internable for flux_middle::rty::AdtDefData

source§

impl Internable for flux_middle::rty::TyS

source§

impl Internable for flux_middle::rustc::ty::AdtDefData

source§

impl Internable for flux_middle::rustc::ty::TyS

\ No newline at end of file + T: SliceInternable,
source§

fn storage() -> &'static InternStorage<Self>

Implementors§

source§

impl Internable for ExprS

source§

impl Internable for flux_middle::rty::AdtDefData

source§

impl Internable for flux_middle::rty::TyS

source§

impl Internable for flux_middle::rustc::ty::AdtDefData

source§

impl Internable for flux_middle::rustc::ty::TyS

\ No newline at end of file diff --git a/doc/flux_middle/intern/trait.SliceInternable.html b/doc/flux_middle/intern/trait.SliceInternable.html index b19bc4fa5d..e52b97a378 100644 --- a/doc/flux_middle/intern/trait.SliceInternable.html +++ b/doc/flux_middle/intern/trait.SliceInternable.html @@ -1,4 +1,4 @@ SliceInternable in flux_middle::intern - Rust
pub trait SliceInternable: Hash + Eq + 'static + Sized {
     // Required method
     fn storage() -> &'static InternStorage<[Self]>;
-}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SliceInternable for u32

Implementors§

\ No newline at end of file +}

Required Methods§

source

fn storage() -> &'static InternStorage<[Self]>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SliceInternable for u32

source§

fn storage() -> &'static InternStorage<[Self]>

Implementors§

source§

impl SliceInternable for InferMode

source§

impl SliceInternable for flux_middle::rty::BoundVariableKind

source§

impl SliceInternable for Constraint

source§

impl SliceInternable for flux_middle::rty::GenericArg

source§

impl SliceInternable for Sort

source§

impl SliceInternable for TupleTree<bool>

source§

impl SliceInternable for flux_middle::rustc::ty::BoundVariableKind

source§

impl SliceInternable for flux_middle::rustc::ty::GenericArg

source§

impl SliceInternable for KVar

source§

impl SliceInternable for flux_middle::rty::Clause

source§

impl SliceInternable for flux_middle::rty::GenericParamDef

source§

impl SliceInternable for Invariant

source§

impl SliceInternable for RefineParam

source§

impl SliceInternable for FieldIdx

source§

impl SliceInternable for flux_middle::rustc::ty::Clause

source§

impl SliceInternable for flux_middle::rustc::ty::GenericParamDef

source§

impl SliceInternable for flux_middle::rustc::ty::Ty

source§

impl SliceInternable for Expr

source§

impl SliceInternable for PolyVariant

source§

impl SliceInternable for flux_middle::rty::Ty

\ No newline at end of file diff --git a/doc/flux_middle/intern/type.List.html b/doc/flux_middle/intern/type.List.html index dc19dab906..ba6a4e3f20 100644 --- a/doc/flux_middle/intern/type.List.html +++ b/doc/flux_middle/intern/type.List.html @@ -4,7 +4,7 @@ [T]: Internable,
source

fn list_with<S>(obj: S, to_arc: impl FnOnce(S) -> Arc<[T]>) -> List<T>where S: Borrow<[T]>,

source

pub fn from_vec(vec: Vec<T>) -> List<T>

source

pub fn from_arr<const N: usize>(arr: [T; N]) -> List<T>

source

pub fn empty() -> List<T>

source

pub fn singleton(x: T) -> List<T>

source§

impl<T> List<T>where T: Clone, - [T]: Internable,

source

pub fn from_slice(slice: &[T]) -> List<T>

source§

impl List<BoundVariableKind>

source

pub fn to_sort_list(&self) -> List<Sort>

Trait Implementations§

source§

impl<T> FromIterator<T> for List<T>where + [T]: Internable,

source

pub fn from_slice(slice: &[T]) -> List<T>

source§

impl List<BoundVariableKind>

source

pub fn to_sort_list(&self) -> List<Sort>

Trait Implementations§

source§

impl<T> FromIterator<T> for List<T>where [T]: Internable,

source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<T> Ord for List<T>where T: Ord, [T]: Internable,

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere @@ -14,7 +14,7 @@ T: PartialOrd, [T]: Internable,

source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
source§

impl Pretty for List<Ty>

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl<T> Subst for List<T>where +operator. Read more

source§

impl Pretty for List<Ty>

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl<T> Subst for List<T>where T: Subst, [T]: Internable,

source§

fn subst(&self, args: &[GenericArg]) -> Self

source§

impl<T> TypeFoldable for List<T>where T: TypeFoldable, diff --git a/doc/flux_middle/macro._Bool.html b/doc/flux_middle/macro._Bool.html index 0871cf9ea2..fa54333330 100644 --- a/doc/flux_middle/macro._Bool.html +++ b/doc/flux_middle/macro._Bool.html @@ -1,3 +1,3 @@ -_Bool in flux_middle - Rust

Macro flux_middle::_Bool

source ·
macro_rules! _Bool {
+_Bool in flux_middle - Rust

Macro flux_middle::_Bool

source ·
macro_rules! _Bool {
     ($idxs:pat) => { ... };
 }
\ No newline at end of file diff --git a/doc/flux_middle/macro._Float.html b/doc/flux_middle/macro._Float.html index f88f37693f..d4dc87e553 100644 --- a/doc/flux_middle/macro._Float.html +++ b/doc/flux_middle/macro._Float.html @@ -1,3 +1,3 @@ -_Float in flux_middle - Rust

Macro flux_middle::_Float

source ·
macro_rules! _Float {
+_Float in flux_middle - Rust

Macro flux_middle::_Float

source ·
macro_rules! _Float {
     ($float_ty:pat) => { ... };
 }
\ No newline at end of file diff --git a/doc/flux_middle/macro._Int.html b/doc/flux_middle/macro._Int.html index 142f1dd71f..a5ed190834 100644 --- a/doc/flux_middle/macro._Int.html +++ b/doc/flux_middle/macro._Int.html @@ -1,3 +1,3 @@ -_Int in flux_middle - Rust

Macro flux_middle::_Int

source ·
macro_rules! _Int {
+_Int in flux_middle - Rust

Macro flux_middle::_Int

source ·
macro_rules! _Int {
     ($int_ty:pat, $idxs:pat) => { ... };
 }
\ No newline at end of file diff --git a/doc/flux_middle/macro._Ref.html b/doc/flux_middle/macro._Ref.html index f77f6923f2..83afbf128c 100644 --- a/doc/flux_middle/macro._Ref.html +++ b/doc/flux_middle/macro._Ref.html @@ -1,3 +1,3 @@ -_Ref in flux_middle - Rust

Macro flux_middle::_Ref

source ·
macro_rules! _Ref {
+_Ref in flux_middle - Rust

Macro flux_middle::_Ref

source ·
macro_rules! _Ref {
     ($($pats:pat),+ $(,)?) => { ... };
 }
\ No newline at end of file diff --git a/doc/flux_middle/macro._Uint.html b/doc/flux_middle/macro._Uint.html index 177dbed1dd..155a9a3c48 100644 --- a/doc/flux_middle/macro._Uint.html +++ b/doc/flux_middle/macro._Uint.html @@ -1,3 +1,3 @@ -_Uint in flux_middle - Rust

Macro flux_middle::_Uint

source ·
macro_rules! _Uint {
+_Uint in flux_middle - Rust

Macro flux_middle::_Uint

source ·
macro_rules! _Uint {
     ($uint_ty:pat, $idxs:pat) => { ... };
 }
\ No newline at end of file diff --git a/doc/flux_middle/pretty/trait.Pretty.html b/doc/flux_middle/pretty/trait.Pretty.html index b330a2f8f3..e1154cc26e 100644 --- a/doc/flux_middle/pretty/trait.Pretty.html +++ b/doc/flux_middle/pretty/trait.Pretty.html @@ -4,8 +4,8 @@ // Provided method fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_> { ... } -}

Required Methods§

source

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

Provided Methods§

source

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Pretty for DefId

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

impl Pretty for Span

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

impl<T: Pretty + ?Sized> Pretty for &T

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

Implementors§

Required Methods§

source

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

Provided Methods§

source

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Pretty for DefId

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

impl Pretty for Span

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

impl<T: Pretty + ?Sized> Pretty for &T

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

Implementors§

\ No newline at end of file diff --git a/doc/flux_middle/rty/enum.AliasKind.html b/doc/flux_middle/rty/enum.AliasKind.html index fea85956bb..efa60fdaca 100644 --- a/doc/flux_middle/rty/enum.AliasKind.html +++ b/doc/flux_middle/rty/enum.AliasKind.html @@ -5,7 +5,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for AliasKind

source§

fn eq(&self, other: &AliasKind) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for AliasKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Copy for AliasKind

source§

impl Eq for AliasKind

source§

impl StructuralEq for AliasKind

source§

impl StructuralPartialEq for AliasKind

Auto Trait Implementations§

§

impl RefUnwindSafe for AliasKind

§

impl Send for AliasKind

§

impl Sync for AliasKind

§

impl Unpin for AliasKind

§

impl UnwindSafe for AliasKind

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for AliasKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Copy for AliasKind

source§

impl Eq for AliasKind

source§

impl StructuralEq for AliasKind

source§

impl StructuralPartialEq for AliasKind

Auto Trait Implementations§

§

impl RefUnwindSafe for AliasKind

§

impl Send for AliasKind

§

impl Sync for AliasKind

§

impl Unpin for AliasKind

§

impl UnwindSafe for AliasKind

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/enum.BaseTy.html b/doc/flux_middle/rty/enum.BaseTy.html index 97a5daad75..eae6b441f9 100644 --- a/doc/flux_middle/rty/enum.BaseTy.html +++ b/doc/flux_middle/rty/enum.BaseTy.html @@ -16,11 +16,11 @@ Coroutine(DefId, GenericArgs), CoroutineWitness(DefId, GenericArgs), Param(ParamTy), -

}

Variants§

§

Int(IntTy)

§

Uint(UintTy)

§

Bool

§

Str

§

Char

§

Slice(Ty)

§

Adt(AdtDef, GenericArgs)

§

Float(FloatTy)

§

RawPtr(Ty, Mutability)

§

Ref(Region, Ty, Mutability)

§

Tuple(List<Ty>)

§

Array(Ty, Const)

§

Never

§

Closure(DefId, List<Ty>)

§

Coroutine(DefId, GenericArgs)

§

CoroutineWitness(DefId, GenericArgs)

§

Param(ParamTy)

Implementations§

source§

impl BaseTy

source

pub fn adt(adt_def: AdtDef, args: impl Into<GenericArgs>) -> BaseTy

source

pub fn slice(ty: Ty) -> BaseTy

source

fn is_integral(&self) -> bool

source

fn is_bool(&self) -> bool

source

fn is_struct(&self) -> bool

source

fn is_closure(&self) -> bool

source

fn is_tuple(&self) -> bool

source

fn is_array(&self) -> bool

source

fn is_slice(&self) -> bool

source

pub fn is_box(&self) -> bool

source

pub fn invariants(&self, overflow_checking: bool) -> &[Invariant]

source

fn into_ty(self) -> Ty

source

pub fn sort(&self) -> Sort

Trait Implementations§

source§

impl Clone for BaseTy

source§

fn clone(&self) -> BaseTy

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BaseTy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for BaseTy

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for BaseTy

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for BaseTy

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

}

Variants§

§

Int(IntTy)

§

Uint(UintTy)

§

Bool

§

Str

§

Char

§

Slice(Ty)

§

Adt(AdtDef, GenericArgs)

§

Float(FloatTy)

§

RawPtr(Ty, Mutability)

§

Ref(Region, Ty, Mutability)

§

Tuple(List<Ty>)

§

Array(Ty, Const)

§

Never

§

Closure(DefId, List<Ty>)

§

Coroutine(DefId, GenericArgs)

§

CoroutineWitness(DefId, GenericArgs)

§

Param(ParamTy)

Implementations§

source§

impl BaseTy

source

pub fn adt(adt_def: AdtDef, args: impl Into<GenericArgs>) -> BaseTy

source

pub fn slice(ty: Ty) -> BaseTy

source

fn is_integral(&self) -> bool

source

fn is_bool(&self) -> bool

source

fn is_struct(&self) -> bool

source

fn is_closure(&self) -> bool

source

fn is_tuple(&self) -> bool

source

fn is_array(&self) -> bool

source

fn is_slice(&self) -> bool

source

pub fn is_box(&self) -> bool

source

pub fn invariants(&self, overflow_checking: bool) -> &[Invariant]

source

fn into_ty(self) -> Ty

source

pub fn sort(&self) -> Sort

Trait Implementations§

source§

impl Clone for BaseTy

source§

fn clone(&self) -> BaseTy

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BaseTy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for BaseTy

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for BaseTy

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for BaseTy

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for BaseTy

source§

fn eq(&self, other: &BaseTy) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for BaseTy

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for BaseTy

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for BaseTy

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for BaseTy

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/enum.BoundRegionKind.html b/doc/flux_middle/rty/enum.BoundRegionKind.html index 3ba29c8fc3..c42da2c52e 100644 --- a/doc/flux_middle/rty/enum.BoundRegionKind.html +++ b/doc/flux_middle/rty/enum.BoundRegionKind.html @@ -8,7 +8,7 @@ the event of shadowing.

§

BrEnv

Anonymous region for the implicit env pointer parameter to a closure

-

Trait Implementations§

source§

impl Pretty for BoundRegionKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Auto Trait Implementations§

§

impl RefUnwindSafe for BoundRegionKind

§

impl Send for BoundRegionKind

§

impl Sync for BoundRegionKind

§

impl Unpin for BoundRegionKind

§

impl UnwindSafe for BoundRegionKind

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Pretty for BoundRegionKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Auto Trait Implementations§

§

impl RefUnwindSafe for BoundRegionKind

§

impl Send for BoundRegionKind

§

impl Sync for BoundRegionKind

§

impl Unpin for BoundRegionKind

§

impl UnwindSafe for BoundRegionKind

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Qwhere diff --git a/doc/flux_middle/rty/enum.BoundVariableKind.html b/doc/flux_middle/rty/enum.BoundVariableKind.html index 59592b8424..6a83adfe42 100644 --- a/doc/flux_middle/rty/enum.BoundVariableKind.html +++ b/doc/flux_middle/rty/enum.BoundVariableKind.html @@ -1,11 +1,11 @@ BoundVariableKind in flux_middle::rty - Rust
pub enum BoundVariableKind {
     Region(BoundRegionKind),
     Refine(Sort, InferMode),
-}

Variants§

Implementations§

Trait Implementations§

source§

impl Clone for BoundVariableKind

source§

fn clone(&self) -> BoundVariableKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BoundVariableKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for BoundVariableKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for BoundVariableKind

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for BoundVariableKind

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Variants§

Implementations§

Trait Implementations§

source§

impl Clone for BoundVariableKind

source§

fn clone(&self) -> BoundVariableKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BoundVariableKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for BoundVariableKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for BoundVariableKind

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for BoundVariableKind

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for BoundVariableKind

source§

fn eq(&self, other: &BoundVariableKind) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for BoundVariableKind

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for BoundVariableKind

source§

impl TypeFoldable for BoundVariableKind

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for BoundVariableKind

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for BoundVariableKind

source§

impl TypeFoldable for BoundVariableKind

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/enum.ClauseKind.html b/doc/flux_middle/rty/enum.ClauseKind.html index 8f4d3a2614..fc5c1c72e0 100644 --- a/doc/flux_middle/rty/enum.ClauseKind.html +++ b/doc/flux_middle/rty/enum.ClauseKind.html @@ -8,7 +8,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for ClauseKind

source§

fn eq(&self, other: &ClauseKind) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for ClauseKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for ClauseKind

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for ClauseKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for ClauseKind

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/enum.Constraint.html b/doc/flux_middle/rty/enum.Constraint.html index eed24c3a97..69d623eabd 100644 --- a/doc/flux_middle/rty/enum.Constraint.html +++ b/doc/flux_middle/rty/enum.Constraint.html @@ -1,11 +1,11 @@ Constraint in flux_middle::rty - Rust
pub enum Constraint {
     Type(Path, Ty),
     Pred(Expr),
-}

Variants§

§

Type(Path, Ty)

§

Pred(Expr)

Trait Implementations§

source§

impl Clone for Constraint

source§

fn clone(&self) -> Constraint

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Constraint

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for Constraint

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for Constraint

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for Constraint

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Variants§

§

Type(Path, Ty)

§

Pred(Expr)

Trait Implementations§

source§

impl Clone for Constraint

source§

fn clone(&self) -> Constraint

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Constraint

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for Constraint

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for Constraint

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for Constraint

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Constraint

source§

fn eq(&self, other: &Constraint) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for Constraint

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for Constraint

source§

impl TypeFoldable for Constraint

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for Constraint

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for Constraint

source§

impl TypeFoldable for Constraint

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/enum.GenericArg.html b/doc/flux_middle/rty/enum.GenericArg.html index daf9142d0c..33757b9f8c 100644 --- a/doc/flux_middle/rty/enum.GenericArg.html +++ b/doc/flux_middle/rty/enum.GenericArg.html @@ -3,11 +3,11 @@ BaseTy(Binder<Ty>), Lifetime(Region), Const(Const), -}

Variants§

§

Ty(Ty)

§

BaseTy(Binder<Ty>)

§

Lifetime(Region)

§

Const(Const)

Implementations§

Trait Implementations§

source§

impl Clone for GenericArg

source§

fn clone(&self) -> GenericArg

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GenericArg

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for GenericArg

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for GenericArg

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for GenericArg

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Variants§

§

Ty(Ty)

§

BaseTy(Binder<Ty>)

§

Lifetime(Region)

§

Const(Const)

Implementations§

Trait Implementations§

source§

impl Clone for GenericArg

source§

fn clone(&self) -> GenericArg

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GenericArg

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for GenericArg

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for GenericArg

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for GenericArg

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for GenericArg

source§

fn eq(&self, other: &GenericArg) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for GenericArg

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for GenericArg

source§

impl TypeFoldable for GenericArg

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for GenericArg

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for GenericArg

source§

impl TypeFoldable for GenericArg

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/enum.Opaqueness.html b/doc/flux_middle/rty/enum.Opaqueness.html index 92895280d6..453df33f0c 100644 --- a/doc/flux_middle/rty/enum.Opaqueness.html +++ b/doc/flux_middle/rty/enum.Opaqueness.html @@ -3,8 +3,8 @@ Transparent(T), }
Expand description

Option-like enum to explicitly mark that we don’t have information about an ADT because it was annotated with #[flux::opaque]. Note that only structs can be marked as opaque.

-

Variants§

§

Opaque

§

Transparent(T)

Implementations§

source§

impl<T> Opaqueness<T>

source

pub fn map<S>(self, f: impl FnOnce(T) -> S) -> Opaqueness<S>

source

pub fn as_ref(&self) -> Opaqueness<&T>

source

pub fn as_deref(&self) -> Opaqueness<&T::Target>where - T: Deref,

source

pub fn ok_or_else<E>(self, err: impl FnOnce() -> E) -> Result<T, E>

source

pub fn expect(self, msg: &str) -> T

source§

impl<T, E> Opaqueness<Result<T, E>>

source

pub fn transpose(self) -> Result<Opaqueness<T>, E>

Trait Implementations§

source§

impl<T: Clone> Clone for Opaqueness<T>

source§

fn clone(&self) -> Opaqueness<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for Opaqueness<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, __D: TyDecoder> Decodable<__D> for Opaqueness<T>where +

Variants§

§

Opaque

§

Transparent(T)

Implementations§

source§

impl<T> Opaqueness<T>

source

pub fn map<S>(self, f: impl FnOnce(T) -> S) -> Opaqueness<S>

source

pub fn as_ref(&self) -> Opaqueness<&T>

source

pub fn as_deref(&self) -> Opaqueness<&T::Target>where + T: Deref,

source

pub fn ok_or_else<E>(self, err: impl FnOnce() -> E) -> Result<T, E>

source

pub fn expect(self, msg: &str) -> T

source§

impl<T, E> Opaqueness<Result<T, E>>

source

pub fn transpose(self) -> Result<Opaqueness<T>, E>

Trait Implementations§

source§

impl<T: Clone> Clone for Opaqueness<T>

source§

fn clone(&self) -> Opaqueness<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for Opaqueness<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, __D: TyDecoder> Decodable<__D> for Opaqueness<T>where T: Decodable<__D>,

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<T, __E: TyEncoder> Encodable<__E> for Opaqueness<T>where T: Encodable<__E>,

source§

fn encode(&self, __encoder: &mut __E)

source§

impl<T: TypeFoldable> TypeFoldable for Opaqueness<T>

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, diff --git a/doc/flux_middle/rty/enum.PtrKind.html b/doc/flux_middle/rty/enum.PtrKind.html index 3a2a6a0b89..097b303e9a 100644 --- a/doc/flux_middle/rty/enum.PtrKind.html +++ b/doc/flux_middle/rty/enum.PtrKind.html @@ -2,11 +2,11 @@ Shr(Region), Mut(Region), Box, -}

Variants§

§

Shr(Region)

§

Mut(Region)

§

Box

Implementations§

source§

impl PtrKind

source

pub fn from_ref(r: Region, m: Mutability) -> Self

Trait Implementations§

source§

impl Clone for PtrKind

source§

fn clone(&self) -> PtrKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PtrKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for PtrKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for PtrKind

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for PtrKind

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Variants§

§

Shr(Region)

§

Mut(Region)

§

Box

Implementations§

source§

impl PtrKind

source

pub fn from_ref(r: Region, m: Mutability) -> Self

Trait Implementations§

source§

impl Clone for PtrKind

source§

fn clone(&self) -> PtrKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PtrKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for PtrKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for PtrKind

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for PtrKind

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for PtrKind

source§

fn eq(&self, other: &PtrKind) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for PtrKind

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Copy for PtrKind

source§

impl Eq for PtrKind

source§

impl StructuralEq for PtrKind

source§

impl StructuralPartialEq for PtrKind

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for PtrKind

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Copy for PtrKind

source§

impl Eq for PtrKind

source§

impl StructuralEq for PtrKind

source§

impl StructuralPartialEq for PtrKind

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/enum.Sort.html b/doc/flux_middle/rty/enum.Sort.html index 8d132736aa..843e132670 100644 --- a/doc/flux_middle/rty/enum.Sort.html +++ b/doc/flux_middle/rty/enum.Sort.html @@ -9,13 +9,13 @@ Func(PolyFuncSort), App(SortCtor, List<Sort>), Var(SortVar), -}

Variants§

§

Int

§

Bool

§

Real

§

BitVec(usize)

§

Loc

§

Param(ParamTy)

§

Tuple(List<Sort>)

§

Func(PolyFuncSort)

§

App(SortCtor, List<Sort>)

§

Var(SortVar)

Implementations§

source§

impl Sort

source

pub fn tuple(sorts: impl Into<List<Sort>>) -> Self

source

pub fn app(ctor: SortCtor, sorts: impl Into<List<Sort>>) -> Self

source

pub fn unit() -> Self

source

pub fn expect_func(&self) -> &PolyFuncSort

source

pub fn default_infer_mode(&self) -> InferMode

source

pub fn is_unit(&self) -> bool

source

fn is_pred(&self) -> bool

Whether the sort is a function with return sort bool

-
source

fn is_bool(&self) -> bool

Returns true if the sort is Bool.

-
source

pub fn flatten(&self) -> Vec<Sort>

source

pub fn walk(&self, f: impl FnMut(&Sort, &[u32]))

Trait Implementations§

source§

impl Clone for Sort

source§

fn clone(&self) -> Sort

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Sort

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for Sort

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for Sort

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for Sort

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Variants§

§

Int

§

Bool

§

Real

§

BitVec(usize)

§

Loc

§

Param(ParamTy)

§

Tuple(List<Sort>)

§

Func(PolyFuncSort)

§

App(SortCtor, List<Sort>)

§

Var(SortVar)

Implementations§

source§

impl Sort

source

pub fn tuple(sorts: impl Into<List<Sort>>) -> Self

source

pub fn app(ctor: SortCtor, sorts: impl Into<List<Sort>>) -> Self

source

pub fn unit() -> Self

source

pub fn expect_func(&self) -> &PolyFuncSort

source

pub fn default_infer_mode(&self) -> InferMode

source

pub fn is_unit(&self) -> bool

source

fn is_pred(&self) -> bool

Whether the sort is a function with return sort bool

+
source

fn is_bool(&self) -> bool

Returns true if the sort is Bool.

+
source

pub fn flatten(&self) -> Vec<Sort>

source

pub fn walk(&self, f: impl FnMut(&Sort, &[u32]))

Trait Implementations§

source§

impl Clone for Sort

source§

fn clone(&self) -> Sort

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Sort

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for Sort

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for Sort

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for Sort

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Sort

source§

fn eq(&self, other: &Sort) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for Sort

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for Sort

source§

impl TypeFoldable for Sort

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for Sort

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl SliceInternable for Sort

source§

impl TypeFoldable for Sort

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/enum.SortCtor.html b/doc/flux_middle/rty/enum.SortCtor.html index a4d06a446a..a94e3c38a0 100644 --- a/doc/flux_middle/rty/enum.SortCtor.html +++ b/doc/flux_middle/rty/enum.SortCtor.html @@ -8,7 +8,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for SortCtor

source§

fn eq(&self, other: &SortCtor) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for SortCtor

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Copy for SortCtor

source§

impl Eq for SortCtor

source§

impl StructuralEq for SortCtor

source§

impl StructuralPartialEq for SortCtor

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for SortCtor

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Copy for SortCtor

source§

impl Eq for SortCtor

source§

impl StructuralEq for SortCtor

source§

impl StructuralPartialEq for SortCtor

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/enum.TupleTree.html b/doc/flux_middle/rty/enum.TupleTree.html index ee40d4ad2d..c966419c83 100644 --- a/doc/flux_middle/rty/enum.TupleTree.html +++ b/doc/flux_middle/rty/enum.TupleTree.html @@ -2,8 +2,8 @@ [TupleTree<T>]: Internable,{ Tuple(List<TupleTree<T>>), Leaf(T), -}

Variants§

§

Tuple(List<TupleTree<T>>)

§

Leaf(T)

Implementations§

source§

impl<T> TupleTree<T>where - [TupleTree<T>]: Internable,

source

fn unit() -> Self

source

pub fn split(&self) -> impl Iterator<Item = &TupleTree<T>>

source

pub fn expect_leaf(&self) -> &T

source

pub fn as_leaf(&self) -> Option<&T>

Trait Implementations§

source§

impl<T: Clone> Clone for TupleTree<T>where +}

Variants§

§

Tuple(List<TupleTree<T>>)

§

Leaf(T)

Implementations§

source§

impl<T> TupleTree<T>where + [TupleTree<T>]: Internable,

source

fn unit() -> Self

source

pub fn split(&self) -> impl Iterator<Item = &TupleTree<T>>

source

pub fn expect_leaf(&self) -> &T

source

pub fn as_leaf(&self) -> Option<&T>

Trait Implementations§

source§

impl<T: Clone> Clone for TupleTree<T>where [TupleTree<T>]: Internable,

source§

fn clone(&self) -> TupleTree<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for TupleTree<T>where [TupleTree<T>]: Internable,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, __D: Decoder> Decodable<__D> for TupleTree<T>where [TupleTree<T>]: Internable, @@ -15,7 +15,7 @@ Self: Sized,

Feeds a slice of this type into the given Hasher. Read more

source§

impl<T: PartialEq> PartialEq for TupleTree<T>where [TupleTree<T>]: Internable,

source§

fn eq(&self, other: &TupleTree<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl SliceInternable for TupleTree<bool>

source§

impl<T: Eq> Eq for TupleTree<T>where +sufficient, and should not be overridden without very good reason.

source§

impl SliceInternable for TupleTree<bool>

source§

impl<T: Eq> Eq for TupleTree<T>where [TupleTree<T>]: Internable,

source§

impl<T> StructuralEq for TupleTree<T>where [TupleTree<T>]: Internable,

source§

impl<T> StructuralPartialEq for TupleTree<T>where [TupleTree<T>]: Internable,

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for TupleTree<T>where diff --git a/doc/flux_middle/rty/enum.TyKind.html b/doc/flux_middle/rty/enum.TyKind.html index 52db6302da..6786cb699f 100644 --- a/doc/flux_middle/rty/enum.TyKind.html +++ b/doc/flux_middle/rty/enum.TyKind.html @@ -12,7 +12,7 @@ }

Variants§

§

Indexed(BaseTy, Index)

§

Exists(Binder<Ty>)

§

Constr(Expr, Ty)

§

Uninit

§

Ptr(PtrKind, Path)

§

Discr(AdtDef, Place)

This is a bit of a hack. We use this type internally to represent the result of Rvalue::Discriminant in a way that we can recover the necessary control information when checking TerminatorKind::SwitchInt.

-
§

Param(ParamTy)

§

Downcast(AdtDef, GenericArgs, Ty, VariantIdx, List<Ty>)

§

Blocked(Ty)

§

Alias(AliasKind, AliasTy)

Implementations§

Trait Implementations§

source§

impl Clone for TyKind

source§

fn clone(&self) -> TyKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TyKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for TyKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for TyKind

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for TyKind

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

§

Param(ParamTy)

§

Downcast(AdtDef, GenericArgs, Ty, VariantIdx, List<Ty>)

§

Blocked(Ty)

§

Alias(AliasKind, AliasTy)

Implementations§

Trait Implementations§

source§

impl Clone for TyKind

source§

fn clone(&self) -> TyKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TyKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for TyKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for TyKind

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for TyKind

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for TyKind

source§

fn eq(&self, other: &TyKind) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/doc/flux_middle/rty/fn.box_args.html b/doc/flux_middle/rty/fn.box_args.html index 52634346d5..743235d55a 100644 --- a/doc/flux_middle/rty/fn.box_args.html +++ b/doc/flux_middle/rty/fn.box_args.html @@ -1 +1 @@ -box_args in flux_middle::rty - Rust

Function flux_middle::rty::box_args

source ·
pub fn box_args(args: &GenericArgs) -> (&Ty, &Ty)
\ No newline at end of file +box_args in flux_middle::rty - Rust

Function flux_middle::rty::box_args

source ·
pub fn box_args(args: &GenericArgs) -> (&Ty, &Ty)
\ No newline at end of file diff --git a/doc/flux_middle/rty/fn.int_invariants.html b/doc/flux_middle/rty/fn.int_invariants.html index 4c3b43d837..0ca83994a2 100644 --- a/doc/flux_middle/rty/fn.int_invariants.html +++ b/doc/flux_middle/rty/fn.int_invariants.html @@ -1,4 +1,4 @@ -int_invariants in flux_middle::rty - Rust
fn int_invariants(
+int_invariants in flux_middle::rty - Rust
fn int_invariants(
     int_ty: IntTy,
     overflow_checking: bool
 ) -> &'static [Invariant]
\ No newline at end of file diff --git a/doc/flux_middle/rty/fn.uint_invariants.html b/doc/flux_middle/rty/fn.uint_invariants.html index 4d2f588a4a..0f5e3f4793 100644 --- a/doc/flux_middle/rty/fn.uint_invariants.html +++ b/doc/flux_middle/rty/fn.uint_invariants.html @@ -1,4 +1,4 @@ -uint_invariants in flux_middle::rty - Rust
fn uint_invariants(
+uint_invariants in flux_middle::rty - Rust
fn uint_invariants(
     uint_ty: UintTy,
     overflow_checking: bool
 ) -> &'static [Invariant]
\ No newline at end of file diff --git a/doc/flux_middle/rty/index.html b/doc/flux_middle/rty/index.html index 7167d29169..0039996a5c 100644 --- a/doc/flux_middle/rty/index.html +++ b/doc/flux_middle/rty/index.html @@ -1,4 +1,4 @@ -flux_middle::rty - Rust

Module flux_middle::rty

source ·
Expand description

Defines how flux represents refinement types internally. Definitions in this module are used +flux_middle::rty - Rust

Module flux_middle::rty

source ·
Expand description

Defines how flux represents refinement types internally. Definitions in this module are used during refinement type checking. A couple of important differences between definitions in this module and in crate::fhir are:

Trait Implementations§

source§

impl Debug for TVarSubst

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/doc/flux_middle/rty/struct.AdtDef.html b/doc/flux_middle/rty/struct.AdtDef.html index 880c475e3d..a7b1d894c9 100644 --- a/doc/flux_middle/rty/struct.AdtDef.html +++ b/doc/flux_middle/rty/struct.AdtDef.html @@ -1,9 +1,9 @@ -AdtDef in flux_middle::rty - Rust

Struct flux_middle::rty::AdtDef

source ·
pub struct AdtDef(Interned<AdtDefData>);

Tuple Fields§

§0: Interned<AdtDefData>

Implementations§

source§

impl AdtDef

source

pub fn new( +AdtDef in flux_middle::rty - Rust

Struct flux_middle::rty::AdtDef

source ·
pub struct AdtDef(Interned<AdtDefData>);

Tuple Fields§

§0: Interned<AdtDefData>

Implementations§

source§

impl AdtDef

source

pub fn new( rustc: AdtDef, sort: Sort, invariants: Vec<Invariant>, opaque: bool -) -> Self

source

pub fn did(&self) -> DefId

source

pub fn sort(&self) -> &Sort

source

pub fn is_box(&self) -> bool

source

pub fn is_enum(&self) -> bool

source

pub fn is_struct(&self) -> bool

source

pub fn variants(&self) -> &IndexSlice<VariantIdx, VariantDef>

source

pub fn variant(&self, idx: VariantIdx) -> &VariantDef

source

pub fn invariants(&self) -> &[Invariant]

source

pub fn is_opaque(&self) -> bool

Trait Implementations§

source§

impl Clone for AdtDef

source§

fn clone(&self) -> AdtDef

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AdtDef

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for AdtDef

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for AdtDef

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for AdtDef

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +) -> Self

source

pub fn did(&self) -> DefId

source

pub fn sort(&self) -> &Sort

source

pub fn is_box(&self) -> bool

source

pub fn is_enum(&self) -> bool

source

pub fn is_struct(&self) -> bool

source

pub fn variants(&self) -> &IndexSlice<VariantIdx, VariantDef>

source

pub fn variant(&self, idx: VariantIdx) -> &VariantDef

source

pub fn invariants(&self) -> &[Invariant]

source

pub fn is_opaque(&self) -> bool

Trait Implementations§

source§

impl Clone for AdtDef

source§

fn clone(&self) -> AdtDef

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AdtDef

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for AdtDef

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for AdtDef

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for AdtDef

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for AdtDef

source§

fn eq(&self, other: &AdtDef) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/doc/flux_middle/rty/struct.AdtDefData.html b/doc/flux_middle/rty/struct.AdtDefData.html index eeb1393981..562a0958f9 100644 --- a/doc/flux_middle/rty/struct.AdtDefData.html +++ b/doc/flux_middle/rty/struct.AdtDefData.html @@ -5,7 +5,7 @@ rustc: AdtDef, }

Fields§

§invariants: Vec<Invariant>§sort: Sort§opaque: bool§rustc: AdtDef

Trait Implementations§

source§

impl Debug for AdtDefData

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for AdtDefData

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for AdtDefData

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for AdtDefData

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Internable for AdtDefData

source§

fn storage() -> &'static InternStorage<Self>

source§

impl PartialEq for AdtDefData

source§

fn eq(&self, other: &AdtDefData) -> bool

This method tests for self and other values to be equal, and is used + Self: Sized,

Feeds a slice of this type into the given Hasher. Read more

source§

impl Internable for AdtDefData

source§

fn storage() -> &'static InternStorage<Self>

source§

impl PartialEq for AdtDefData

source§

fn eq(&self, other: &AdtDefData) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for AdtDefData

source§

impl StructuralEq for AdtDefData

source§

impl StructuralPartialEq for AdtDefData

Auto Trait Implementations§

§

impl RefUnwindSafe for AdtDefData

§

impl Send for AdtDefData

§

impl Sync for AdtDefData

§

impl Unpin for AdtDefData

§

impl UnwindSafe for AdtDefData

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/doc/flux_middle/rty/struct.AliasTy.html b/doc/flux_middle/rty/struct.AliasTy.html index e080afe97f..79b343f6e1 100644 --- a/doc/flux_middle/rty/struct.AliasTy.html +++ b/doc/flux_middle/rty/struct.AliasTy.html @@ -3,11 +3,11 @@ pub refine_args: RefineArgs, pub def_id: DefId, }

Fields§

§args: GenericArgs§refine_args: RefineArgs

Holds the refinement-arguments for opaque-types; empty for projections

-
§def_id: DefId

Implementations§

source§

impl AliasTy

source

pub fn new( +

§def_id: DefId

Implementations§

source§

impl AliasTy

source

pub fn new( def_id: DefId, args: impl Into<GenericArgs>, refine_args: impl Into<RefineArgs> -) -> Self

source

pub fn self_ty(&self) -> &Ty

This method work only with associated type projections (i.e., no opaque tpes)

+) -> Self
source

pub fn self_ty(&self) -> &Ty

This method work only with associated type projections (i.e., no opaque tpes)

Trait Implementations§

source§

impl Clone for AliasTy

source§

fn clone(&self) -> AliasTy

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AliasTy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for AliasTy

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for AliasTy

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for AliasTy

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for AliasTy

source§

fn eq(&self, other: &AliasTy) -> bool

This method tests for self and other values to be equal, and is used diff --git a/doc/flux_middle/rty/struct.Binder.html b/doc/flux_middle/rty/struct.Binder.html index 1bb0e5d049..05a44250f0 100644 --- a/doc/flux_middle/rty/struct.Binder.html +++ b/doc/flux_middle/rty/struct.Binder.html @@ -1,26 +1,26 @@ Binder in flux_middle::rty - Rust

Struct flux_middle::rty::Binder

source ·
pub struct Binder<T> {
     vars: List<BoundVariableKind>,
     value: T,
-}

Fields§

§vars: List<BoundVariableKind>§value: T

Implementations§

source§

impl<T> Binder<T>

source

pub fn new(value: T, vars: List<BoundVariableKind>) -> Binder<T>

source

pub fn with_sorts(value: T, sorts: impl IntoIterator<Item = Sort>) -> Binder<T>

source

pub fn with_sort(value: T, sort: Sort) -> Binder<T>

source

pub fn vars(&self) -> &List<BoundVariableKind>

source

pub fn as_ref(&self) -> Binder<&T>

source

pub fn skip_binder(self) -> T

source

pub fn rebind<U>(self, value: U) -> Binder<U>

source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> Binder<U>

source

pub fn try_map<U, E>( +}

Fields§

§vars: List<BoundVariableKind>§value: T

Implementations§

source§

impl<T> Binder<T>

source

pub fn new(value: T, vars: List<BoundVariableKind>) -> Binder<T>

source

pub fn with_sorts(value: T, sorts: impl IntoIterator<Item = Sort>) -> Binder<T>

source

pub fn with_sort(value: T, sort: Sort) -> Binder<T>

source

pub fn vars(&self) -> &List<BoundVariableKind>

source

pub fn as_ref(&self) -> Binder<&T>

source

pub fn skip_binder(self) -> T

source

pub fn rebind<U>(self, value: U) -> Binder<U>

source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> Binder<U>

source

pub fn try_map<U, E>( self, f: impl FnOnce(T) -> Result<U, E> -) -> Result<Binder<U>, E>

source§

impl<T> Binder<T>where - T: TypeFoldable,

source§

impl<T> Binder<T>where + T: TypeFoldable,

source

pub fn replace_bound_vars( &self, replace_region: impl FnMut(BoundRegion) -> Region, replace_expr: impl FnMut(&Sort, InferMode) -> Expr -) -> T

source

pub fn replace_bound_exprs(&self, exprs: &[Expr]) -> T

source

pub fn replace_bound_expr(&self, expr: &Expr) -> T

source

pub fn replace_bound_exprs_with( +) -> T

source

pub fn replace_bound_exprs(&self, exprs: &[Expr]) -> T

source

pub fn replace_bound_expr(&self, expr: &Expr) -> T

source

pub fn replace_bound_exprs_with( &self, f: impl FnMut(&Sort, InferMode) -> Expr -) -> T

source§

impl Binder<Ty>

source

pub fn into_ty(self) -> Ty

source§

impl Binder<Expr>

Trait Implementations§

source§

impl<T: Clone> Clone for Binder<T>

source§

fn clone(&self) -> Binder<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Pretty> Debug for Binder<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, __D: TyDecoder> Decodable<__D> for Binder<T>where +) -> T

source§

impl Binder<Ty>

source

pub fn into_ty(self) -> Ty

source§

impl Binder<Expr>

Trait Implementations§

source§

impl<T: Clone> Clone for Binder<T>

source§

fn clone(&self) -> Binder<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Pretty> Debug for Binder<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, __D: TyDecoder> Decodable<__D> for Binder<T>where T: Decodable<__D>,

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<T, __E: TyEncoder> Encodable<__E> for Binder<T>where T: Encodable<__E>,

source§

fn encode(&self, __encoder: &mut __E)

source§

impl<T: Hash> Hash for Binder<T>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T: PartialEq> PartialEq for Binder<T>

source§

fn eq(&self, other: &Binder<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for Binder<FnOutput>

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Pretty for Binder<Expr>

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl<T> Pretty for Binder<T>where - T: Pretty,

source§

default fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl<T> TypeFoldable for Binder<T>where +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for Binder<FnOutput>

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Pretty for Binder<Expr>

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl<T> Pretty for Binder<T>where + T: Pretty,

source§

default fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl<T> TypeFoldable for Binder<T>where T: TypeFoldable,

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F diff --git a/doc/flux_middle/rty/struct.Clause.html b/doc/flux_middle/rty/struct.Clause.html index 6afaa2d3aa..8726ca0723 100644 --- a/doc/flux_middle/rty/struct.Clause.html +++ b/doc/flux_middle/rty/struct.Clause.html @@ -4,7 +4,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Clause

source§

fn eq(&self, other: &Clause) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl SliceInternable for Clause

source§

fn storage() -> &'static InternStorage<[Self]>

source§

impl TypeFoldable for Clause

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl SliceInternable for Clause

source§

fn storage() -> &'static InternStorage<[Self]>

source§

impl TypeFoldable for Clause

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/struct.EarlyBinder.html b/doc/flux_middle/rty/struct.EarlyBinder.html index 31366a8a39..ab796f60a9 100644 --- a/doc/flux_middle/rty/struct.EarlyBinder.html +++ b/doc/flux_middle/rty/struct.EarlyBinder.html @@ -1,17 +1,17 @@ -EarlyBinder in flux_middle::rty - Rust
pub struct EarlyBinder<T>(pub T);

Tuple Fields§

§0: T

Implementations§

source§

impl<T> EarlyBinder<T>

source

pub fn as_ref(&self) -> EarlyBinder<&T>

source

pub fn as_deref(&self) -> EarlyBinder<&T::Target>where - T: Deref,

source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> EarlyBinder<U>

source

pub fn try_map<U, E>( +EarlyBinder in flux_middle::rty - Rust
pub struct EarlyBinder<T>(pub T);

Tuple Fields§

§0: T

Implementations§

source§

impl<T> EarlyBinder<T>

source

pub fn as_ref(&self) -> EarlyBinder<&T>

source

pub fn as_deref(&self) -> EarlyBinder<&T::Target>where + T: Deref,

source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> EarlyBinder<U>

source

pub fn try_map<U, E>( self, f: impl FnOnce(T) -> Result<U, E> -) -> Result<EarlyBinder<U>, E>

source

pub fn skip_binder(self) -> T

source§

impl<T: TypeFoldable> EarlyBinder<T>

source

pub fn instantiate(self, args: &[GenericArg], refine_args: &[Expr]) -> T

source

pub fn instantiate_identity(self, refine_args: &[Expr]) -> T

source§

impl EarlyBinder<GenericPredicates>

source§

impl<T: TypeFoldable> EarlyBinder<T>

source

pub fn instantiate(self, args: &[GenericArg], refine_args: &[Expr]) -> T

source

pub fn instantiate_identity(self, refine_args: &[Expr]) -> T

source§

impl EarlyBinder<GenericPredicates>

source

pub fn predicates(&self) -> EarlyBinder<List<Clause>>

source

pub fn instantiate_identity( self, genv: &GlobalEnv<'_, '_>, refine_args: &[Expr] -) -> QueryResult<Vec<Clause>>

source

fn instantiate_identity_into( +) -> QueryResult<Vec<Clause>>

source

fn instantiate_identity_into( self, genv: &GlobalEnv<'_, '_>, refine_args: &[Expr], predicates: &mut Vec<Clause> -) -> QueryResult<()>

source§

impl EarlyBinder<PolyVariant>

Trait Implementations§

source§

impl<T: Clone> Clone for EarlyBinder<T>

source§

fn clone(&self) -> EarlyBinder<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for EarlyBinder<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, __D: TyDecoder> Decodable<__D> for EarlyBinder<T>where +) -> QueryResult<()>

source§

impl EarlyBinder<PolyVariant>

Trait Implementations§

source§

impl<T: Clone> Clone for EarlyBinder<T>

source§

fn clone(&self) -> EarlyBinder<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for EarlyBinder<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, __D: TyDecoder> Decodable<__D> for EarlyBinder<T>where T: Decodable<__D>,

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<T, __E: TyEncoder> Encodable<__E> for EarlyBinder<T>where T: Encodable<__E>,

source§

fn encode(&self, __encoder: &mut __E)

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for EarlyBinder<T>where T: RefUnwindSafe,

§

impl<T> Send for EarlyBinder<T>where diff --git a/doc/flux_middle/rty/struct.FnOutput.html b/doc/flux_middle/rty/struct.FnOutput.html index ba79acefe3..f034c224ae 100644 --- a/doc/flux_middle/rty/struct.FnOutput.html +++ b/doc/flux_middle/rty/struct.FnOutput.html @@ -1,7 +1,7 @@ FnOutput in flux_middle::rty - Rust

Struct flux_middle::rty::FnOutput

source ·
pub struct FnOutput {
     pub ret: Ty,
     pub ensures: List<Constraint>,
-}

Fields§

§ret: Ty§ensures: List<Constraint>

Implementations§

source§

impl FnOutput

source

pub fn new(ret: Ty, ensures: impl Into<List<Constraint>>) -> Self

Trait Implementations§

source§

impl Clone for FnOutput

source§

fn clone(&self) -> FnOutput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FnOutput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for FnOutput

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for FnOutput

source§

fn encode(&self, __encoder: &mut __E)

source§

impl TypeFoldable for FnOutput

source§

fn try_fold_with<F: FallibleTypeFolder>( +}

Fields§

§ret: Ty§ensures: List<Constraint>

Implementations§

source§

impl FnOutput

source

pub fn new(ret: Ty, ensures: impl Into<List<Constraint>>) -> Self

Trait Implementations§

source§

impl Clone for FnOutput

source§

fn clone(&self) -> FnOutput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FnOutput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for FnOutput

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for FnOutput

source§

fn encode(&self, __encoder: &mut __E)

source§

impl TypeFoldable for FnOutput

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/struct.FnSig.html b/doc/flux_middle/rty/struct.FnSig.html index f1119421ba..0d5d964a7e 100644 --- a/doc/flux_middle/rty/struct.FnSig.html +++ b/doc/flux_middle/rty/struct.FnSig.html @@ -2,11 +2,11 @@ requires: List<Constraint>, args: List<Ty>, output: Binder<FnOutput>, -}

Fields§

§requires: List<Constraint>§args: List<Ty>§output: Binder<FnOutput>

Implementations§

source§

impl FnSig

source

pub fn new( +}

Fields§

§requires: List<Constraint>§args: List<Ty>§output: Binder<FnOutput>

Implementations§

source§

impl FnSig

source

pub fn new( requires: impl Into<List<Constraint>>, args: impl Into<List<Ty>>, output: Binder<FnOutput> -) -> Self

source

pub fn requires(&self) -> &Constraints

source

pub fn args(&self) -> &[Ty]

source

pub fn output(&self) -> &Binder<FnOutput>

Trait Implementations§

source§

impl Clone for FnSig

source§

fn clone(&self) -> FnSig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FnSig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for FnSig

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for FnSig

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Pretty for FnSig

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for FnSig

source§

fn try_fold_with<F: FallibleTypeFolder>( +) -> Self

source

pub fn requires(&self) -> &Constraints

source

pub fn args(&self) -> &[Ty]

source

pub fn output(&self) -> &Binder<FnOutput>

Trait Implementations§

source§

impl Clone for FnSig

source§

fn clone(&self) -> FnSig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FnSig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for FnSig

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for FnSig

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Pretty for FnSig

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for FnSig

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/struct.FuncSort.html b/doc/flux_middle/rty/struct.FuncSort.html index 662805a9d7..52da763245 100644 --- a/doc/flux_middle/rty/struct.FuncSort.html +++ b/doc/flux_middle/rty/struct.FuncSort.html @@ -1,10 +1,10 @@ FuncSort in flux_middle::rty - Rust

Struct flux_middle::rty::FuncSort

source ·
pub struct FuncSort {
     inputs_and_output: List<Sort>,
-}

Fields§

§inputs_and_output: List<Sort>

Implementations§

source§

impl FuncSort

source

pub fn new(inputs: Vec<Sort>, output: Sort) -> Self

source

pub fn inputs(&self) -> &[Sort]

source

pub fn output(&self) -> &Sort

Trait Implementations§

source§

impl Clone for FuncSort

source§

fn clone(&self) -> FuncSort

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FuncSort

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for FuncSort

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for FuncSort

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for FuncSort

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Fields§

§inputs_and_output: List<Sort>

Implementations§

source§

impl FuncSort

source

pub fn new(inputs: Vec<Sort>, output: Sort) -> Self

source

pub fn inputs(&self) -> &[Sort]

source

pub fn output(&self) -> &Sort

Trait Implementations§

source§

impl Clone for FuncSort

source§

fn clone(&self) -> FuncSort

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FuncSort

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for FuncSort

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for FuncSort

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for FuncSort

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for FuncSort

source§

fn eq(&self, other: &FuncSort) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for FuncSort

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Eq for FuncSort

source§

impl StructuralEq for FuncSort

source§

impl StructuralPartialEq for FuncSort

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for FuncSort

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Eq for FuncSort

source§

impl StructuralEq for FuncSort

source§

impl StructuralPartialEq for FuncSort

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/struct.GenericParamDef.html b/doc/flux_middle/rty/struct.GenericParamDef.html index ec51fbda16..c8e3174eb6 100644 --- a/doc/flux_middle/rty/struct.GenericParamDef.html +++ b/doc/flux_middle/rty/struct.GenericParamDef.html @@ -7,7 +7,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more

source§

impl PartialEq for GenericParamDef

source§

fn eq(&self, other: &GenericParamDef) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl SliceInternable for GenericParamDef

source§

impl Eq for GenericParamDef

source§

impl StructuralEq for GenericParamDef

source§

impl StructuralPartialEq for GenericParamDef

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl SliceInternable for GenericParamDef

source§

impl Eq for GenericParamDef

source§

impl StructuralEq for GenericParamDef

source§

impl StructuralPartialEq for GenericParamDef

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/struct.Generics.html b/doc/flux_middle/rty/struct.Generics.html index 8113eeb3a1..7a49d91d47 100644 --- a/doc/flux_middle/rty/struct.Generics.html +++ b/doc/flux_middle/rty/struct.Generics.html @@ -4,15 +4,15 @@ pub parent: Option<DefId>, pub parent_count: usize, pub parent_refine_count: usize, -}

Fields§

§params: List<GenericParamDef>§refine_params: List<RefineParam>§parent: Option<DefId>§parent_count: usize§parent_refine_count: usize

Implementations§

source§

impl Generics

source

pub fn param_at( +}

Fields§

§params: List<GenericParamDef>§refine_params: List<RefineParam>§parent: Option<DefId>§parent_count: usize§parent_refine_count: usize

Implementations§

source§

impl Generics

source

pub fn param_at( &self, param_index: usize, genv: &GlobalEnv<'_, '_> -) -> QueryResult<GenericParamDef>

source

pub fn refine_count(&self) -> usize

source

pub fn refine_param_at( +) -> QueryResult<GenericParamDef>

source

pub fn refine_count(&self) -> usize

source

pub fn refine_param_at( &self, param_index: usize, genv: &GlobalEnv<'_, '_> -) -> QueryResult<RefineParam>

source

pub fn collect_all_refine_params<T, S>( +) -> QueryResult<RefineParam>

source

pub fn collect_all_refine_params<T, S>( &self, genv: &GlobalEnv<'_, '_>, f: impl FnMut(RefineParam) -> T diff --git a/doc/flux_middle/rty/struct.Index.html b/doc/flux_middle/rty/struct.Index.html index a14ea54a48..0ee84721a0 100644 --- a/doc/flux_middle/rty/struct.Index.html +++ b/doc/flux_middle/rty/struct.Index.html @@ -1,11 +1,11 @@ Index in flux_middle::rty - Rust

Struct flux_middle::rty::Index

source ·
pub struct Index {
     pub expr: Expr,
     pub is_binder: TupleTree<bool>,
-}

Fields§

§expr: Expr§is_binder: TupleTree<bool>

Implementations§

source§

impl Index

source

pub(crate) fn unit() -> Self

Trait Implementations§

source§

impl Clone for Index

source§

fn clone(&self) -> Index

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Index

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for Index

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for Index

source§

fn encode(&self, __encoder: &mut __E)

source§

impl From<(Interned<ExprS>, TupleTree<bool>)> for Index

source§

fn from((expr, is_binder): (Expr, TupleTree<bool>)) -> Self

Converts to this type from the input type.
source§

impl From<Interned<ExprS>> for Index

source§

fn from(expr: Expr) -> Self

Converts to this type from the input type.
source§

impl From<ValueConst> for Index

source§

fn from(value: ValueConst) -> Self

Converts to this type from the input type.
source§

impl Hash for Index

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Fields§

§expr: Expr§is_binder: TupleTree<bool>

Implementations§

source§

impl Index

source

pub(crate) fn unit() -> Self

Trait Implementations§

source§

impl Clone for Index

source§

fn clone(&self) -> Index

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Index

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for Index

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for Index

source§

fn encode(&self, __encoder: &mut __E)

source§

impl From<(Interned<ExprS>, TupleTree<bool>)> for Index

source§

fn from((expr, is_binder): (Expr, TupleTree<bool>)) -> Self

Converts to this type from the input type.
source§

impl From<Interned<ExprS>> for Index

source§

fn from(expr: Expr) -> Self

Converts to this type from the input type.
source§

impl From<ValueConst> for Index

source§

fn from(value: ValueConst) -> Self

Converts to this type from the input type.
source§

impl Hash for Index

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Index

source§

fn eq(&self, other: &Index) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for Index

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for Index

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for Index

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for Index

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/struct.Invariant.html b/doc/flux_middle/rty/struct.Invariant.html index 2ac569d45d..cc8acb11f5 100644 --- a/doc/flux_middle/rty/struct.Invariant.html +++ b/doc/flux_middle/rty/struct.Invariant.html @@ -4,7 +4,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Invariant

source§

fn eq(&self, other: &Invariant) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl SliceInternable for Invariant

source§

impl TypeFoldable for Invariant

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl SliceInternable for Invariant

source§

impl TypeFoldable for Invariant

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/struct.PolyFuncSort.html b/doc/flux_middle/rty/struct.PolyFuncSort.html index 084e236071..ba8e7a3975 100644 --- a/doc/flux_middle/rty/struct.PolyFuncSort.html +++ b/doc/flux_middle/rty/struct.PolyFuncSort.html @@ -5,7 +5,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for PolyFuncSort

source§

fn eq(&self, other: &PolyFuncSort) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for PolyFuncSort

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Eq for PolyFuncSort

source§

impl StructuralEq for PolyFuncSort

source§

impl StructuralPartialEq for PolyFuncSort

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for PolyFuncSort

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Eq for PolyFuncSort

source§

impl StructuralEq for PolyFuncSort

source§

impl StructuralPartialEq for PolyFuncSort

Auto Trait Implementations§

§

impl RefUnwindSafe for PolyFuncSort

§

impl Send for PolyFuncSort

§

impl Sync for PolyFuncSort

§

impl Unpin for PolyFuncSort

§

impl UnwindSafe for PolyFuncSort

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/struct.RefineParam.html b/doc/flux_middle/rty/struct.RefineParam.html index f868c46924..1fed33b07e 100644 --- a/doc/flux_middle/rty/struct.RefineParam.html +++ b/doc/flux_middle/rty/struct.RefineParam.html @@ -5,7 +5,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for RefineParam

source§

fn eq(&self, other: &RefineParam) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl SliceInternable for RefineParam

source§

fn storage() -> &'static InternStorage<[Self]>

source§

impl Eq for RefineParam

source§

impl StructuralEq for RefineParam

source§

impl StructuralPartialEq for RefineParam

Auto Trait Implementations§

§

impl RefUnwindSafe for RefineParam

§

impl Send for RefineParam

§

impl Sync for RefineParam

§

impl Unpin for RefineParam

§

impl UnwindSafe for RefineParam

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl SliceInternable for RefineParam

source§

fn storage() -> &'static InternStorage<[Self]>

source§

impl Eq for RefineParam

source§

impl StructuralEq for RefineParam

source§

impl StructuralPartialEq for RefineParam

Auto Trait Implementations§

§

impl RefUnwindSafe for RefineParam

§

impl Send for RefineParam

§

impl Sync for RefineParam

§

impl Unpin for RefineParam

§

impl UnwindSafe for RefineParam

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/struct.TyS.html b/doc/flux_middle/rty/struct.TyS.html index fa2272a57a..7afc43860a 100644 --- a/doc/flux_middle/rty/struct.TyS.html +++ b/doc/flux_middle/rty/struct.TyS.html @@ -1,12 +1,12 @@ TyS in flux_middle::rty - Rust

Struct flux_middle::rty::TyS

source ·
pub struct TyS {
     kind: TyKind,
-}

Fields§

§kind: TyKind

Implementations§

source§

impl TyS

source

pub fn kind(&self) -> &TyKind

source

pub fn expect_discr(&self) -> (&AdtDef, &Place)

source

pub fn expect_adt(&self) -> (&AdtDef, &[GenericArg], &Index)

source

pub(crate) fn expect_tuple(&self) -> &[Ty]

source

pub fn is_integral(&self) -> bool

Whether the type is an int or a uint

-
source

pub fn is_bool(&self) -> bool

Whether the type is a bool

-
source

pub fn is_uninit(&self) -> bool

source

pub fn is_box(&self) -> bool

source

pub fn is_struct(&self) -> bool

source

pub fn is_closure(&self) -> bool

source

pub fn is_tuple(&self) -> bool

source

pub fn is_array(&self) -> bool

source

pub fn is_slice(&self) -> bool

source

pub fn as_bty_skipping_existentials(&self) -> Option<&BaseTy>

Trait Implementations§

source§

impl Clone for TyS

source§

fn clone(&self) -> TyS

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TyS

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for TyS

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for TyS

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for TyS

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Fields§

§kind: TyKind

Implementations§

source§

impl TyS

source

pub fn kind(&self) -> &TyKind

source

pub fn expect_discr(&self) -> (&AdtDef, &Place)

source

pub fn expect_adt(&self) -> (&AdtDef, &[GenericArg], &Index)

source

pub(crate) fn expect_tuple(&self) -> &[Ty]

source

pub fn is_integral(&self) -> bool

Whether the type is an int or a uint

+
source

pub fn is_bool(&self) -> bool

Whether the type is a bool

+
source

pub fn is_uninit(&self) -> bool

source

pub fn is_box(&self) -> bool

source

pub fn is_struct(&self) -> bool

source

pub fn is_closure(&self) -> bool

source

pub fn is_tuple(&self) -> bool

source

pub fn is_array(&self) -> bool

source

pub fn is_slice(&self) -> bool

source

pub fn as_bty_skipping_existentials(&self) -> Option<&BaseTy>

Trait Implementations§

source§

impl Clone for TyS

source§

fn clone(&self) -> TyS

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TyS

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for TyS

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for TyS

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for TyS

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Internable for TyS

source§

fn storage() -> &'static InternStorage<Self>

source§

impl PartialEq for TyS

source§

fn eq(&self, other: &TyS) -> bool

This method tests for self and other values to be equal, and is used + Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Internable for TyS

source§

fn storage() -> &'static InternStorage<Self>

source§

impl PartialEq for TyS

source§

fn eq(&self, other: &TyS) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for TyS

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Eq for TyS

source§

impl StructuralEq for TyS

source§

impl StructuralPartialEq for TyS

Auto Trait Implementations§

§

impl RefUnwindSafe for TyS

§

impl Send for TyS

§

impl Sync for TyS

§

impl Unpin for TyS

§

impl UnwindSafe for TyS

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for TyS

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Eq for TyS

source§

impl StructuralEq for TyS

source§

impl StructuralPartialEq for TyS

Auto Trait Implementations§

§

impl RefUnwindSafe for TyS

§

impl Send for TyS

§

impl Sync for TyS

§

impl Unpin for TyS

§

impl UnwindSafe for TyS

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rty/struct.VariantSig.html b/doc/flux_middle/rty/struct.VariantSig.html index 60f9eb14cf..3dad61f643 100644 --- a/doc/flux_middle/rty/struct.VariantSig.html +++ b/doc/flux_middle/rty/struct.VariantSig.html @@ -3,16 +3,16 @@ pub args: GenericArgs, pub fields: List<Ty>, pub idx: Expr, -}

Fields§

§adt_def: AdtDef§args: GenericArgs§fields: List<Ty>§idx: Expr

Implementations§

source§

impl VariantSig

source

pub fn new( +}

Fields§

§adt_def: AdtDef§args: GenericArgs§fields: List<Ty>§idx: Expr

Implementations§

source§

impl VariantSig

source

pub fn new( adt_def: AdtDef, args: GenericArgs, fields: List<Ty>, idx: Expr -) -> Self

source

pub fn fields(&self) -> &[Ty]

source

pub fn ret(&self) -> Ty

Trait Implementations§

source§

impl Clone for VariantSig

source§

fn clone(&self) -> VariantSig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for VariantSig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for VariantSig

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for VariantSig

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for VariantSig

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +) -> Self

source

pub fn fields(&self) -> &[Ty]

source

pub fn ret(&self) -> Ty

Trait Implementations§

source§

impl Clone for VariantSig

source§

fn clone(&self) -> VariantSig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for VariantSig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: TyDecoder> Decodable<__D> for VariantSig

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: TyEncoder> Encodable<__E> for VariantSig

source§

fn encode(&self, __encoder: &mut __E)

source§

impl Hash for VariantSig

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for VariantSig

source§

fn eq(&self, other: &VariantSig) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for VariantSig

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for VariantSig

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for VariantSig

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl TypeFoldable for VariantSig

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rty/type.PolyFnSig.html b/doc/flux_middle/rty/type.PolyFnSig.html index dfa07a6b80..cbf93106ce 100644 --- a/doc/flux_middle/rty/type.PolyFnSig.html +++ b/doc/flux_middle/rty/type.PolyFnSig.html @@ -1,4 +1,4 @@ PolyFnSig in flux_middle::rty - Rust

Type Alias flux_middle::rty::PolyFnSig

source ·
pub type PolyFnSig = Binder<FnSig>;

Aliased Type§

struct PolyFnSig {
     vars: Interned<[BoundVariableKind]>,
     value: FnSig,
-}

Fields§

§vars: Interned<[BoundVariableKind]>§value: FnSig

Trait Implementations§

source§

impl Pretty for PolyFnSig

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

\ No newline at end of file +}

Fields§

§vars: Interned<[BoundVariableKind]>§value: FnSig

Trait Implementations§

source§

impl Pretty for PolyFnSig

source§

fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

\ No newline at end of file diff --git a/doc/flux_middle/rty/type.PolyVariant.html b/doc/flux_middle/rty/type.PolyVariant.html index 8acdd1c138..c72436ed42 100644 --- a/doc/flux_middle/rty/type.PolyVariant.html +++ b/doc/flux_middle/rty/type.PolyVariant.html @@ -1,4 +1,4 @@ PolyVariant in flux_middle::rty - Rust

Type Alias flux_middle::rty::PolyVariant

source ·
pub type PolyVariant = Binder<VariantSig>;

Aliased Type§

struct PolyVariant {
     vars: Interned<[BoundVariableKind]>,
     value: VariantSig,
-}

Fields§

§vars: Interned<[BoundVariableKind]>§value: VariantSig

Trait Implementations§

\ No newline at end of file +}

Fields§

§vars: Interned<[BoundVariableKind]>§value: VariantSig

Trait Implementations§

\ No newline at end of file diff --git a/doc/flux_middle/rty/type.Ty.html b/doc/flux_middle/rty/type.Ty.html index 9e119dfadf..81533b967e 100644 --- a/doc/flux_middle/rty/type.Ty.html +++ b/doc/flux_middle/rty/type.Ty.html @@ -1,16 +1,16 @@ Ty in flux_middle::rty - Rust

Type Alias flux_middle::rty::Ty

source ·
pub type Ty = Interned<TyS>;

Aliased Type§

struct Ty {
     arc: Arc<TyS>,
-}

Fields§

§arc: Arc<TyS>

Implementations§

source§

impl Ty

source

pub fn alias(kind: AliasKind, alias_ty: AliasTy) -> Ty

source

pub fn opaque( +}

Fields§

§arc: Arc<TyS>

Implementations§

source§

impl Ty

source

pub fn alias(kind: AliasKind, alias_ty: AliasTy) -> Ty

source

pub fn opaque( def_id: impl Into<DefId>, args: GenericArgs, refine_args: RefineArgs -) -> Ty

source

pub fn projection(alias_ty: AliasTy) -> Ty

source

pub fn ptr(pk: impl Into<PtrKind>, path: impl Into<Path>) -> Ty

source

pub fn constr(p: impl Into<Expr>, ty: Ty) -> Ty

source

pub fn uninit() -> Ty

source

pub fn indexed(bty: BaseTy, idx: impl Into<Index>) -> Ty

source

pub fn exists(ty: Binder<Ty>) -> Ty

source

pub fn exists_with_constr(bty: BaseTy, pred: Expr) -> Ty

source

pub fn discr(adt_def: AdtDef, place: Place) -> Ty

source

pub fn unit() -> Ty

source

pub fn bool() -> Ty

source

pub fn int(int_ty: IntTy) -> Ty

source

pub fn uint(uint_ty: UintTy) -> Ty

source

pub fn param(param_ty: ParamTy) -> Ty

source

pub fn downcast( +) -> Ty

source

pub fn projection(alias_ty: AliasTy) -> Ty

source

pub fn ptr(pk: impl Into<PtrKind>, path: impl Into<Path>) -> Ty

source

pub fn constr(p: impl Into<Expr>, ty: Ty) -> Ty

source

pub fn uninit() -> Ty

source

pub fn indexed(bty: BaseTy, idx: impl Into<Index>) -> Ty

source

pub fn exists(ty: Binder<Ty>) -> Ty

source

pub fn exists_with_constr(bty: BaseTy, pred: Expr) -> Ty

source

pub fn discr(adt_def: AdtDef, place: Place) -> Ty

source

pub fn unit() -> Ty

source

pub fn bool() -> Ty

source

pub fn int(int_ty: IntTy) -> Ty

source

pub fn uint(uint_ty: UintTy) -> Ty

source

pub fn param(param_ty: ParamTy) -> Ty

source

pub fn downcast( adt: AdtDef, args: GenericArgs, ty: Ty, variant: VariantIdx, fields: List<Ty> -) -> Ty

source

pub fn blocked(ty: Ty) -> Ty

source

pub fn usize() -> Ty

source

pub fn str() -> Ty

source

pub fn char() -> Ty

source

pub fn float(float_ty: FloatTy) -> Ty

source

pub fn mk_ref(region: Region, ty: Ty, mutbl: Mutability) -> Ty

source

pub fn mk_slice(ty: Ty) -> Ty

source

pub fn tuple(tys: impl Into<List<Ty>>) -> Ty

source

pub fn array(ty: Ty, c: Const) -> Ty

source

pub fn closure(did: DefId, tys: impl Into<List<Ty>>) -> Ty

source

pub fn generator(did: DefId, args: impl Into<List<GenericArg>>) -> Ty

source

pub fn never() -> Ty

source

pub fn unconstr(&self) -> (Ty, Expr)

source

pub fn unblocked(&self) -> Ty

Trait Implementations§

source§

impl SliceInternable for Ty

source§

impl TypeFoldable for Ty

source§

fn try_fold_with<F: FallibleTypeFolder>( +) -> Ty

source

pub fn blocked(ty: Ty) -> Ty

source

pub fn usize() -> Ty

source

pub fn str() -> Ty

source

pub fn char() -> Ty

source

pub fn float(float_ty: FloatTy) -> Ty

source

pub fn mk_ref(region: Region, ty: Ty, mutbl: Mutability) -> Ty

source

pub fn mk_slice(ty: Ty) -> Ty

source

pub fn tuple(tys: impl Into<List<Ty>>) -> Ty

source

pub fn array(ty: Ty, c: Const) -> Ty

source

pub fn closure(did: DefId, tys: impl Into<List<Ty>>) -> Ty

source

pub fn generator(did: DefId, args: impl Into<List<GenericArg>>) -> Ty

source

pub fn never() -> Ty

source

pub fn unconstr(&self) -> (Ty, Expr)

source

pub fn unblocked(&self) -> Ty

Trait Implementations§

source§

impl SliceInternable for Ty

source§

impl TypeFoldable for Ty

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rustc/ty/enum.BoundRegionKind.html b/doc/flux_middle/rustc/ty/enum.BoundRegionKind.html index f162477f42..100c158e61 100644 --- a/doc/flux_middle/rustc/ty/enum.BoundRegionKind.html +++ b/doc/flux_middle/rustc/ty/enum.BoundRegionKind.html @@ -8,7 +8,7 @@ the event of shadowing.

§

BrEnv

Anonymous region for the implicit env pointer parameter to a closure

-

Trait Implementations§

source§

impl Pretty for BoundRegionKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Pretty for BoundRegionKind

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Qwhere diff --git a/doc/flux_middle/rustc/ty/enum.Const.html b/doc/flux_middle/rustc/ty/enum.Const.html index fc206e303d..aca5b1a6bd 100644 --- a/doc/flux_middle/rustc/ty/enum.Const.html +++ b/doc/flux_middle/rustc/ty/enum.Const.html @@ -5,7 +5,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Const

source§

fn eq(&self, other: &Const) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for Const

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Subst for Const

source§

fn subst(&self, args: &[GenericArg]) -> Self

source§

impl Eq for Const

source§

impl StructuralEq for Const

source§

impl StructuralPartialEq for Const

Auto Trait Implementations§

§

impl RefUnwindSafe for Const

§

impl Send for Const

§

impl Sync for Const

§

impl Unpin for Const

§

impl UnwindSafe for Const

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for Const

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Subst for Const

source§

fn subst(&self, args: &[GenericArg]) -> Self

source§

impl Eq for Const

source§

impl StructuralEq for Const

source§

impl StructuralPartialEq for Const

Auto Trait Implementations§

§

impl RefUnwindSafe for Const

§

impl Send for Const

§

impl Sync for Const

§

impl Unpin for Const

§

impl UnwindSafe for Const

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere diff --git a/doc/flux_middle/rustc/ty/enum.Region.html b/doc/flux_middle/rustc/ty/enum.Region.html index 35330019ca..554483362f 100644 --- a/doc/flux_middle/rustc/ty/enum.Region.html +++ b/doc/flux_middle/rustc/ty/enum.Region.html @@ -8,7 +8,7 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Region

source§

fn eq(&self, other: &Region) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Pretty for Region

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Subst for Region

source§

fn subst(&self, args: &[GenericArg]) -> Self

source§

impl TypeFoldable for Region

source§

fn try_fold_with<F: FallibleTypeFolder>( +sufficient, and should not be overridden without very good reason.

source§

impl Pretty for Region

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

source§

impl Subst for Region

source§

fn subst(&self, args: &[GenericArg]) -> Self

source§

impl TypeFoldable for Region

source§

fn try_fold_with<F: FallibleTypeFolder>( &self, folder: &mut F ) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>( diff --git a/doc/flux_middle/rustc/ty/struct.DebruijnIndex.html b/doc/flux_middle/rustc/ty/struct.DebruijnIndex.html index dbaf4492d7..85c2232f52 100644 --- a/doc/flux_middle/rustc/ty/struct.DebruijnIndex.html +++ b/doc/flux_middle/rustc/ty/struct.DebruijnIndex.html @@ -33,7 +33,7 @@ rather the outer one). Therefore, in this case, it is assigned a De Bruijn index of 0, because the innermost binder in that location is the outer fn.

-

Fields§

§private: u32

Trait Implementations§

source§

impl Pretty for DebruijnIndex

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Auto Trait Implementations§

§

impl RefUnwindSafe for DebruijnIndex

§

impl Send for DebruijnIndex

§

impl Sync for DebruijnIndex

§

impl Unpin for DebruijnIndex

§

impl UnwindSafe for DebruijnIndex

Blanket Implementations§

source§

impl<T> Any for Twhere +

Fields§

§private: u32

Trait Implementations§

source§

impl Pretty for DebruijnIndex

source§

fn fmt(&self, _cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

Auto Trait Implementations§

§

impl RefUnwindSafe for DebruijnIndex

§

impl Send for DebruijnIndex

§

impl Sync for DebruijnIndex

§

impl Unpin for DebruijnIndex

§

impl UnwindSafe for DebruijnIndex

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Qwhere diff --git a/doc/flux_middle/rustc/ty/struct.ValueConst.html b/doc/flux_middle/rustc/ty/struct.ValueConst.html index ee83c2a475..0962e56347 100644 --- a/doc/flux_middle/rustc/ty/struct.ValueConst.html +++ b/doc/flux_middle/rustc/ty/struct.ValueConst.html @@ -1,6 +1,6 @@ ValueConst in flux_middle::rustc::ty - Rust
pub struct ValueConst {
     pub val: usize,
-}

Fields§

§val: usize

Trait Implementations§

source§

impl Clone for ValueConst

source§

fn clone(&self) -> ValueConst

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ValueConst

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: Decoder> Decodable<__D> for ValueConst

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: Encoder> Encodable<__E> for ValueConst

source§

fn encode(&self, __encoder: &mut __E)

source§

impl From<ValueConst> for Index

source§

fn from(value: ValueConst) -> Self

Converts to this type from the input type.
source§

impl Hash for ValueConst

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Fields§

§val: usize

Trait Implementations§

source§

impl Clone for ValueConst

source§

fn clone(&self) -> ValueConst

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ValueConst

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<__D: Decoder> Decodable<__D> for ValueConst

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: Encoder> Encodable<__E> for ValueConst

source§

fn encode(&self, __encoder: &mut __E)

source§

impl From<ValueConst> for Index

source§

fn from(value: ValueConst) -> Self

Converts to this type from the input type.
source§

impl Hash for ValueConst

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for ValueConst

source§

fn eq(&self, other: &ValueConst) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/doc/flux_refineck/all.html b/doc/flux_refineck/all.html index 5d2a24d12e..5a2a4a213e 100644 --- a/doc/flux_refineck/all.html +++ b/doc/flux_refineck/all.html @@ -1 +1 @@ -List of all items in this crate

List of all items

Structs

Enums

Traits

Macros

Functions

Type Aliases

Opaque Types

Statics

Constants

\ No newline at end of file +List of all items in this crate

List of all items

Structs

Enums

Traits

Macros

Functions

Type Aliases

Opaque Types

Statics

Constants

\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/fn.mk_bool_bin_ops.html b/doc/flux_refineck/sigs/default/fn.mk_bool_bin_ops.html index c017a894d8..3186344106 100644 --- a/doc/flux_refineck/sigs/default/fn.mk_bool_bin_ops.html +++ b/doc/flux_refineck/sigs/default/fn.mk_bool_bin_ops.html @@ -1 +1 @@ -mk_bool_bin_ops in flux_refineck::sigs::default - Rust
pub(crate) fn mk_bool_bin_ops() -> impl IntoIterator<Item = (BinOp, Sig<2>)>
\ No newline at end of file +mk_bool_bin_ops in flux_refineck::sigs::default - Rust
pub(crate) fn mk_bool_bin_ops() -> impl IntoIterator<Item = (BinOp, Sig<2>)>
\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/fn.mk_lnot.html b/doc/flux_refineck/sigs/default/fn.mk_lnot.html new file mode 100644 index 0000000000..4d3f6a4505 --- /dev/null +++ b/doc/flux_refineck/sigs/default/fn.mk_lnot.html @@ -0,0 +1 @@ +mk_lnot in flux_refineck::sigs::default - Rust
pub(crate) fn mk_lnot() -> impl IntoIterator<Item = (UnOp, Sig<1>)>
\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/fn.mk_neg.html b/doc/flux_refineck/sigs/default/fn.mk_neg.html index 146a139f7f..431ea10f21 100644 --- a/doc/flux_refineck/sigs/default/fn.mk_neg.html +++ b/doc/flux_refineck/sigs/default/fn.mk_neg.html @@ -1 +1 @@ -mk_neg in flux_refineck::sigs::default - Rust

Function flux_refineck::sigs::default::mk_neg

source ·
fn mk_neg() -> impl Iterator<Item = (UnOp, Sig<1>)>
\ No newline at end of file +mk_neg in flux_refineck::sigs::default - Rust

Function flux_refineck::sigs::default::mk_neg

source ·
fn mk_neg() -> impl Iterator<Item = (UnOp, Sig<1>)>
\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/fn.mk_not.html b/doc/flux_refineck/sigs/default/fn.mk_not.html index 683808e674..9ab3ce66ad 100644 --- a/doc/flux_refineck/sigs/default/fn.mk_not.html +++ b/doc/flux_refineck/sigs/default/fn.mk_not.html @@ -1 +1 @@ -mk_not in flux_refineck::sigs::default - Rust

Function flux_refineck::sigs::default::mk_not

source ·
pub(crate) fn mk_not() -> (UnOp, Sig<1>)
\ No newline at end of file +mk_not in flux_refineck::sigs::default - Rust

Function flux_refineck::sigs::default::mk_not

source ·
pub(crate) fn mk_not() -> (UnOp, Sig<1>)
\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/fn.mk_shift_ops.html b/doc/flux_refineck/sigs/default/fn.mk_shift_ops.html index d2511348fb..7701c74a01 100644 --- a/doc/flux_refineck/sigs/default/fn.mk_shift_ops.html +++ b/doc/flux_refineck/sigs/default/fn.mk_shift_ops.html @@ -1 +1 @@ -mk_shift_ops in flux_refineck::sigs::default - Rust
pub(crate) fn mk_shift_ops() -> impl IntoIterator<Item = (BinOp, Sig<2>)>
\ No newline at end of file +mk_shift_ops in flux_refineck::sigs::default - Rust
pub(crate) fn mk_shift_ops() -> impl IntoIterator<Item = (BinOp, Sig<2>)>
\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/fn.mk_signed_bin_ops.html b/doc/flux_refineck/sigs/default/fn.mk_signed_bin_ops.html index 5e0dde1354..409196b008 100644 --- a/doc/flux_refineck/sigs/default/fn.mk_signed_bin_ops.html +++ b/doc/flux_refineck/sigs/default/fn.mk_signed_bin_ops.html @@ -1 +1 @@ -mk_signed_bin_ops in flux_refineck::sigs::default - Rust
fn mk_signed_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
\ No newline at end of file +mk_signed_bin_ops in flux_refineck::sigs::default - Rust
fn mk_signed_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/fn.mk_unsigned_bin_ops.html b/doc/flux_refineck/sigs/default/fn.mk_unsigned_bin_ops.html index d8484f86d8..307c894942 100644 --- a/doc/flux_refineck/sigs/default/fn.mk_unsigned_bin_ops.html +++ b/doc/flux_refineck/sigs/default/fn.mk_unsigned_bin_ops.html @@ -1,3 +1,3 @@ -mk_unsigned_bin_ops in flux_refineck::sigs::default - Rust
fn mk_unsigned_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
Expand description

This set of signatures does not check for overflow. They check for underflow +mk_unsigned_bin_ops in flux_refineck::sigs::default - Rust

fn mk_unsigned_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
Expand description

This set of signatures does not check for overflow. They check for underflow in subtraction.

\ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/index.html b/doc/flux_refineck/sigs/default/index.html index 924f3a7cbe..ec05b8319d 100644 --- a/doc/flux_refineck/sigs/default/index.html +++ b/doc/flux_refineck/sigs/default/index.html @@ -1,2 +1,2 @@ -flux_refineck::sigs::default - Rust

Module flux_refineck::sigs::default

source ·

Statics

Functions

  • mk_neg 🔒
  • mk_not 🔒
  • This set of signatures does not check for overflow. They check for underflow +flux_refineck::sigs::default - Rust

    Module flux_refineck::sigs::default

    source ·

    Statics

    Functions

    Type Aliases

    • E 🔒
    \ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/sidebar-items.js b/doc/flux_refineck/sigs/default/sidebar-items.js index 435217af1e..ec973fa167 100644 --- a/doc/flux_refineck/sigs/default/sidebar-items.js +++ b/doc/flux_refineck/sigs/default/sidebar-items.js @@ -1 +1 @@ -window.SIDEBAR_ITEMS = {"fn":["mk_bool_bin_ops","mk_neg","mk_not","mk_shift_ops","mk_signed_bin_ops","mk_unsigned_bin_ops"],"static":["BIN_OPS","UN_OPS"],"type":["E"]}; \ No newline at end of file +window.SIDEBAR_ITEMS = {"fn":["mk_bool_bin_ops","mk_lnot","mk_neg","mk_not","mk_shift_ops","mk_signed_bin_ops","mk_unsigned_bin_ops"],"static":["BIN_OPS","UN_OPS"],"type":["E"]}; \ No newline at end of file diff --git a/doc/flux_refineck/sigs/default/static.UN_OPS.html b/doc/flux_refineck/sigs/default/static.UN_OPS.html index 8a8dbc382e..5f749a079b 100644 --- a/doc/flux_refineck/sigs/default/static.UN_OPS.html +++ b/doc/flux_refineck/sigs/default/static.UN_OPS.html @@ -1 +1 @@ -UN_OPS in flux_refineck::sigs::default - Rust
    pub(super) static UN_OPS: LazyLock<SigTable<UnOp, 1>>
    \ No newline at end of file +UN_OPS in flux_refineck::sigs::default - Rust
    pub(super) static UN_OPS: LazyLock<SigTable<UnOp, 1>>
    \ No newline at end of file diff --git a/doc/flux_refineck/sigs/overflow/fn.mk_neg.html b/doc/flux_refineck/sigs/overflow/fn.mk_neg.html index 7a7c22795a..2b881a82f9 100644 --- a/doc/flux_refineck/sigs/overflow/fn.mk_neg.html +++ b/doc/flux_refineck/sigs/overflow/fn.mk_neg.html @@ -1 +1 @@ -mk_neg in flux_refineck::sigs::overflow - Rust
    fn mk_neg() -> impl Iterator<Item = (UnOp, Sig<1>)>
    \ No newline at end of file +mk_neg in flux_refineck::sigs::overflow - Rust
    fn mk_neg() -> impl Iterator<Item = (UnOp, Sig<1>)>
    \ No newline at end of file diff --git a/doc/flux_refineck/sigs/overflow/fn.mk_signed_bin_ops.html b/doc/flux_refineck/sigs/overflow/fn.mk_signed_bin_ops.html index d393128e3d..306d348d15 100644 --- a/doc/flux_refineck/sigs/overflow/fn.mk_signed_bin_ops.html +++ b/doc/flux_refineck/sigs/overflow/fn.mk_signed_bin_ops.html @@ -1 +1 @@ -mk_signed_bin_ops in flux_refineck::sigs::overflow - Rust
    fn mk_signed_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
    \ No newline at end of file +mk_signed_bin_ops in flux_refineck::sigs::overflow - Rust
    fn mk_signed_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
    \ No newline at end of file diff --git a/doc/flux_refineck/sigs/overflow/fn.mk_unsigned_bin_ops.html b/doc/flux_refineck/sigs/overflow/fn.mk_unsigned_bin_ops.html index 6ad48a49ad..a817ac64c6 100644 --- a/doc/flux_refineck/sigs/overflow/fn.mk_unsigned_bin_ops.html +++ b/doc/flux_refineck/sigs/overflow/fn.mk_unsigned_bin_ops.html @@ -1,4 +1,4 @@ -mk_unsigned_bin_ops in flux_refineck::sigs::overflow - Rust
    fn mk_unsigned_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
    Expand description

    This set of signatures checks for overflow and underflow. They work in +mk_unsigned_bin_ops in flux_refineck::sigs::overflow - Rust

    fn mk_unsigned_bin_ops() -> impl Iterator<Item = (BinOp, Sig<2>)>
    Expand description

    This set of signatures checks for overflow and underflow. They work in tandem with the invariant for unsigned ints returned in BaseTy::invariants.

    \ No newline at end of file diff --git a/doc/flux_refineck/sigs/overflow/index.html b/doc/flux_refineck/sigs/overflow/index.html index 5b80a50a9d..f355526068 100644 --- a/doc/flux_refineck/sigs/overflow/index.html +++ b/doc/flux_refineck/sigs/overflow/index.html @@ -1,3 +1,3 @@ -flux_refineck::sigs::overflow - Rust

    Statics

    Functions

    • mk_neg 🔒
    • This set of signatures checks for overflow and underflow. They work in +flux_refineck::sigs::overflow - Rust

      Statics

      Functions

      Type Aliases

      • E 🔒
      \ No newline at end of file diff --git a/doc/flux_refineck/sigs/overflow/static.UN_OPS.html b/doc/flux_refineck/sigs/overflow/static.UN_OPS.html index d61fa6f207..bc7eaafb22 100644 --- a/doc/flux_refineck/sigs/overflow/static.UN_OPS.html +++ b/doc/flux_refineck/sigs/overflow/static.UN_OPS.html @@ -1 +1 @@ -UN_OPS in flux_refineck::sigs::overflow - Rust
      pub(super) static UN_OPS: LazyLock<SigTable<UnOp, 1>>
      \ No newline at end of file +UN_OPS in flux_refineck::sigs::overflow - Rust
      pub(super) static UN_OPS: LazyLock<SigTable<UnOp, 1>>
      \ No newline at end of file diff --git a/doc/search-index.js b/doc/search-index.js index d3d00e2bc0..ffd79267a4 100644 --- a/doc/search-index.js +++ b/doc/search-index.js @@ -3,15 +3,15 @@ var searchIndex = JSON.parse('{\ "flux_bin":{"doc":"","t":"ARRRFFFFFF","n":["utils","EXIT_ERR","FLUX_SYSROOT","LIB_PATH","default_sysroot_dir","get_flux_driver_path","get_rust_toolchain","get_rustc_driver_lib_path","prepend_path_to_env_var","sysroot_dir"],"q":[[0,"flux_bin"],[1,"flux_bin::utils"],[10,"std::path"],[11,"anyhow"],[12,"alloc::string"],[13,"std::ffi::os_str"]],"d":["","","","","Return the default sysroot","","","Path from where to load the rustc-driver library from","Prepends the path so that it’s the first checked.","The path of the flux sysroot lib containing precompiled …"],"i":[0,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,[[],1],[[],[[2,[1]]]],[[],[[2,[3]]]],[4,[[2,[1]]]],[[4,1],[[2,[5]]]],[[],1]],"c":[],"p":[[3,"PathBuf",10],[6,"Result",11],[3,"String",12],[15,"str"],[3,"OsString",13]],"b":[]},\ "flux_common":{"doc":"","t":"OOOOOOOOOAOAAAAAAOORFFFFFDLLLLLLLMLLLLLLLLLLLLLLLLLLLLOOFFOOOOOOOFDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLMMLLLLLLLLLLLLLMLLIDDMMLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLKLLMLLLLLLLLLLLLLLLLLLIDDLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRFF","n":["_basic_block_start","_check_fn_span","_refine_goto","_refine_mode_span","_shape_goto_enter","_shape_goto_exit","_shape_mode_span","_statement","_terminator","bug","bug","cache","dbg","format","index","iter","mir_storage","span_bug","tracked_span_bug","TRACKED_SPAN","bug_fmt","opt_span_bug_fmt","span_bug_fmt","track_span","tracked_span_bug_fmt","QueryCache","borrow","borrow_mut","collect_and_apply","default","deref","deref_mut","drop","entries","filterable","from","from","from_cycle_error","init","insert","into","into_query_param","is_safe","load","new","no_cache_err","path","save","to_predicate","to_result","try_from","try_into","type_id","vzip","basic_block_start","check_fn_span","dump_base_name","dump_item_info","refine_goto","refine_mode_span","shape_goto_enter","shape_goto_exit","shape_mode_span","statement","terminator","writer_for_item","PadAdapter","PadAdapterState","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","init","init","inner","into","into","into_query_param","into_query_param","on_newline","state","to_owned","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","width","wrap_fmt","write_str","Idx","IndexGen","IndexVec","_marker","_marker","as_any","borrow","borrow","borrow_mut","borrow_mut","clone_into","collect_and_apply","collect_and_apply","count","default","deref","deref","deref_mut","deref_mut","drop","drop","equals","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","fingerprint_style","fresh","from","from","from","from","from_cycle_error","from_cycle_error","increment_by","index","init","init","into","into","into_query_param","into_query_param","is_suggestable","make_suggestable","new","new","plus","raw","recover","skip","skipping","to_debug_str","to_fingerprint","to_owned","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","IterExt","MapTakeWhile","ReportResiduals","borrow","borrow","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","f","f","filterable","filterable","fold","from","from","from","from","from_cycle_error","from_cycle_error","init","init","into","into","into_iter","into_iter","into_query_param","into_query_param","iter","iter","map_take_while","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","multiunzip","next","next","to_predicate","to_predicate","to_result","to_result","try_collect_exhaust","try_collect_vec","try_fold","try_for_each_exhaust","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","SHARED_STATE","retrieve_mir_body","store_mir_body"],"q":[[0,"flux_common"],[19,"flux_common::bug"],[25,"flux_common::cache"],[54,"flux_common::dbg"],[66,"flux_common::format"],[119,"flux_common::index"],[188,"flux_common::iter"],[269,"flux_common::mir_storage"],[272,"core::fmt"],[273,"core::option"],[274,"core::panic::location"],[275,"rustc_error_messages"],[276,"core::convert"],[277,"rustc_span::span_encoding"],[278,"core::ops::function"],[279,"core::iter::traits::iterator"],[280,"icu_provider_adapters::filter"],[281,"core::result"],[282,"rustc_query_system::query::job"],[283,"rustc_span"],[284,"alloc::string"],[285,"std::io::error"],[286,"std::path"],[287,"rustc_middle::ty::context"],[288,"core::any"],[289,"rustc_span::def_id"],[290,"core::convert"],[291,"rustc_middle::arena"],[292,"core::iter::traits::collect"],[293,"rustc_hir"],[294,"core::fmt"],[295,"rustc_query_system::dep_graph::dep_node"],[296,"rustc_data_structures::fingerprint"],[297,"core::ops::function"],[298,"core::marker"],[299,"core::iter::traits::collect"],[300,"core::ops::try_trait"],[301,"rustc_span::def_id"]],"d":["","","","","","","","","","","","","This file contains functions and macros to log debugging …","","","","This module allows storing mir bodies with borrowck facts …","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Represents some newtyped usize wrapper.","A generator of fresh indices.","An owned contiguous collection of Ts, indexed by I rather …","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","Generate a fresh index of type I.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Skip n indices","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","Safety"],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34,36,34,36,34,34,34,36,34,36,34,36,34,36,34,36,34,36,36,34,34,36,34,36,34,36,36,34,36,34,34,36,34,36,34,36,34,36,34,36,34,36,34,36,34,36,36,36,0,0,0,40,55,55,40,55,40,55,55,40,55,40,40,40,55,40,55,40,55,55,55,55,55,55,55,40,55,55,40,40,40,55,55,40,55,41,41,40,55,40,55,40,55,55,55,41,40,41,55,55,40,40,55,55,55,40,55,40,55,40,55,40,55,40,55,40,55,0,0,0,45,47,45,47,45,47,45,47,45,47,45,47,45,47,45,47,45,45,45,47,47,45,47,45,47,45,47,45,47,45,47,45,47,56,45,45,45,45,45,45,45,45,45,45,45,45,45,47,47,47,47,47,47,47,47,47,47,47,47,47,45,47,45,47,45,47,56,56,45,56,45,47,45,47,45,47,45,47,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[[[3,[-1]],1,4],2,[[6,[5]]]],[[-1,1],2,[[6,[5]]]],[[7,-1],-2,8,[]],[1,2],0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,9,8,[]],[[],10],[11,-1,[]],[11,-1,[]],[11,12],0,[[-1,13],[[14,[-2]]],[],[]],[-1,-1,[]],[[[15,[-1]]],-1,[]],[[-1,[17,[16]],18],-2,[],[]],[[],11],[[10,19,20],12],[-1,-2,[],[]],[-1,-2,[],[]],[[10,19,20],21],[[],10],[[],10],[[],22],[[],[[15,[23,22]]]],[10,[[15,[12,22]]]],[[-1,24],-2,[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,25,[]],[-1,-2,[],[]],0,0,[[24,26,-1],19,[[27,[13]]]],[[24,-1,-2,-3],[[28,[12]]],[[6,[26]]],[[27,[13]]],29],0,0,0,0,0,0,0,[[24,26,-1],[[28,[[0,[30]]]]],[[27,[13]]]],0,0,[[31,-1],[[17,[-2]]],32,[]],[[33,-1],[[17,[-2]]],32,[]],[[-1,33],-2,[],[]],[[-1,31],-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[34,34],[[-1,-2],12,[],[]],[[-1,-2],-3,9,8,[]],[[-1,-2],-3,9,8,[]],[11,-1,[]],[11,-1,[]],[11,-1,[]],[11,-1,[]],[11,12],[11,12],[[-1,13],[[14,[-2]]],[],[]],[[-1,13],[[14,[-2]]],[],[]],[[[15,[-1]]],-1,[]],[-1,-1,[]],[[[15,[-1]]],-1,[]],[-1,-1,[]],[[-1,[17,[16]],18],-2,[],[]],[[-1,[17,[16]],18],-2,[],[]],[[],11],[[],11],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[[-1,24],-2,[],[]],[[-1,24],-2,[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,25,[]],[-1,25,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,35],[[36,[-1]]],37],[[[36,[-1]],13],38,37],0,0,0,0,0,[-1,39,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],12,[],[]],[[-1,-2],-3,9,8,[]],[[-1,-2],-3,9,8,[]],0,[[],[[40,[-1]]],41],[11,-1,[]],[11,-1,[]],[11,-1,[]],[11,-1,[]],[11,12],[11,12],[[-1,39],21,[]],[[-1,-2],21,[],[]],[[-1,-2],21,[],[]],[[-1,-2],21,[],[]],[[-1,-2],21,[],[]],[[-1,-2],21,[],[]],[[-1,13],[[14,[-2]]],[],[]],[[-1,13],[[14,[-2]]],[],[]],[[],42],[[[40,[-1]]],-1,41],[[[15,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[15,[-1]]],-1,[]],[[-1,[17,[16]],18],-2,[],[]],[[-1,[17,[16]],18],-2,[],[]],[[-1,11],12,[]],[-1,11,[]],[[],11],[[],11],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,24,21],21,[]],[[-1,24,21],[[3,[-2]]],[],[]],[11,-1,[]],[[],[[40,[-1]]],41],[[-1,11],-1,[]],0,[[-1,43],[[3,[-2]]],[],[]],[[[40,[-1]],11],12,41],[11,[[40,[-1]]],41],[[-1,-2],19,[],[]],[[-1,-2],44,[],[]],[-1,-2,[],[]],[[-1,24],-2,[],[]],[[-1,24],-2,[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,25,[]],[-1,25,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,9,8,[]],[[-1,-2],-3,9,8,[]],[11,-1,[]],[11,-1,[]],[11,-1,[]],[11,-1,[]],[11,12],[11,12],0,0,[[-1,13],[[14,[-2]]],[],[]],[[-1,13],[[14,[-2]]],[],[]],[[[45,[-1,-2]],-3,-4],-3,9,46,[],46],[[[15,[-1]]],-1,[]],[-1,-1,[]],[[[15,[-1]]],-1,[]],[-1,-1,[]],[[-1,[17,[16]],18],-2,[],[]],[[-1,[17,[16]],18],-2,[],[]],[[],11],[[],11],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[-1,-2],[[47,[-1,-2]]],48,46],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12]]],[],[],[],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13]]],[],[],[],[],[],[],[],[],[],[],[],[],[]],[-1,12,[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10,-11]]],[],[],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10]]],[],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6]]],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5]]],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8]]],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4]]],[],[],[],[]],[-1,[[12,[-2,-3]]],[],[],[]],[-1,[[12,[-2]]],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7]]],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9]]],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5]]],[],[],[],[],[]],[-1,[[12,[-2]]],[],[]],[-1,12,[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13]]],[],[],[],[],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9]]],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7]]],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4]]],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6]]],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10,-11]]],[],[],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10]]],[],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12]]],[],[],[],[],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3,-4,-5,-6,-7,-8]]],[],[],[],[],[],[],[],[]],[-1,[[12,[-2,-3]]],[],[],[]],[[[45,[-1,-2]]],3,9,46],[[[47,[-1,-2]]],3,[9,48],46],[[-1,24],-2,[],[]],[[-1,24],-2,[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-3,18]]],[9,49],[],[[50,[-2]]]],[-1,[[15,[[51,[-2]],-3]]],[49,9],[],[]],[[[45,[-1,-2]],-3,-4],-5,9,46,[],46,52],[[-1,-2],[[15,[12,18]]],[9,49],46],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,[[15,[-2]]],[],[]],[-1,25,[]],[-1,25,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[24,53],54],[[24,53,54],12]],"c":[],"p":[[3,"Arguments",272],[15,"never"],[4,"Option",273],[3,"Location",274],[3,"MultiSpan",275],[8,"Into",276],[3,"Span",277],[8,"FnOnce",278],[8,"Iterator",279],[3,"QueryCache",25],[15,"usize"],[15,"tuple"],[15,"str"],[3,"RequestFilterDataProvider",280],[4,"Result",281],[3,"QueryInfo",282],[15,"slice"],[3,"ErrorGuaranteed",283],[3,"String",284],[15,"u64"],[15,"bool"],[3,"Error",285],[3,"PathBuf",286],[3,"TyCtxt",287],[3,"TypeId",288],[3,"DefId",289],[8,"AsRef",276],[6,"Result",285],[8,"Debug",272],[8,"Write",290],[3,"Arena",291],[8,"IntoIterator",292],[3,"Arena",293],[3,"PadAdapterState",66],[15,"u32"],[3,"PadAdapter",66],[8,"Write",272],[6,"Result",272],[8,"Any",288],[3,"IndexGen",119],[8,"Idx",119],[4,"FingerprintStyle",294],[3,"DepNode",295],[3,"Fingerprint",296],[3,"ReportResiduals",188],[8,"FnMut",278],[3,"MapTakeWhile",188],[8,"Clone",297],[8,"Sized",298],[8,"FromIterator",292],[3,"Vec",299],[8,"Try",300],[3,"LocalDefId",289],[3,"BodyWithBorrowckFacts",301],[3,"IndexVec",119],[8,"IterExt",188]],"b":[]},\ "flux_config":{"doc":"","t":"NNHHHDDNRRNNENNENNLLLLLLLLLLLLLLLLLLMMFFMFMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFMFMFMFMFMFMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLFMFMLFMMLLLLLLLLLLLLLLLLLLLL","n":["Array","Boolean","CONFIG","CONFIG_FILE","CONFIG_PATH","Config","CrateConfig","Datetime","FLUX_CONFIG_ENV_VAR","FLUX_ENV_VAR_PREFIX","Float","Integer","PointerWidth","String","Table","Value","W32","W64","as_array","as_array_mut","as_bool","as_datetime","as_float","as_integer","as_str","as_table","as_table_mut","bits","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cache","cache_file","cache_path","check_def","check_def","check_overflow","check_overflow","check_overflow","clone","clone","clone_into","clone_into","default","deserialize","deserialize","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","dump_checker_trace","dump_checker_trace","dump_constraint","dump_constraint","dump_fhir","dump_fhir","dump_mir","dump_mir","dump_rty","dump_rty","dump_timings","dump_timings","eq","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","get","get_mut","index","index_mut","into","into","into","into","into_deserializer","is_array","is_bool","is_cache_enabled","is_datetime","is_float","is_integer","is_str","is_table","log_dir","log_dir","pointer_width","pointer_width","same_type","scrape_quals","scrape_quals","scrape_quals","serialize","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_str"],"q":[[0,"flux_config"],[162,"alloc::vec"],[163,"core::option"],[164,"toml_datetime::datetime"],[165,"alloc::string"],[166,"toml::map"],[167,"std::path"],[168,"core::result"],[169,"serde::de"],[170,"toml::de"],[171,"serde::de"],[172,"core::fmt"],[173,"core::convert"],[174,"std::collections::hash::map"],[175,"core::hash"],[176,"core::cmp"],[177,"toml::value"],[178,"serde::ser"],[179,"toml::ser"],[180,"serde::ser"]],"d":["Represents a TOML array","Represents a TOML boolean","","","","","","Represents a TOML datetime","","","Represents a TOML float","Represents a TOML integer","","Represents a TOML string","Represents a TOML table","Representation of a TOML value.","","","Extracts the array value if it is an array.","Extracts the array value if it is an array.","Extracts the boolean value if it is a boolean.","Extracts the datetime value if it is a datetime.","Extracts the float value if it is a float.","Extracts the integer value if it is an integer.","Extracts the string of this value if it is a string.","Extracts the table value if it is a table.","Extracts the table value if it is a table.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Index into a TOML array or map. A string index can be used …","Mutably index into a TOML array or map. A string index can …","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Tests whether this value is an array.","Tests whether this value is a boolean.","","Tests whether this value is a datetime.","Tests whether this value is a float.","Tests whether this value is an integer.","Tests if this value is a string.","Tests whether this value is a table.","","","","","Tests whether this and another value have the same type.","","","","","","","","","","","","Convert a T into toml::Value which is an enum that can …","","","","","Interpret a toml::Value as an instance of type T.","","","","","","Returns a human-readable representation of the type of …"],"i":[1,1,0,0,0,0,0,1,0,0,1,1,0,1,1,0,11,11,1,1,1,1,1,1,1,1,1,11,15,16,11,1,15,16,11,1,16,16,0,0,16,0,15,16,11,1,11,1,15,16,11,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,16,0,16,0,16,0,16,0,16,0,16,1,15,1,1,15,16,11,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15,16,11,1,1,1,1,0,1,1,1,1,1,0,16,0,16,1,0,15,16,1,11,1,1,15,16,11,11,1,1,15,16,11,1,1,15,16,11,1,1],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[3,[[2,[1]]]]]],[1,[[3,[[2,[1]]]]]],[1,[[3,[4]]]],[1,[[3,[5]]]],[1,[[3,[6]]]],[1,[[3,[7]]]],[1,[[3,[8]]]],[1,[[3,[[10,[9,1]]]]]],[1,[[3,[[10,[9,1]]]]]],[11,12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],13],[[],8],0,[[],4],0,0,[11,11],[1,1],[[-1,-2],14,[],[]],[[-1,-2],14,[],[]],[[],15],[-1,[[17,[16]]],18],[-1,[[17,[11]]],18],[-1,[[17,[1]]],18],[[1,-1],[[17,[19]]],20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,8,[21,[8]],-1],[[17,[19]]],20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,8,-1],[[17,[19]]],20],[[1,-1],[[17,[19]]],20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,8,[21,[8]],-1],17,20],[[1,22,-1],17,20],[[1,8,22,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,-1],17,20],[[1,8,-1],17,20],[[],4],0,[[],4],0,[[],4],0,[[],4],0,[[],4],0,[[],4],0,[[1,1],4],[[15,23],24],[[1,23],[[17,[14,25]]]],[[1,23],[[17,[14,25]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[26,1],[[[27,[-1,-2]]],1,[[28,[9]]],[[28,[1]]]],[5,1],[[[29,[-1,-2]]],1,[[28,[9]],30,31],[[28,[1]]]],[[[10,[9,1]]],1],[9,1],[7,1],[4,1],[32,1],[6,1],[8,1],[33,1],[34,1],[[[2,[-1]]],1,[[28,[1]]]],[35,1],[8,[[17,[1]]]],[[1,-1],[[3,[1]]],36],[[1,-1],[[3,[1]]],36],[[1,-1],1,36],[[1,-1],1,36],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1,1],[1,4],[1,4],[[],4],[1,4],[1,4],[1,4],[1,4],[1,4],[[],13],0,[[],11],0,[[1,1],4],[[],4],0,0,[[1,-1],17,37],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[32,[[17,[11]]]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[1,38]]],39],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[1,[[17,[-1,19]]],40],[-1,[[17,[-2]]],[],[]],[-1,41,[]],[-1,41,[]],[-1,41,[]],[-1,41,[]],[1,8]],"c":[],"p":[[4,"Value",0],[3,"Vec",162],[4,"Option",163],[15,"bool"],[3,"Datetime",164],[15,"f64"],[15,"i64"],[15,"str"],[3,"String",165],[3,"Map",166],[4,"PointerWidth",0],[15,"u64"],[3,"PathBuf",167],[15,"tuple"],[3,"CrateConfig",0],[3,"Config",0],[4,"Result",168],[8,"Deserializer",169],[3,"Error",170],[8,"Visitor",169],[15,"slice"],[15,"usize"],[3,"Formatter",171],[6,"Result",171],[3,"Error",171],[15,"u32"],[3,"BTreeMap",172],[8,"Into",173],[3,"HashMap",174],[8,"Hash",175],[8,"Eq",176],[15,"u8"],[15,"f32"],[15,"i32"],[15,"i8"],[8,"Index",177],[8,"Serializer",178],[3,"Error",179],[8,"Serialize",178],[8,"Deserialize",169],[3,"TypeId",180]],"b":[[95,"impl-Display-for-Value"],[96,"impl-Debug-for-Value"],[101,"impl-From%3Cu32%3E-for-Value"],[102,"impl-From%3CBTreeMap%3CS,+V%3E%3E-for-Value"],[103,"impl-From%3CDatetime%3E-for-Value"],[104,"impl-From%3CHashMap%3CS,+V%3E%3E-for-Value"],[105,"impl-From%3CMap%3CString,+Value%3E%3E-for-Value"],[106,"impl-From%3CString%3E-for-Value"],[107,"impl-From%3Ci64%3E-for-Value"],[108,"impl-From%3Cbool%3E-for-Value"],[109,"impl-From%3Cu8%3E-for-Value"],[110,"impl-From%3Cf64%3E-for-Value"],[111,"impl-From%3C%26str%3E-for-Value"],[112,"impl-From%3Cf32%3E-for-Value"],[113,"impl-From%3Ci32%3E-for-Value"],[114,"impl-From%3CVec%3CV%3E%3E-for-Value"],[115,"impl-From%3Ci8%3E-for-Value"]]},\ -"flux_desugar":{"doc":"Desugaring from types in flux_syntax::surface to types in …","t":"HAFFFFFFFFFAFAANIGNDENNNDNNEGDLLLLLLLLLLLLLMLLLLLLLMOLLLLLLLLLLLFLLLFLLLLLLLLLLLLLLLLLLFLFLLLLFLLLLLLLLALLLLLLLLLLLLLLLLLLLLLFAFLLLLLLLLLLLLLLLFFKLLMMLLLLLLLLLLLLLLLLMMMLMLLKLLMMMMLLFLLMMMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNDNNNNNNGDENNNLLLLLLLLLLLMLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMLLLMLMLLLLLLLLLLLLLLLLLMLLLNDNGNNNNNNNNENGNELLLLLLLLLLLMLLLLLMLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLMMLMMLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDDDRRRRRRRRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLMMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLNDDNNEDDDGNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMDDRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLNNGHDDLLLLLLLLLLLLLLLLLLLLMLLMLLLLMMLLLLLLMMMMLLLLLLLLLLLLLL","n":["DEFAULT_LOCALE_RESOURCE","desugar","desugar_defn","desugar_enum_def","desugar_fn_sig","desugar_generics_and_predicates","desugar_qualifier","desugar_refined_by","desugar_sort_decl","desugar_struct_def","desugar_type_alias","errors","func_def_to_func_decl","resolver","sort_resolver","Const","DesugarCtxt","Env","Err","FluxItemCtxt","FuncRes","Global","NumConst","Ok","Param","Param","Param","QPathRes","Result","RustItemCtxt","as_lift_cx","bind_into_refine_arg","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_param_uses","children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","curr","define_resolve_num_const","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","desugar_asyncness","desugar_bin_op","desugar_bty","desugar_bty_bind","desugar_constraint","desugar_defn","desugar_enum_def","desugar_enum_variant_def","desugar_expr","desugar_exprs","desugar_fn_ret_ty","desugar_fn_sig","desugar_fun_arg","desugar_generic_args","desugar_generic_bounds","desugar_generics","desugar_indices","desugar_lit","desugar_opaque_ty_for_async","desugar_opaque_ty_for_impl_trait","desugar_path","desugar_path_to_bty","desugar_predicate","desugar_predicates","desugar_qualifier","desugar_refine_arg","desugar_refined_by","desugar_struct_def","desugar_trait_ref","desugar_ty","desugar_type_alias","desugar_un_op","desugar_variant_ret","drop","drop","drop","drop","drop","emit_err","emit_err","env","filterable","filterable","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","func_def_to_func_decl","gather","gather_base_sort_vars","gather_params_bty","gather_params_fn_sig","gather_params_fn_sig_input","gather_params_fn_sig_output","gather_params_fun_arg","gather_params_generic_arg","gather_params_indices","gather_params_path","gather_params_predicates","gather_params_refine_arg","gather_params_struct","gather_params_ty","gather_params_type_alias","gather_params_variant","gather_params_variant_ret","gather_refined_by_sort_vars","gather_sort_vars","genv","genv","genv","genv","genv","init","init","init","init","init","insert_opaque_ty","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kind","local_id_gen","local_id_gen","mk_lft_hole","name","new","new","next_fhir_id","next_fhir_id","next_fhir_id","opaque_tys","owner","owner","parent","resolve_func","resolve_loc","resolve_num_const","resolve_params","resolve_qpath","resolver_output","root","scopes","sess","sort","sort_resolver","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","with_new_owner","Abs","Enum","Env","Err","Exists","FluxItem","FnInput","FnOutput","Ok","Result","Scope","ScopeId","Struct","TyAlias","Variant","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","as_any","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","curr","curr","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","enter","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","exit","extend","extend","filter_map","filterable","filterable","filterable","find_map","fmt","fmt","fmt","fmt_rec","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_params","get","get_mut","get_with_scope","hash","init","init","init","insert","insert","into","into","into","into_desugar_env","into_iter","into_params","into_query_param","into_query_param","into_query_param","into_root","iter","map","mark_as_used","new","new","parent","pop","push","root","root","scope","scopes","to_owned","to_predicate","to_predicate","to_predicate","to_refine_args","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","used","vzip","vzip","vzip","At","CheckParamUses","Colon","Env","Err","Explicit","Field","Generic","Input","Ok","Other","Output","Param","Pound","Result","SyntaxError","TypePos","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_use","children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","curr","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","env","error","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","into","into","into","into_query_param","into_query_param","into_query_param","is_binder_allowed","new","parent","root","run","scopes","sess","to_owned","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","visit_constraint","visit_expr","visit_fn_sig","visit_qpath_expr","visit_ty","vzip","vzip","vzip","DuplicateParam","IllegalBinder","IntTooLarge","InvalidDotVar","InvalidNumericSuffix","InvalidUnrefinedParam","RefineArgCountMismatch","RefinedUnrefinableType","SortArityMismatch","UnexpectedLiteral","UnresolvedGenericParam","UnresolvedSort","UnresolvedVar","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DuplicateParam","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_IllegalBinder","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_IntTooLarge","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidDotVar","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidNumericSuffix","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidUnrefinedParam","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RefineArgCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RefinedUnrefinableType","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_SortArityMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnexpectedLiteral","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedGenericParam","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedSort","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedVar","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","expected","expected","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","first_use","found","found","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_ident","from_qpath","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kind","name","new","new","new","new","new","new","new","new","new","sort","span","span","span","span","span","span","span","span","span","span","span","span","span","suffix","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","var","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Err","ItemLikeResolver","NameResTable","Ok","Res","ResEntry","ResKey","Resolver","ResolverOutput","Result","Unsupported","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_from_fn_sig","collect_from_generic_arg","collect_from_generic_args","collect_from_generic_bound","collect_from_generic_bounds","collect_from_generics","collect_from_opaque_impls","collect_from_path","collect_from_term","collect_from_ty","collect_from_type_binding","collect_from_where_predicate","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","errors","filterable","filterable","filterable","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_hir_path","from_ident","from_impl_item","from_item","from_path","from_trait_item","get","hash","impl_trait_res_map","init","init","init","init","init","init","insert","into","into","into","into","into","into","into_output","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","new","new","new","opaque","output","output","path_res_map","res","resolve_arg","resolve_asyncness","resolve_bounds","resolve_bty","resolve_constraint","resolve_enum_def","resolve_fn_ret_ty","resolve_fn_sig","resolve_generic_arg","resolve_opaque_impl","resolve_path","resolve_struct_def","resolve_trait_ref","resolve_ty","resolve_type_alias","resolve_variant","resolve_variant_ret","resolve_where_bound_predicate","s","sess","sess","sess","table","tcx","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unsupported","vzip","vzip","vzip","vzip","vzip","vzip","reason","span","UnresolvedPath","UnsupportedSignature","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedPath","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedSignature","borrow","borrow","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","init","init","into","into","into_diagnostic","into_diagnostic","into_query_param","into_query_param","new","new","note","path","span","span","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Err","Ok","Result","SORTS","SortResolver","Sorts","borrow","borrow","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","generic_params","init","init","int","into","into","into_query_param","into_query_param","map","real","resolve_app_sort","resolve_base_sort","resolve_base_sort_ident","resolve_func_sort","resolve_sort","resolve_sort_ctor","sess","set","sort_decls","sort_params","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","with_generics","with_sort_params"],"q":[[0,"flux_desugar"],[15,"flux_desugar::desugar"],[223,"flux_desugar::desugar::env"],[348,"flux_desugar::desugar::gather"],[448,"flux_desugar::errors"],[769,"flux_desugar::resolver"],[962,"flux_desugar::resolver::ResEntry"],[964,"flux_desugar::resolver::errors"],[1014,"flux_desugar::sort_resolver"],[1074,"flux_middle::global_env"],[1075,"flux_syntax::surface"],[1076,"flux_middle::fhir"],[1077,"core::option"],[1078,"rustc_span"],[1079,"core::result"],[1080,"rustc_hir::hir_id"],[1081,"flux_syntax::surface"],[1082,"flux_middle::fhir"],[1083,"flux_syntax::surface"],[1084,"rustc_span::symbol"],[1085,"flux_middle::fhir"],[1086,"core::iter::traits::iterator"],[1087,"flux_syntax::surface"],[1088,"flux_syntax::surface"],[1089,"flux_middle::fhir"],[1090,"flux_middle::fhir"],[1091,"rustc_ast::token"],[1092,"flux_middle::fhir"],[1093,"icu_provider_adapters::filter"],[1094,"core::fmt"],[1095,"core::fmt"],[1096,"rustc_span::symbol"],[1097,"flux_syntax::surface"],[1098,"flux_middle::fhir"],[1099,"flux_middle::fhir"],[1100,"flux_syntax::surface"],[1101,"core::any"],[1102,"rustc_middle::arena"],[1103,"rustc_hir"],[1104,"core::any"],[1105,"flux_middle::fhir"],[1106,"rustc_errors::diagnostic_builder"],[1107,"flux_syntax::surface"]],"d":["Raw content of Fluent resource for this crate, generated …","","","","","HACK(nilehmann) this is a bit of a hack. We use it to …","","","","","","","","","","","","","Contains the error value","","","","","Contains the success value","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Gathering is the process of building an Env for a surface …","","","","","","","","","","Synthetic parameters cannot be defined inside predicates …","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The scope introduced by lambda abstraction. It includes …","The scope introduced by the refined_by annotation in a …","The environment used for desugaring that tracks parameter …","Contains the error value","The scope introduced by an existential type. Either the …","The scope introduced by a flux item like a func definition …","The scope introduced by a function’s input parameters. …","The scope introduced by a function’s output parameters. …","Contains the success value","","","","The scope introduced by the refined_by annotation in a …","The scope introduced by type alias. It includes the early …","The scope introduced by variant. It includes parameters …","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","Enter a child scope.","","","","","","","","Exit the current scope back into the parent scope.","Extends the current scope with a list of parameters …","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","Inserts a parameter in the current scope, returning an …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Remove the current scope and return it. Then set the …","Push a scope with id as a child of the current scope and …","","","","","","","","","","","","","","","","","","","","","","","","","","A parameter declared with @n syntax.","","A parameter declared with x: T syntax.","Environment used during gathering.","Contains the error value","A parameter declared in an explicit scope.","A struct field which disallow any implicitly scoped params.","Type inside a generic argument which disallow implicitly …","Type in input position allowing @n params. Used for …","Contains the success value","Any other position which doesn’t allow implicitly scoped …","Type in output position allowing #n params.","Parameters used during gathering.","A parameter declared with #n syntax.","","A parameter that we know syntactically cannot be used …","A position within a type to track where binders are …","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","","","Contains the success value","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","Contains the success value","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,159,0,0,98,100,159,0,98,100,0,0,0,25,25,25,93,98,100,29,25,93,98,100,29,25,160,29,29,25,93,98,100,29,160,0,25,93,98,100,29,25,93,98,100,29,25,0,25,25,25,0,25,25,116,116,25,25,25,25,25,25,25,116,25,25,25,25,25,25,0,25,0,25,25,25,25,0,25,25,93,98,100,29,25,116,0,25,93,98,100,29,29,25,25,93,93,98,98,100,100,29,29,25,93,98,100,29,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,116,25,93,25,93,25,93,98,100,29,25,25,93,98,100,29,25,93,98,100,29,29,25,93,25,29,25,93,116,25,93,25,25,93,160,116,116,0,25,116,25,160,160,25,29,25,29,25,93,98,100,29,25,93,98,100,29,25,93,98,100,29,25,93,98,100,29,25,93,98,100,29,25,93,98,100,29,25,108,108,0,161,108,108,108,108,161,0,0,0,108,108,108,108,108,108,108,108,30,109,108,30,109,108,30,108,108,30,109,108,30,30,30,109,108,30,109,108,30,109,108,30,108,108,108,108,108,108,108,30,30,109,30,30,109,108,30,30,109,108,30,30,30,109,109,108,108,30,109,108,30,30,30,30,108,30,109,108,30,109,30,109,108,30,109,109,30,109,108,30,109,109,109,30,109,30,30,30,30,30,30,30,108,30,109,108,109,30,109,108,30,109,108,30,109,108,30,109,108,109,30,109,108,32,0,32,0,162,32,91,91,91,162,91,91,0,32,0,32,0,91,91,91,91,117,91,32,117,91,32,117,163,91,91,117,91,32,163,117,91,32,117,91,32,117,91,32,117,117,117,91,32,32,117,117,91,91,32,32,32,117,91,32,117,91,32,117,91,32,117,91,32,91,117,163,163,117,163,117,91,117,91,32,117,91,32,117,91,32,117,91,32,117,91,32,117,117,117,117,117,117,91,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,128,129,119,123,124,125,126,127,128,129,130,131,132,133,134,123,128,129,119,119,123,123,124,124,125,125,126,126,127,127,128,128,129,129,130,130,131,131,132,132,133,133,134,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,119,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,134,123,123,124,128,129,130,131,132,133,134,124,119,123,124,125,126,127,128,129,130,131,132,133,134,131,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,123,124,125,126,127,128,129,130,131,132,133,134,119,130,119,123,124,125,126,127,128,129,130,131,132,133,134,164,0,0,164,147,0,0,0,0,0,147,146,152,153,135,147,9,146,152,153,135,147,9,146,152,153,135,147,9,146,135,135,135,135,135,135,135,135,135,135,135,135,9,152,153,135,147,9,146,152,153,135,147,9,146,152,153,135,147,9,146,146,146,146,146,146,146,146,0,152,153,135,147,9,146,146,152,152,153,153,135,135,147,147,147,9,9,146,146,152,153,135,147,9,146,146,146,135,135,146,135,135,146,9,152,153,135,147,9,146,135,152,153,135,147,9,146,152,152,153,135,147,9,146,152,153,135,135,152,153,9,135,153,153,153,153,153,152,153,152,153,153,153,152,153,153,152,153,153,153,146,152,153,135,153,152,152,153,135,147,9,146,152,153,135,147,9,146,152,153,135,147,9,146,152,153,135,147,9,146,152,153,135,147,9,146,147,152,153,135,147,9,146,165,165,0,0,0,0,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,155,156,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,155,156,166,166,0,0,0,0,113,167,113,167,113,167,113,167,113,167,113,167,113,167,113,113,167,167,113,167,113,113,167,167,113,167,113,167,167,167,113,113,113,113,113,113,113,167,113,113,113,167,113,167,113,167,113,167,113,167,113,167,113,113],"f":[0,0,[[1,2],[[6,[[4,[3]],5]]]],[[1,7,8,9],[[6,[10,5]]]],[[1,7,[4,[11]],9],[[6,[10,5]]]],[[1,7,9,[4,[12]]],[[6,[10,5]]]],[[1,13],[[6,[14,5]]]],[[15,16,7,17,18],[[6,[19,5]]]],[20,21],[[1,7,22,9],[[6,[10,5]]]],[[1,7,[4,[23]],9],[[6,[10,5]]]],0,[[15,16,2],[[6,[24,5]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[25,26],[[25,27,[4,[28]],[30,[29]]],[[6,[[4,[31]],5]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[25,[30,[32]],-1],[[6,[10,5]]],33],0,[29,29],[[-1,-2],10,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],0,0,[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[[25,36,37,[30,[29]]],[[6,[38,5]]]],[39,40],[[25,41,[30,[29]]],[[6,[42,5]]]],[[25,[4,[27]],41,[30,[29]]],[[6,[38,5]]]],[[25,43,[30,[29]]],[[6,[44,5]]]],[[1,2],[[6,[[4,[3]],5]]]],[[25,8],[[6,[45,5]]]],[[25,[4,[46]],47],[[6,[48,5]]]],[[-1,[30,[29]],49],[[6,[50,5]]],[]],[[-1,[30,[29]],[51,[49]]],[[6,[[52,[50]],5]]],[]],[[25,37,[30,[29]]],[[6,[38,5]]]],[[25,11],[[6,[[10,[53,54]],5]]]],[[25,55,[30,[29]],[52,[44]]],[[6,[38,5]]]],[[25,56,[51,[57]],[30,[29]]],[[6,[[10,[[52,[58]],[52,[59]]]],5]]]],[[25,60,[30,[29]]],[[6,[61,5]]]],[[25,12],[[6,[62,5]]]],[[25,42,63,[30,[29]]],[[6,[31,5]]]],[[-1,64,65],[[6,[66,5]]],[]],[[25,37,[30,[29]]],[[6,[67,5]]]],[[25,60,[30,[29]]],[[6,[67,5]]]],[[25,68,[30,[29]]],[[6,[69,5]]]],[[25,68,[30,[29]]],[[6,[42,5]]]],[[25,70,[30,[29]]],[[6,[71,5]]]],[[25,[52,[70]],[30,[29]]],[[6,[53,5]]]],[[1,13],[[6,[14,5]]]],[[25,72,[4,[28]],[30,[29]]],[[6,[31,5]]]],[[15,16,7,17,18],[[6,[19,5]]]],[[25,22],[[6,[73,5]]]],[[25,74,[30,[29]]],[[6,[75,5]]]],[[25,[4,[27]],76,[30,[29]]],[[6,[38,5]]]],[[25,23],[[6,[77,5]]]],[78,79],[[25,80,[30,[29]]],[[6,[81,5]]]],[35,10],[35,10],[35,10],[35,10],[35,10],[[25,-1],5,82],[[-1,-2],5,[],82],0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[29,85],86],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[15,16,2],[[6,[24,5]]]],0,[[[89,[88]],90,[89,[88]]],10],[[25,41,91,[30,[32]]],[[6,[10,5]]]],[[25,11],[[6,[[30,[29]],5]]]],[[25,11,[30,[32]]],[[6,[10,5]]]],[[25,11,[30,[32]]],[[6,[10,5]]]],[[25,55,[30,[32]]],[[6,[10,5]]]],[[25,57,91,[30,[32]]],[[6,[10,5]]]],[[25,63,91,[30,[32]]],[[6,[10,5]]]],[[25,68,91,[30,[32]]],[[6,[10,5]]]],[[25,[51,[70]],[30,[32]]],[[6,[10,5]]]],[[25,72,91,[30,[32]]],[[6,[10,5]]]],[[25,22],[[6,[[30,[29]],5]]]],[[25,[4,[27]],76,91,[30,[32]]],[[6,[10,5]]]],[[25,23],[[6,[[30,[29]],5]]]],[[25,46],[[6,[[30,[29]],5]]]],[[25,80,[30,[32]]],[[6,[10,5]]]],[[17,18],[[52,[88]]]],[[[89,[88]],92,[89,[88]]],10],[-1,1,[]],[25,1],[93,1],0,0,[[],35],[[],35],[[],35],[[],35],[[],35],[[25,94,67],10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[25,95],0,[[1,7,9,[4,[[96,[94,67]]]]],25],[[1,88],93],[-1,97,[]],[25,97],[93,97],0,0,0,0,[[-1,[30,[29]],27],[[6,[98,5]]],[]],[[-1,[30,[29]],27],[[6,[99,5]]],[]],[[27,27],[[4,[100]]]],[[25,-1],[[6,[[52,[[10,[27,32]]]],5]]],101],[[-1,[30,[29]],102],[[6,[100,5]]],[]],0,0,0,[25,15],0,0,[-1,-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[25,7],25],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[105,-1],[[51,[-2]]],101,[]],[[106,-1],[[51,[-2]]],101,[]],[[-1,105],-2,[],[]],[[-1,106],-2,[],[]],[-1,107,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[108,108],[[-1,-2],10,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[[30,[-1]]],[[109,[-1]]],[]],0,[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],[[[30,[-1]],108],10,[]],[[108,108],110],[[-1,107],110,[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],[[[30,[-1]]],10,[]],[[[30,[-1]],15,-2],[[6,[10,5]]],[],101],[[[109,[-1]],15,-2],[[6,[10,5]]],[],101],[[[30,[-1]],-2],[[30,[-3]]],[],111,[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[[30,[-1]],-2],[[4,[-3]]],[],111,[]],[[[30,[-1]],85],86,112],[[[109,[-1]],85],86,112],[[108,85],86],[[[30,[-1]],108,83,110,85],86,112],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[1,113,108,-1],[[6,[[30,[29]],5]]],101],[[[30,[-1]],27],[[4,[-1]]],[]],[[[30,[-1]],27],[[4,[-1]]],[]],[[[30,[-1]],27],[[4,[[10,[108,-1]]]]],[]],[[108,-1],10,114],[[],35],[[],35],[[],35],[[[30,[-1]],15,27,-1],[[6,[10,5]]],[]],[[[109,[-1]],15,27,-1],[[6,[10,5]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[30,[32]]],[[30,[29]]]],[[[109,[-1]]],[[0,[34]]],[]],[[[109,[29]],-1],[[52,[115]]],116],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[30,[-1]]],[[109,[-1]]],[]],[[[109,[-1]]],[[0,[34]]],[]],0,[[[109,[-1]],27],10,[]],[108,[[30,[-1]]],[]],[[],[[109,[-1]]],[]],0,[[[30,[-1]]],[[109,[-1]]],[]],[[[30,[-1]],108],10,[]],[[[30,[-1]]],[[109,[-1]]],[]],0,[[[30,[-1]],108],[[109,[-1]]],[]],0,[-1,-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[[109,[29]],-1,64],[[52,[31]]],116],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[105,-1],[[51,[-2]]],101,[]],[[106,-1],[[51,[-2]]],101,[]],[[-1,105],-2,[],[]],[[-1,106],-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[117,27],10],0,[91,91],[[-1,-2],10,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],0,[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],0,0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[32,85],86],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[118,32],[-1,-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[],35],[[],35],[[],35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[91,118],110],[[15,[30,[32]]],117],0,0,[[117,-1],[[6,[10,5]]],33],0,0,[-1,-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[[117,43],10],[[117,49],10],[[117,11],10],[[117,102],10],[[117,76],10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,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,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],0,0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],0,0,0,[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[27,119],[102,119],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[119,120],[[121,[-1]]],122],[[123,120],[[121,[-1]]],122],[[124,120],[[121,[-1]]],122],[[125,120],[[121,[-1]]],122],[[126,120],[[121,[-1]]],122],[[127,120],[[121,[-1]]],122],[[128,120],[[121,[-1]]],122],[[129,120],[[121,[-1]]],122],[[130,120],[[121,[-1]]],122],[[131,120],[[121,[-1]]],122],[[132,120],[[121,[-1]]],122],[[133,120],[[121,[-1]]],122],[[134,120],[[121,[-1]]],122],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[27,27],123],[27,124],[[64,35,35],128],[[63,35],129],[27,130],[[64,88],131],[64,132],[27,133],[[64,118],134],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[-1,107,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[135,136],[[6,[10,5]]]],[[135,137],[[6,[10,5]]]],[[135,138],[[6,[10,5]]]],[[135,139],[[6,[10,5]]]],[[135,[51,[139]]],[[6,[10,5]]]],[[135,140],[[6,[10,5]]]],[[135,103],[[6,[10,5]]]],[[135,141],[[6,[10,5]]]],[[135,142],[[6,[10,5]]]],[[135,143],[[6,[10,5]]]],[[135,144],[[6,[10,5]]]],[[135,145],[[6,[10,5]]]],[[],9],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[[146,146],110],[[-1,107],110,[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],[[-1,-2],110,[],[]],0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[146,85],86],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[56,147],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[15,141],[[6,[146,5]]]],[27,146],[[103,15,148],[[6,[135,5]]]],[[103,15,149],[[6,[135,5]]]],[68,146],[[103,15,150],[[6,[135,5]]]],[[135,146],[[4,[147]]]],[[146,-1],10,114],0,[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[135,146,-1],10,[[151,[147]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[152,9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[103,15],152],[[103,15,7,9],[[6,[153,5]]]],[15,135],0,0,0,0,0,[[153,55],[[6,[10,5]]]],[[153,36],[[6,[10,5]]]],[[153,60],[[6,[10,5]]]],[[153,41],[[6,[10,5]]]],[[153,43],[[6,[10,5]]]],[[152,7,8],[[6,[10,5]]]],[[153,37],[[6,[10,5]]]],[[152,7,11],[[6,[10,5]]]],[[153,57],[[6,[10,5]]]],[[153,154,64],[[6,[10,5]]]],[[153,68],[[6,[10,5]]]],[[152,7,22],[[6,[10,5]]]],[[153,74],[[6,[10,5]]]],[[153,76],[[6,[10,5]]]],[[152,7,23],[[6,[10,5]]]],[[153,[4,[46]]],[[6,[10,5]]]],[[153,80],[[6,[10,5]]]],[[153,70],[[6,[10,5]]]],0,0,0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[-1,104,[]],[141,147],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[],35],[[],35],[-1,-2,[],[]],[-1,-2,[],[]],[[155,120],[[121,[-1]]],122],[[156,120],[[121,[-1]]],122],[-1,-2,[],[]],[-1,-2,[],[]],[[64,83],155],[68,156],0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,104,[]],[-1,104,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],0,[[],35],[[],35],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[113,27,[52,[90]]],[[6,[28,5]]]],[[113,90],[[6,[28,5]]]],[[113,27],[[6,[28,5]]]],[[113,[51,[90]],90],[[6,[157,5]]]],[[113,92],[[6,[28,5]]]],[[113,27],[[6,[158,5]]]],0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,104,[]],[-1,104,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[15,16,17],113],[[15,16,[51,[88]]],113]],"c":[],"p":[[3,"GlobalEnv",1074],[3,"FuncDef",1075],[3,"Defn",1076],[4,"Option",1077],[3,"ErrorGuaranteed",1078],[4,"Result",1079],[3,"OwnerId",1080],[3,"EnumDef",1075],[3,"ResolverOutput",769],[15,"tuple"],[3,"FnSig",1075],[3,"Generics",1075],[3,"Qualifier",1075],[3,"Qualifier",1076],[3,"FluxSession",1081],[6,"SortDecls",1076],[3,"Generics",1082],[3,"RefinedBy",1075],[3,"RefinedBy",1076],[3,"SortDecl",1075],[3,"SortDecl",1076],[3,"StructDef",1075],[3,"TyAlias",1075],[3,"FuncDecl",1076],[3,"RustItemCtxt",15],[3,"LiftCtxt",1083],[3,"Ident",1084],[4,"Sort",1076],[3,"Param",15],[3,"Env",223],[4,"RefineArg",1076],[4,"Param",348],[8,"FnOnce",1085],[8,"Iterator",1086],[15,"usize"],[4,"Async",1075],[4,"FnRetTy",1075],[3,"Ty",1076],[4,"BinOp",1075],[4,"BinOp",1087],[3,"BaseTy",1075],[3,"BaseTy",1076],[4,"Constraint",1075],[4,"Constraint",1076],[3,"EnumDef",1076],[3,"VariantDef",1075],[3,"Variant",1088],[3,"VariantDef",1076],[3,"Expr",1075],[3,"Expr",1076],[15,"slice"],[3,"Vec",1089],[3,"GenericPredicates",1076],[3,"FnSig",1076],[4,"Arg",1075],[4,"Res",1076],[4,"GenericArg",1075],[4,"GenericArg",1076],[3,"TypeBinding",1076],[6,"GenericBounds",1075],[6,"GenericBounds",1076],[3,"Generics",1076],[3,"Indices",1075],[3,"Span",1090],[3,"Lit",1091],[4,"Lit",1076],[3,"OpaqueTy",1076],[3,"Path",1075],[3,"Path",1076],[3,"WhereBoundPredicate",1075],[3,"WhereBoundPredicate",1076],[4,"RefineArg",1075],[3,"StructDef",1076],[3,"TraitRef",1075],[3,"PolyTraitRef",1076],[3,"Ty",1075],[3,"TyAlias",1076],[4,"UnOp",1075],[4,"UnOp",1087],[3,"VariantRet",1075],[3,"VariantRet",1076],[8,"IntoDiagnostic",1092],[15,"str"],[3,"RequestFilterDataProvider",1093],[3,"Formatter",1094],[6,"Result",1094],[3,"QueryInfo",1095],[3,"Symbol",1084],[6,"FxHashSet",1096],[4,"BaseSort",1075],[4,"TypePos",348],[4,"Sort",1075],[3,"FluxItemCtxt",15],[3,"LocalDefId",1097],[4,"Lifetime",1076],[3,"UnordMap",1098],[3,"FhirId",1076],[4,"FuncRes",15],[3,"Ident",1076],[4,"QPathRes",15],[8,"IntoIterator",1099],[3,"QPathExpr",1075],[3,"TyCtxt",1100],[3,"TypeId",1101],[3,"Arena",1102],[3,"Arena",1103],[8,"Any",1101],[4,"ScopeId",223],[3,"Scope",223],[15,"bool"],[8,"FnMut",1085],[8,"Debug",1094],[3,"SortResolver",1014],[8,"Hasher",1104],[3,"RefineParam",1076],[8,"DesugarCtxt",15],[3,"CheckParamUses",348],[4,"BindKind",1075],[3,"UnresolvedVar",448],[3,"Handler",1105],[3,"DiagnosticBuilder",1092],[8,"EmissionGuarantee",1092],[3,"DuplicateParam",448],[3,"UnresolvedSort",448],[3,"IntTooLarge",448],[3,"UnexpectedLiteral",448],[3,"InvalidDotVar",448],[3,"SortArityMismatch",448],[3,"RefineArgCountMismatch",448],[3,"InvalidUnrefinedParam",448],[3,"InvalidNumericSuffix",448],[3,"RefinedUnrefinableType",448],[3,"UnresolvedGenericParam",448],[3,"IllegalBinder",448],[3,"NameResTable",769],[3,"FnSig",1088],[4,"GenericArg",1088],[3,"GenericArgs",1088],[4,"GenericBound",1088],[3,"Generics",1088],[3,"Path",1088],[4,"Term",1088],[3,"Ty",1088],[3,"TypeBinding",1088],[4,"WherePredicate",1088],[3,"ResKey",769],[4,"ResEntry",769],[3,"ImplItem",1088],[3,"Item",1088],[3,"TraitItem",1088],[8,"Into",1106],[3,"Resolver",769],[3,"ItemLikeResolver",769],[3,"NodeId",1075],[3,"UnsupportedSignature",964],[3,"UnresolvedPath",964],[3,"PolyFuncSort",1076],[4,"SortCtor",1076],[6,"Result",15],[6,"Env",15],[6,"Result",223],[6,"Result",348],[6,"Env",348],[6,"Result",769],[13,"Unsupported",962],[6,"Result",1014],[3,"Sorts",1014]],"b":[]},\ +"flux_desugar":{"doc":"Desugaring from types in flux_syntax::surface to types in …","t":"HAFFFFFFFFFAFAANIGNDENNNDNNEGDLLLLLLLLLLLLLMLLLLLLLMOLLLLLLLLLLLFLLLFLLLLLLLLLLLLLLLLLLFLFLLLLFLLLLLLLLALLLLLLLLLLLLLLLLLLLLLFAFLLLLLLLLLLLLLLLFFKLLMMLLLLLLLLLLLLLLLLMMMLMLLKLLMMMMLLFLLMMMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNDNNNNNNGDENNNLLLLLLLLLLLMLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMLLLMLMLLLLLLLLLLLLLLLLLMLLLNDNGNNNNNNNNENGNELLLLLLLLLLLMLLLLLMLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLMMLMMLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDDDRRRRRRRRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLMMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLNDDNNEDDDGNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMDDRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLNNGHDDLLLLLLLLLLLLLLLLLLLLMLLMLLLLMMLLLLLLMMMMLLLLLLLLLLLLLL","n":["DEFAULT_LOCALE_RESOURCE","desugar","desugar_defn","desugar_enum_def","desugar_fn_sig","desugar_generics_and_predicates","desugar_qualifier","desugar_refined_by","desugar_sort_decl","desugar_struct_def","desugar_type_alias","errors","func_def_to_func_decl","resolver","sort_resolver","Const","DesugarCtxt","Env","Err","FluxItemCtxt","FuncRes","Global","NumConst","Ok","Param","Param","Param","QPathRes","Result","RustItemCtxt","as_lift_cx","bind_into_refine_arg","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_param_uses","children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","curr","define_resolve_num_const","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","desugar_asyncness","desugar_bin_op","desugar_bty","desugar_bty_bind","desugar_constraint","desugar_defn","desugar_enum_def","desugar_enum_variant_def","desugar_expr","desugar_exprs","desugar_fn_ret_ty","desugar_fn_sig","desugar_fun_arg","desugar_generic_args","desugar_generic_bounds","desugar_generics","desugar_indices","desugar_lit","desugar_opaque_ty_for_async","desugar_opaque_ty_for_impl_trait","desugar_path","desugar_path_to_bty","desugar_predicate","desugar_predicates","desugar_qualifier","desugar_refine_arg","desugar_refined_by","desugar_struct_def","desugar_trait_ref","desugar_ty","desugar_type_alias","desugar_un_op","desugar_variant_ret","drop","drop","drop","drop","drop","emit_err","emit_err","env","filterable","filterable","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","func_def_to_func_decl","gather","gather_base_sort_vars","gather_params_bty","gather_params_fn_sig","gather_params_fn_sig_input","gather_params_fn_sig_output","gather_params_fun_arg","gather_params_generic_arg","gather_params_indices","gather_params_path","gather_params_predicates","gather_params_refine_arg","gather_params_struct","gather_params_ty","gather_params_type_alias","gather_params_variant","gather_params_variant_ret","gather_refined_by_sort_vars","gather_sort_vars","genv","genv","genv","genv","genv","init","init","init","init","init","insert_opaque_ty","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kind","local_id_gen","local_id_gen","mk_lft_hole","name","new","new","next_fhir_id","next_fhir_id","next_fhir_id","opaque_tys","owner","owner","parent","resolve_func","resolve_loc","resolve_num_const","resolve_params","resolve_qpath","resolver_output","root","scopes","sess","sort","sort_resolver","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_parse_int_lit","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","with_new_owner","Abs","Enum","Env","Err","Exists","FluxItem","FnInput","FnOutput","Ok","Result","Scope","ScopeId","Struct","TyAlias","Variant","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","as_any","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","curr","curr","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","enter","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","exit","extend","extend","filter_map","filterable","filterable","filterable","find_map","fmt","fmt","fmt","fmt_rec","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_params","get","get_mut","get_with_scope","hash","init","init","init","insert","insert","into","into","into","into_desugar_env","into_iter","into_params","into_query_param","into_query_param","into_query_param","into_root","iter","map","mark_as_used","new","new","parent","pop","push","root","root","scope","scopes","to_owned","to_predicate","to_predicate","to_predicate","to_refine_args","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","used","vzip","vzip","vzip","At","CheckParamUses","Colon","Env","Err","Explicit","Field","Generic","Input","Ok","Other","Output","Param","Pound","Result","SyntaxError","TypePos","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_use","children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","curr","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","env","error","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","into","into","into","into_query_param","into_query_param","into_query_param","is_binder_allowed","new","parent","root","run","scopes","sess","to_owned","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","visit_constraint","visit_expr","visit_fn_sig","visit_qpath_expr","visit_ty","vzip","vzip","vzip","DuplicateParam","IllegalBinder","IntTooLarge","InvalidDotVar","InvalidNumericSuffix","InvalidUnrefinedParam","RefineArgCountMismatch","RefinedUnrefinableType","SortArityMismatch","UnexpectedLiteral","UnresolvedGenericParam","UnresolvedSort","UnresolvedVar","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DuplicateParam","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_IllegalBinder","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_IntTooLarge","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidDotVar","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidNumericSuffix","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidUnrefinedParam","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RefineArgCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RefinedUnrefinableType","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_SortArityMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnexpectedLiteral","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedGenericParam","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedSort","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedVar","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","expected","expected","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","first_use","found","found","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_ident","from_qpath","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kind","name","new","new","new","new","new","new","new","new","new","sort","span","span","span","span","span","span","span","span","span","span","span","span","span","suffix","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","var","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Err","ItemLikeResolver","NameResTable","Ok","Res","ResEntry","ResKey","Resolver","ResolverOutput","Result","Unsupported","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_from_fn_sig","collect_from_generic_arg","collect_from_generic_args","collect_from_generic_bound","collect_from_generic_bounds","collect_from_generics","collect_from_opaque_impls","collect_from_path","collect_from_term","collect_from_ty","collect_from_type_binding","collect_from_where_predicate","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","errors","filterable","filterable","filterable","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_hir_path","from_ident","from_impl_item","from_item","from_path","from_trait_item","get","hash","impl_trait_res_map","init","init","init","init","init","init","insert","into","into","into","into","into","into","into_output","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","new","new","new","opaque","output","output","path_res_map","res","resolve_arg","resolve_asyncness","resolve_bounds","resolve_bty","resolve_constraint","resolve_enum_def","resolve_fn_ret_ty","resolve_fn_sig","resolve_generic_arg","resolve_opaque_impl","resolve_path","resolve_struct_def","resolve_trait_ref","resolve_ty","resolve_type_alias","resolve_variant","resolve_variant_ret","resolve_where_bound_predicate","s","sess","sess","sess","table","tcx","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unsupported","vzip","vzip","vzip","vzip","vzip","vzip","reason","span","UnresolvedPath","UnsupportedSignature","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnresolvedPath","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedSignature","borrow","borrow","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","init","init","into","into","into_diagnostic","into_diagnostic","into_query_param","into_query_param","new","new","note","path","span","span","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Err","Ok","Result","SORTS","SortResolver","Sorts","borrow","borrow","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","generic_params","init","init","int","into","into","into_query_param","into_query_param","map","real","resolve_app_sort","resolve_base_sort","resolve_base_sort_ident","resolve_func_sort","resolve_sort","resolve_sort_ctor","sess","set","sort_decls","sort_params","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","with_generics","with_sort_params"],"q":[[0,"flux_desugar"],[15,"flux_desugar::desugar"],[224,"flux_desugar::desugar::env"],[349,"flux_desugar::desugar::gather"],[449,"flux_desugar::errors"],[770,"flux_desugar::resolver"],[963,"flux_desugar::resolver::ResEntry"],[965,"flux_desugar::resolver::errors"],[1015,"flux_desugar::sort_resolver"],[1075,"flux_middle::global_env"],[1076,"flux_syntax::surface"],[1077,"flux_middle::fhir"],[1078,"core::option"],[1079,"rustc_span"],[1080,"core::result"],[1081,"rustc_hir::hir_id"],[1082,"flux_syntax::surface"],[1083,"flux_middle::fhir"],[1084,"flux_syntax::surface"],[1085,"rustc_span::symbol"],[1086,"flux_middle::fhir"],[1087,"core::iter::traits::iterator"],[1088,"flux_syntax::surface"],[1089,"flux_syntax::surface"],[1090,"flux_middle::fhir"],[1091,"flux_middle::fhir"],[1092,"rustc_ast::token"],[1093,"flux_middle::fhir"],[1094,"icu_provider_adapters::filter"],[1095,"core::fmt"],[1096,"core::fmt"],[1097,"rustc_span::symbol"],[1098,"flux_syntax::surface"],[1099,"flux_middle::fhir"],[1100,"flux_middle::fhir"],[1101,"flux_syntax::surface"],[1102,"core::any"],[1103,"rustc_middle::arena"],[1104,"rustc_hir"],[1105,"core::any"],[1106,"flux_middle::fhir"],[1107,"rustc_errors::diagnostic_builder"],[1108,"flux_syntax::surface"]],"d":["Raw content of Fluent resource for this crate, generated …","","","","","HACK(nilehmann) this is a bit of a hack. We use it to …","","","","","","","","","","","","","Contains the error value","","","","","Contains the success value","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Gathering is the process of building an Env for a surface …","","","","","","","","","","Synthetic parameters cannot be defined inside predicates …","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The scope introduced by lambda abstraction. It includes …","The scope introduced by the refined_by annotation in a …","The environment used for desugaring that tracks parameter …","Contains the error value","The scope introduced by an existential type. Either the …","The scope introduced by a flux item like a func definition …","The scope introduced by a function’s input parameters. …","The scope introduced by a function’s output parameters. …","Contains the success value","","","","The scope introduced by the refined_by annotation in a …","The scope introduced by type alias. It includes the early …","The scope introduced by variant. It includes parameters …","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","Enter a child scope.","","","","","","","","Exit the current scope back into the parent scope.","Extends the current scope with a list of parameters …","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","Inserts a parameter in the current scope, returning an …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Remove the current scope and return it. Then set the …","Push a scope with id as a child of the current scope and …","","","","","","","","","","","","","","","","","","","","","","","","","","A parameter declared with @n syntax.","","A parameter declared with x: T syntax.","Environment used during gathering.","Contains the error value","A parameter declared in an explicit scope.","A struct field which disallow any implicitly scoped params.","Type inside a generic argument which disallow implicitly …","Type in input position allowing @n params. Used for …","Contains the success value","Any other position which doesn’t allow implicitly scoped …","Type in output position allowing #n params.","Parameters used during gathering.","A parameter declared with #n syntax.","","A parameter that we know syntactically cannot be used …","A position within a type to track where binders are …","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","","","Contains the success value","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","Contains the success value","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,160,0,0,98,100,160,0,98,100,0,0,0,25,25,25,93,98,100,29,25,93,98,100,29,25,161,29,29,25,93,98,100,29,161,0,25,93,98,100,29,25,93,98,100,29,25,0,25,25,25,0,25,25,117,117,25,25,25,25,25,25,25,117,25,25,25,25,25,25,0,25,0,25,25,25,25,0,25,25,93,98,100,29,25,117,0,25,93,98,100,29,29,25,25,93,93,98,98,100,100,29,29,25,93,98,100,29,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,117,25,93,25,93,25,93,98,100,29,25,25,93,98,100,29,25,93,98,100,29,29,25,93,25,29,25,93,117,25,93,25,25,93,161,117,117,0,25,117,25,161,161,25,29,25,29,25,93,98,100,29,25,93,98,100,29,25,93,98,100,29,25,93,98,100,29,117,25,93,98,100,29,25,93,98,100,29,25,109,109,0,162,109,109,109,109,162,0,0,0,109,109,109,109,109,109,109,109,30,110,109,30,110,109,30,109,109,30,110,109,30,30,30,110,109,30,110,109,30,110,109,30,109,109,109,109,109,109,109,30,30,110,30,30,110,109,30,30,110,109,30,30,30,110,110,109,109,30,110,109,30,30,30,30,109,30,110,109,30,110,30,110,109,30,110,110,30,110,109,30,110,110,110,30,110,30,30,30,30,30,30,30,109,30,110,109,110,30,110,109,30,110,109,30,110,109,30,110,109,110,30,110,109,32,0,32,0,163,32,91,91,91,163,91,91,0,32,0,32,0,91,91,91,91,118,91,32,118,91,32,118,164,91,91,118,91,32,164,118,91,32,118,91,32,118,91,32,118,118,118,91,32,32,118,118,91,91,32,32,32,118,91,32,118,91,32,118,91,32,118,91,32,91,118,164,164,118,164,118,91,118,91,32,118,91,32,118,91,32,118,91,32,118,91,32,118,118,118,118,118,118,91,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,129,130,120,124,125,126,127,128,129,130,131,132,133,134,135,124,129,130,120,120,124,124,125,125,126,126,127,127,128,128,129,129,130,130,131,131,132,132,133,133,134,134,135,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,120,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,135,124,124,125,129,130,131,132,133,134,135,125,120,124,125,126,127,128,129,130,131,132,133,134,135,132,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,124,125,126,127,128,129,130,131,132,133,134,135,120,131,120,124,125,126,127,128,129,130,131,132,133,134,135,165,0,0,165,148,0,0,0,0,0,148,147,153,154,136,148,9,147,153,154,136,148,9,147,153,154,136,148,9,147,136,136,136,136,136,136,136,136,136,136,136,136,9,153,154,136,148,9,147,153,154,136,148,9,147,153,154,136,148,9,147,147,147,147,147,147,147,147,0,153,154,136,148,9,147,147,153,153,154,154,136,136,148,148,148,9,9,147,147,153,154,136,148,9,147,147,147,136,136,147,136,136,147,9,153,154,136,148,9,147,136,153,154,136,148,9,147,153,153,154,136,148,9,147,153,154,136,136,153,154,9,136,154,154,154,154,154,153,154,153,154,154,154,153,154,154,153,154,154,154,147,153,154,136,154,153,153,154,136,148,9,147,153,154,136,148,9,147,153,154,136,148,9,147,153,154,136,148,9,147,153,154,136,148,9,147,148,153,154,136,148,9,147,166,166,0,0,0,0,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,156,157,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,156,157,167,167,0,0,0,0,114,168,114,168,114,168,114,168,114,168,114,168,114,168,114,114,168,168,114,168,114,114,168,168,114,168,114,168,168,168,114,114,114,114,114,114,114,168,114,114,114,168,114,168,114,168,114,168,114,168,114,168,114,114],"f":[0,0,[[1,2],[[6,[[4,[3]],5]]]],[[1,7,8,9],[[6,[10,5]]]],[[1,7,[4,[11]],9],[[6,[10,5]]]],[[1,7,9,[4,[12]]],[[6,[10,5]]]],[[1,13],[[6,[14,5]]]],[[15,16,7,17,18],[[6,[19,5]]]],[20,21],[[1,7,22,9],[[6,[10,5]]]],[[1,7,[4,[23]],9],[[6,[10,5]]]],0,[[15,16,2],[[6,[24,5]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[25,26],[[25,27,[4,[28]],[30,[29]]],[[6,[[4,[31]],5]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[25,[30,[32]],-1],[[6,[10,5]]],33],0,[29,29],[[-1,-2],10,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],0,0,[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[[25,36,37,[30,[29]]],[[6,[38,5]]]],[39,40],[[25,41,[30,[29]]],[[6,[42,5]]]],[[25,[4,[27]],41,[30,[29]]],[[6,[38,5]]]],[[25,43,[30,[29]]],[[6,[44,5]]]],[[1,2],[[6,[[4,[3]],5]]]],[[25,8],[[6,[45,5]]]],[[25,[4,[46]],47],[[6,[48,5]]]],[[-1,[30,[29]],49],[[6,[50,5]]],[]],[[-1,[30,[29]],[51,[49]]],[[6,[[52,[50]],5]]],[]],[[25,37,[30,[29]]],[[6,[38,5]]]],[[25,11],[[6,[[10,[53,54]],5]]]],[[25,55,[30,[29]],[52,[44]]],[[6,[38,5]]]],[[25,56,[51,[57]],[30,[29]]],[[6,[[10,[[52,[58]],[52,[59]]]],5]]]],[[25,60,[30,[29]]],[[6,[61,5]]]],[[25,12],[[6,[62,5]]]],[[25,42,63,[30,[29]]],[[6,[31,5]]]],[[-1,64,65],[[6,[66,5]]],[]],[[25,37,[30,[29]]],[[6,[67,5]]]],[[25,60,[30,[29]]],[[6,[67,5]]]],[[25,68,[30,[29]]],[[6,[69,5]]]],[[25,68,[30,[29]]],[[6,[42,5]]]],[[25,70,[30,[29]]],[[6,[71,5]]]],[[25,[52,[70]],[30,[29]]],[[6,[53,5]]]],[[1,13],[[6,[14,5]]]],[[25,72,[4,[28]],[30,[29]]],[[6,[31,5]]]],[[15,16,7,17,18],[[6,[19,5]]]],[[25,22],[[6,[73,5]]]],[[25,74,[30,[29]]],[[6,[75,5]]]],[[25,[4,[27]],76,[30,[29]]],[[6,[38,5]]]],[[25,23],[[6,[77,5]]]],[78,79],[[25,80,[30,[29]]],[[6,[81,5]]]],[35,10],[35,10],[35,10],[35,10],[35,10],[[25,-1],5,82],[[-1,-2],5,[],82],0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[29,85],86],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[15,16,2],[[6,[24,5]]]],0,[[[89,[88]],90,[89,[88]]],10],[[25,41,91,[30,[32]]],[[6,[10,5]]]],[[25,11],[[6,[[30,[29]],5]]]],[[25,11,[30,[32]]],[[6,[10,5]]]],[[25,11,[30,[32]]],[[6,[10,5]]]],[[25,55,[30,[32]]],[[6,[10,5]]]],[[25,57,91,[30,[32]]],[[6,[10,5]]]],[[25,63,91,[30,[32]]],[[6,[10,5]]]],[[25,68,91,[30,[32]]],[[6,[10,5]]]],[[25,[51,[70]],[30,[32]]],[[6,[10,5]]]],[[25,72,91,[30,[32]]],[[6,[10,5]]]],[[25,22],[[6,[[30,[29]],5]]]],[[25,[4,[27]],76,91,[30,[32]]],[[6,[10,5]]]],[[25,23],[[6,[[30,[29]],5]]]],[[25,46],[[6,[[30,[29]],5]]]],[[25,80,[30,[32]]],[[6,[10,5]]]],[[17,18],[[52,[88]]]],[[[89,[88]],92,[89,[88]]],10],[-1,1,[]],[25,1],[93,1],0,0,[[],35],[[],35],[[],35],[[],35],[[],35],[[25,94,67],10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[25,95],0,[[1,7,9,[4,[[96,[94,67]]]]],25],[[1,88],93],[-1,97,[]],[25,97],[93,97],0,0,0,0,[[-1,[30,[29]],27],[[6,[98,5]]],[]],[[-1,[30,[29]],27],[[6,[99,5]]],[]],[[27,27],[[4,[100]]]],[[25,-1],[[6,[[52,[[10,[27,32]]]],5]]],101],[[-1,[30,[29]],102],[[6,[100,5]]],[]],0,0,0,[25,15],0,0,[-1,-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[[-1,64,83],[[6,[104,5]]],[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[25,7],25],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[106,-1],[[51,[-2]]],101,[]],[[107,-1],[[51,[-2]]],101,[]],[[-1,106],-2,[],[]],[[-1,107],-2,[],[]],[-1,108,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[109,109],[[-1,-2],10,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[[30,[-1]]],[[110,[-1]]],[]],0,[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],[[[30,[-1]],109],10,[]],[[109,109],111],[[-1,108],111,[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],[[[30,[-1]]],10,[]],[[[30,[-1]],15,-2],[[6,[10,5]]],[],101],[[[110,[-1]],15,-2],[[6,[10,5]]],[],101],[[[30,[-1]],-2],[[30,[-3]]],[],112,[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[[30,[-1]],-2],[[4,[-3]]],[],112,[]],[[[30,[-1]],85],86,113],[[[110,[-1]],85],86,113],[[109,85],86],[[[30,[-1]],109,83,111,85],86,113],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[1,114,109,-1],[[6,[[30,[29]],5]]],101],[[[30,[-1]],27],[[4,[-1]]],[]],[[[30,[-1]],27],[[4,[-1]]],[]],[[[30,[-1]],27],[[4,[[10,[109,-1]]]]],[]],[[109,-1],10,115],[[],35],[[],35],[[],35],[[[30,[-1]],15,27,-1],[[6,[10,5]]],[]],[[[110,[-1]],15,27,-1],[[6,[10,5]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[30,[32]]],[[30,[29]]]],[[[110,[-1]]],[[0,[34]]],[]],[[[110,[29]],-1],[[52,[116]]],117],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[30,[-1]]],[[110,[-1]]],[]],[[[110,[-1]]],[[0,[34]]],[]],0,[[[110,[-1]],27],10,[]],[109,[[30,[-1]]],[]],[[],[[110,[-1]]],[]],0,[[[30,[-1]]],[[110,[-1]]],[]],[[[30,[-1]],109],10,[]],[[[30,[-1]]],[[110,[-1]]],[]],0,[[[30,[-1]],109],[[110,[-1]]],[]],0,[-1,-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[[110,[29]],-1,64],[[52,[31]]],117],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[107,-1],[[51,[-2]]],101,[]],[[106,-1],[[51,[-2]]],101,[]],[[-1,107],-2,[],[]],[[-1,106],-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[118,27],10],0,[91,91],[[-1,-2],10,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],0,[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],0,0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[32,85],86],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[119,32],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[],35],[[],35],[[],35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[91,119],111],[[15,[30,[32]]],118],0,0,[[118,-1],[[6,[10,5]]],33],0,0,[-1,-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[[118,43],10],[[118,49],10],[[118,11],10],[[118,102],10],[[118,76],10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,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,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],0,0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],0,0,0,[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[27,120],[102,120],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[120,121],[[122,[-1]]],123],[[124,121],[[122,[-1]]],123],[[125,121],[[122,[-1]]],123],[[126,121],[[122,[-1]]],123],[[127,121],[[122,[-1]]],123],[[128,121],[[122,[-1]]],123],[[129,121],[[122,[-1]]],123],[[130,121],[[122,[-1]]],123],[[131,121],[[122,[-1]]],123],[[132,121],[[122,[-1]]],123],[[133,121],[[122,[-1]]],123],[[134,121],[[122,[-1]]],123],[[135,121],[[122,[-1]]],123],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[27,27],124],[27,125],[[64,35,35],129],[[63,35],130],[27,131],[[64,88],132],[64,133],[27,134],[[64,119],135],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[-1,108,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[[136,137],[[6,[10,5]]]],[[136,138],[[6,[10,5]]]],[[136,139],[[6,[10,5]]]],[[136,140],[[6,[10,5]]]],[[136,[51,[140]]],[[6,[10,5]]]],[[136,141],[[6,[10,5]]]],[[136,103],[[6,[10,5]]]],[[136,142],[[6,[10,5]]]],[[136,143],[[6,[10,5]]]],[[136,144],[[6,[10,5]]]],[[136,145],[[6,[10,5]]]],[[136,146],[[6,[10,5]]]],[[],9],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[[147,147],111],[[-1,108],111,[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],[[-1,-2],111,[],[]],0,[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[147,85],86],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[56,148],[[[6,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[15,142],[[6,[147,5]]]],[27,147],[[103,15,149],[[6,[136,5]]]],[[103,15,150],[[6,[136,5]]]],[68,147],[[103,15,151],[[6,[136,5]]]],[[136,147],[[4,[148]]]],[[147,-1],10,115],0,[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[136,147,-1],10,[[152,[148]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[153,9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[103,15],153],[[103,15,7,9],[[6,[154,5]]]],[15,136],0,0,0,0,0,[[154,55],[[6,[10,5]]]],[[154,36],[[6,[10,5]]]],[[154,60],[[6,[10,5]]]],[[154,41],[[6,[10,5]]]],[[154,43],[[6,[10,5]]]],[[153,7,8],[[6,[10,5]]]],[[154,37],[[6,[10,5]]]],[[153,7,11],[[6,[10,5]]]],[[154,57],[[6,[10,5]]]],[[154,155,64],[[6,[10,5]]]],[[154,68],[[6,[10,5]]]],[[153,7,22],[[6,[10,5]]]],[[154,74],[[6,[10,5]]]],[[154,76],[[6,[10,5]]]],[[153,7,23],[[6,[10,5]]]],[[154,[4,[46]]],[[6,[10,5]]]],[[154,80],[[6,[10,5]]]],[[154,70],[[6,[10,5]]]],0,0,0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[-1,105,[]],[142,148],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],[[],35],[[],35],[-1,-2,[],[]],[-1,-2,[],[]],[[156,121],[[122,[-1]]],123],[[157,121],[[122,[-1]]],123],[-1,-2,[],[]],[-1,-2,[],[]],[[64,83],156],[68,157],0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,105,[]],[-1,105,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,34,33,[]],[[-1,-2],-3,34,33,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,-1,[]],[35,10],[35,10],[[-1,83],[[84,[-2]]],[],[]],[[-1,83],[[84,[-2]]],[],[]],[-1,-1,[]],[[[6,[-1]]],-1,[]],[[[6,[-1]]],-1,[]],[-1,-1,[]],[[-1,[51,[87]],5],-2,[],[]],[[-1,[51,[87]],5],-2,[],[]],0,[[],35],[[],35],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[114,27,[52,[90]]],[[6,[28,5]]]],[[114,90],[[6,[28,5]]]],[[114,27],[[6,[28,5]]]],[[114,[51,[90]],90],[[6,[158,5]]]],[[114,92],[[6,[28,5]]]],[[114,27],[[6,[159,5]]]],0,0,0,0,[[-1,103],-2,[],[]],[[-1,103],-2,[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,[[6,[-2]]],[],[]],[-1,105,[]],[-1,105,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[15,16,17],114],[[15,16,[51,[88]]],114]],"c":[],"p":[[3,"GlobalEnv",1075],[3,"FuncDef",1076],[3,"Defn",1077],[4,"Option",1078],[3,"ErrorGuaranteed",1079],[4,"Result",1080],[3,"OwnerId",1081],[3,"EnumDef",1076],[3,"ResolverOutput",770],[15,"tuple"],[3,"FnSig",1076],[3,"Generics",1076],[3,"Qualifier",1076],[3,"Qualifier",1077],[3,"FluxSession",1082],[6,"SortDecls",1077],[3,"Generics",1083],[3,"RefinedBy",1076],[3,"RefinedBy",1077],[3,"SortDecl",1076],[3,"SortDecl",1077],[3,"StructDef",1076],[3,"TyAlias",1076],[3,"FuncDecl",1077],[3,"RustItemCtxt",15],[3,"LiftCtxt",1084],[3,"Ident",1085],[4,"Sort",1077],[3,"Param",15],[3,"Env",224],[4,"RefineArg",1077],[4,"Param",349],[8,"FnOnce",1086],[8,"Iterator",1087],[15,"usize"],[4,"Async",1076],[4,"FnRetTy",1076],[3,"Ty",1077],[4,"BinOp",1076],[4,"BinOp",1088],[3,"BaseTy",1076],[3,"BaseTy",1077],[4,"Constraint",1076],[4,"Constraint",1077],[3,"EnumDef",1077],[3,"VariantDef",1076],[3,"Variant",1089],[3,"VariantDef",1077],[3,"Expr",1076],[3,"Expr",1077],[15,"slice"],[3,"Vec",1090],[3,"GenericPredicates",1077],[3,"FnSig",1077],[4,"Arg",1076],[4,"Res",1077],[4,"GenericArg",1076],[4,"GenericArg",1077],[3,"TypeBinding",1077],[6,"GenericBounds",1076],[6,"GenericBounds",1077],[3,"Generics",1077],[3,"Indices",1076],[3,"Span",1091],[3,"Lit",1092],[4,"Lit",1077],[3,"OpaqueTy",1077],[3,"Path",1076],[3,"Path",1077],[3,"WhereBoundPredicate",1076],[3,"WhereBoundPredicate",1077],[4,"RefineArg",1076],[3,"StructDef",1077],[3,"TraitRef",1076],[3,"PolyTraitRef",1077],[3,"Ty",1076],[3,"TyAlias",1077],[4,"UnOp",1076],[4,"UnOp",1088],[3,"VariantRet",1076],[3,"VariantRet",1077],[8,"IntoDiagnostic",1093],[15,"str"],[3,"RequestFilterDataProvider",1094],[3,"Formatter",1095],[6,"Result",1095],[3,"QueryInfo",1096],[3,"Symbol",1085],[6,"FxHashSet",1097],[4,"BaseSort",1076],[4,"TypePos",349],[4,"Sort",1076],[3,"FluxItemCtxt",15],[3,"LocalDefId",1098],[4,"Lifetime",1077],[3,"UnordMap",1099],[3,"FhirId",1077],[4,"FuncRes",15],[3,"Ident",1077],[4,"QPathRes",15],[8,"IntoIterator",1100],[3,"QPathExpr",1076],[3,"TyCtxt",1101],[15,"i128"],[3,"TypeId",1102],[3,"Arena",1103],[3,"Arena",1104],[8,"Any",1102],[4,"ScopeId",224],[3,"Scope",224],[15,"bool"],[8,"FnMut",1086],[8,"Debug",1095],[3,"SortResolver",1015],[8,"Hasher",1105],[3,"RefineParam",1077],[8,"DesugarCtxt",15],[3,"CheckParamUses",349],[4,"BindKind",1076],[3,"UnresolvedVar",449],[3,"Handler",1106],[3,"DiagnosticBuilder",1093],[8,"EmissionGuarantee",1093],[3,"DuplicateParam",449],[3,"UnresolvedSort",449],[3,"IntTooLarge",449],[3,"UnexpectedLiteral",449],[3,"InvalidDotVar",449],[3,"SortArityMismatch",449],[3,"RefineArgCountMismatch",449],[3,"InvalidUnrefinedParam",449],[3,"InvalidNumericSuffix",449],[3,"RefinedUnrefinableType",449],[3,"UnresolvedGenericParam",449],[3,"IllegalBinder",449],[3,"NameResTable",770],[3,"FnSig",1089],[4,"GenericArg",1089],[3,"GenericArgs",1089],[4,"GenericBound",1089],[3,"Generics",1089],[3,"Path",1089],[4,"Term",1089],[3,"Ty",1089],[3,"TypeBinding",1089],[4,"WherePredicate",1089],[3,"ResKey",770],[4,"ResEntry",770],[3,"ImplItem",1089],[3,"Item",1089],[3,"TraitItem",1089],[8,"Into",1107],[3,"Resolver",770],[3,"ItemLikeResolver",770],[3,"NodeId",1076],[3,"UnsupportedSignature",965],[3,"UnresolvedPath",965],[3,"PolyFuncSort",1077],[4,"SortCtor",1077],[6,"Result",15],[6,"Env",15],[6,"Result",224],[6,"Result",349],[6,"Env",349],[6,"Result",770],[13,"Unsupported",963],[6,"Result",1015],[3,"Sorts",1015]],"b":[]},\ "flux_driver":{"doc":"","t":"HHAADDLLLLLMFLMLLLFLLLLLFFFLLLLLLLLLLMMMLLLLLLLLFLFFFFLLLLLLLLLLLMLLDDNNNNNDDEDNDNNEGNNNNNNDDNNNMLLOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLMAFLLMLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLMLLLLMMOOOLLLMMMMMMMMLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLOLMLLLLLLLLLLMLLLLLLLLLLLDDDDDDDDDRRRRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["DEFAULT_LOCALE_RESOURCE","DEFAULT_LOCALE_RESOURCES","callbacks","collector","CrateChecker","FluxCallbacks","after_analysis","borrow","borrow","borrow_mut","borrow_mut","cache","check_crate","check_def","checker_config","collect_and_apply","collect_and_apply","config","def_id_symbol","default","deref","deref","deref_mut","deref_mut","desugar_assoc_item","desugar_fn_sig","desugar_item","drop","drop","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","full_compilation","genv","ignores","init","init","into","into","into_query_param","into_query_param","is_ignored","matches_check_def","mir_borrowck","new","resolve_crate","save_metadata","stage1_desugar","stage2_desugar","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","verify","verify","vzip","vzip","CFGSetting","ConstSig","ConstSig","Crate","CrateConfig","ExternSpec","Field","FluxAttr","FluxAttrCFG","FluxAttrKind","FluxAttrs","FnSig","FnSpec","Generics","Ignore","IgnoreKey","Ignores","Invariant","Items","Module","Opaque","QualNames","RefinedBy","SpecCollector","Specs","Trusted","TypeAlias","Variant","_ty","allow_dups","as_any","attr_name","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","const_sig","consts","crate_config","crate_config","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dups","emit_err","enums","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","error_guaranteed","errors","eval_const","extend_items","extern_spec","extern_specs","extract_extern_def_id_from_extern_spec_fn","extract_extern_def_id_from_extern_spec_struct","field","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fn_sig","fn_sig","fn_sigs","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","func_defs","generics","hash","ignore","ignores","impls","init","init","init","init","init","init","init","init","init","init","inner","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","invariants","items","kind","map","map","name","new","new","opaque","parse","parse_cfg","parse_cfg_item","parse_const_spec","parse_crate_spec","parse_enum_def","parse_field_spec","parse_flux_attr","parse_flux_attrs","parse_fn_spec","parse_impl_spec","parse_mod_spec","parse_sess","parse_struct_def","parse_tyalias_spec","parse_variant","qual_names","qual_names","qualifs","read_attr","read_attrs","read_flag","refined_by","refined_bys","report_dups","sess","setting","sort_decls","span","span","specs","structs","tcx","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","trusted","trusted","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_crate_cfg","try_read_setting","ty_alias","ty_aliases","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","val","variant","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","AttrOnOpaque","CFGError","DuplicatedAttr","InvalidAttr","InvalidConstant","MalformedExternSpec","MissingFnSigForExternSpec","MissingVariant","SyntaxErr","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_AttrOnOpaque","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_CFGError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DuplicatedAttr","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidAttr","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidConstant","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_MalformedExternSpec","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_MissingFnSigForExternSpec","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_MissingVariant","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_SyntaxErr","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","field_span","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","message","msg","name","new","new","span","span","span","span","span","span","span","span","span","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"flux_driver"],[4,"flux_driver::callbacks"],[68,"flux_driver::collector"],[381,"flux_driver::collector::errors"],[595,"rustc_interface::interface"],[596,"rustc_interface::queries"],[597,"rustc_driver_impl"],[598,"rustc_middle::ty::context"],[599,"flux_errors"],[600,"rustc_span"],[601,"core::result"],[602,"rustc_span::def_id"],[603,"core::iter::traits::iterator"],[604,"core::ops::function"],[605,"rustc_interface::interface"],[606,"flux_middle::global_env"],[607,"rustc_hir::hir_id"],[608,"rustc_hir::hir"],[609,"flux_desugar::resolver"],[610,"rustc_hir::hir"],[611,"rustc_query_system::query::job"],[612,"rustc_middle::query::queries::mir_borrowck"],[613,"rustc_data_structures::unord"],[614,"flux_config"],[615,"core::option"],[616,"core::any"],[617,"core::any"],[618,"rustc_errors::diagnostic_builder"],[619,"rustc_middle::ty::consts::int"],[620,"core::iter::traits::collect"],[621,"rustc_span::def_id"],[622,"core::fmt"],[623,"flux_syntax::surface"],[624,"rustc_ast::ast"],[625,"rustc_ast::ast"],[626,"rustc_errors"],[627,"rustc_errors::diagnostic_builder"]],"d":["Raw content of Fluent resource for this crate, generated …","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","is_ignored transitively follows the def_id’s …","","","","","","","","","","","","","","","","","","","","","","","","","Ignore the entire crate","","","","","","","","","","","","","Set of module (LocalDefId) that should be ignored by flux","","","(Transitively) ignore the module named LocalDefId","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,1,10,1,10,1,10,0,10,10,10,1,1,0,1,10,1,10,1,0,0,0,10,1,10,1,10,10,1,1,10,1,1,10,10,10,1,10,1,10,1,10,10,0,10,0,0,0,0,10,1,10,1,10,1,10,1,10,1,1,1,10,1,0,0,49,29,49,49,49,0,0,0,0,49,0,49,49,0,0,49,49,29,49,49,49,0,0,49,49,49,48,34,29,0,38,18,29,45,48,36,34,49,50,51,38,18,29,45,48,36,34,49,50,51,38,38,18,29,45,48,36,34,49,50,51,36,18,36,18,38,18,29,45,48,36,34,49,50,51,38,18,29,45,48,36,34,49,50,51,38,18,29,45,48,36,34,49,50,51,36,38,18,29,29,29,29,29,29,29,38,0,0,18,36,18,38,38,36,38,18,29,45,48,36,34,49,50,51,45,48,36,34,49,50,51,36,45,18,38,38,18,18,29,29,45,45,48,48,36,36,34,34,49,49,50,50,51,51,38,18,29,45,48,36,34,49,50,51,18,36,29,36,18,18,38,18,29,45,48,36,34,49,50,51,83,38,18,29,45,48,36,34,49,50,51,38,18,29,45,48,36,34,49,50,51,36,36,34,36,51,49,18,36,36,38,51,51,38,38,38,38,38,38,38,38,38,38,38,38,38,36,45,18,0,0,0,36,18,38,38,50,18,34,50,38,18,38,38,18,29,45,48,36,34,49,50,51,38,18,29,45,48,36,34,49,50,51,36,45,38,18,29,45,48,36,34,49,50,51,38,18,29,45,48,36,34,49,50,51,51,0,36,18,38,18,29,45,48,36,34,49,50,51,48,36,38,18,29,45,48,36,34,49,50,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,80,72,76,77,59,71,78,79,80,81,72,72,76,76,77,77,59,59,71,71,71,78,78,79,79,80,80,81,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,59,71,72,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81,72,76,77,59,71,78,79,80,81],"f":[0,0,0,0,0,0,[[1,2,3],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[5,6],[[9,[7,8]]]],[[10,11],[[9,[7,8]]]],0,[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[1,14],7],[[5,11],15],[[],1],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[[17,18,19,20,21],[[9,[7,8]]]],[[17,18,19,21],[[9,[7,8]]]],[[17,18,22,21],[[9,[7,8]]]],[16,7],[16,7],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],0,0,0,[[],16],[[],16],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[10,11],27],[[10,11],27],[[5,11],28],[[17,[30,[29]],[32,[31]]],10],[[5,6,18],[[9,[21,8]]]],[17,7],[[17,18],[[9,[7,8]]]],[[17,18,21],[[9,[7,8]]]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,33,[]],[-1,33,[]],[[1,2,3],7],0,[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[34,27],[-1,35,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[5,6],[[9,[18,8]]]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[36,[[32,[37]]]],0,[36,[[32,[31]]]],0,[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[36,[[0,[12]]]],[[38,-1],8,39],0,[[29,29],27],[[-1,35],27,[]],[[-1,-2],27,[],[]],[[-1,-2],27,[],[]],[[-1,-2],27,[],[]],[[-1,-2],27,[],[]],[[-1,-2],27,[],[]],0,0,[[5,11],[[32,[40]]]],[[18,-1],7,41],[36,27],0,[[38,11],[[9,[42,8]]]],[[38,11,43],[[9,[42,8]]]],[36,[[32,[44]]]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[45,46],47],[[48,46],47],[[36,46],47],[[34,46],47],[[49,46],47],[[50,46],47],[[51,46],47],[36,[[32,[52]]]],0,0,[-1,-1,[]],[[[9,[-1]]],-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],0,[36,[[32,[53]]]],[[29,-1],7,54],[36,27],0,0,[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[36,[[56,[55]]]],[36,[[0,[12]]]],0,0,0,[49,23],[[],18],[[[56,[34]]],36],[36,27],[[38,57,-1,-2],[[9,[49,8]]],13,13],[58,[[9,[51,59]]]],[[51,60],[[9,[7,59]]]],[[38,61,[26,[62]]],[[9,[7,8]]]],[[38,[26,[62]]],[[9,[7,8]]]],[[38,19,[26,[62]],63],[[9,[7,8]]]],[[38,64,27],[[9,[[32,[44]],8]]]],[[38,58],[[9,[34,8]]]],[[38,[26,[62]]],[[9,[36,8]]]],[[38,19,[26,[62]]],[[9,[7,8]]]],[[38,19,[26,[62]]],[[9,[7,8]]]],[[38,11,[26,[62]]],[[9,[7,8]]]],0,[[38,19,[26,[62]],43],[[9,[7,8]]]],[[38,19,[26,[62]]],[[9,[7,8]]]],[[38,65,27],[[9,[[32,[66]],8]]]],[36,[[32,[67]]]],0,0,0,0,0,[36,[[32,[68]]]],[18,[[0,[12]]]],[[38,36],[[9,[7,8]]]],0,0,0,0,0,0,0,0,[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[36,27],0,[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[51,[[9,[31,59]]]],0,[36,[[32,[69]]]],0,[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],0,[36,[[32,[66]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[[-1,-2],-3,12,13,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,-1,[]],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],0,[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[[-1,23],[[24,[-2]]],[],[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[70,71],[-1,-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[[9,[-1]]],-1,[]],[[[9,[-1]]],-1,[]],[-1,-1,[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[-1,[26,[25]],8],-2,[],[]],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[72,73],[[74,[-1]]],75],[[76,73],[[74,[-1]]],75],[[77,73],[[74,[-1]]],75],[[59,73],[[74,[-1]]],75],[[71,73],[[74,[-1]]],75],[[78,73],[[74,[-1]]],75],[[79,73],[[74,[-1]]],75],[[80,73],[[74,[-1]]],75],[[81,73],[[74,[-1]]],75],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[82,64],80],[82,81],0,0,0,0,0,0,0,0,0,[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[[-1,5],-2,[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,33,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]]],"c":[],"p":[[3,"FluxCallbacks",4],[3,"Compiler",595],[3,"Queries",596],[4,"Compilation",597],[3,"TyCtxt",598],[3,"FluxSession",599],[15,"tuple"],[3,"ErrorGuaranteed",600],[4,"Result",601],[3,"CrateChecker",4],[3,"LocalDefId",602],[8,"Iterator",603],[8,"FnOnce",604],[3,"Config",595],[3,"Symbol",605],[15,"usize"],[3,"GlobalEnv",606],[3,"Specs",68],[3,"OwnerId",607],[4,"AssocItemKind",608],[3,"ResolverOutput",609],[3,"ItemId",608],[15,"str"],[3,"RequestFilterDataProvider",610],[3,"QueryInfo",611],[15,"slice"],[15,"bool"],[6,"ProvidedValue",612],[4,"IgnoreKey",68],[3,"UnordSet",613],[3,"CrateConfig",614],[4,"Option",615],[3,"TypeId",616],[3,"FluxAttr",68],[8,"Any",616],[3,"FluxAttrs",68],[3,"ConstSig",617],[3,"SpecCollector",68],[8,"IntoDiagnostic",618],[3,"ScalarInt",619],[8,"IntoIterator",620],[3,"DefId",602],[4,"VariantData",608],[3,"Ty",617],[3,"FnSpec",68],[3,"Formatter",621],[6,"Result",621],[3,"ConstSig",68],[4,"FluxAttrKind",68],[3,"CFGSetting",68],[3,"FluxAttrCFG",68],[3,"FnSig",617],[3,"Generics",617],[8,"Hasher",622],[3,"Expr",617],[3,"Vec",623],[3,"DelimArgs",624],[3,"AttrItem",624],[3,"CFGError",381],[4,"NestedMetaItem",624],[3,"Item",608],[3,"Attribute",624],[3,"EnumDef",608],[3,"FieldDef",608],[3,"Variant",608],[3,"VariantDef",617],[3,"QualNames",617],[3,"RefinedBy",617],[3,"TyAlias",617],[3,"ParseError",625],[3,"SyntaxErr",381],[3,"DuplicatedAttr",381],[3,"Handler",626],[3,"DiagnosticBuilder",618],[8,"EmissionGuarantee",618],[3,"InvalidAttr",381],[3,"InvalidConstant",381],[3,"MalformedExternSpec",381],[3,"MissingFnSigForExternSpec",381],[3,"AttrOnOpaque",381],[3,"MissingVariant",381],[3,"Span",627],[6,"Ignores",68]],"b":[]},\ "flux_errors":{"doc":"","t":"DDILLLLLLLLLLLLLLLLLFLLKLLFLLLLLLLLLLLLLLMLLLLLLLLL","n":["ErrorGuaranteed","FluxSession","ResultExt","abort_if_errors","allocate_from_iter","allocate_on","as_any","borrow","borrow","borrow_mut","borrow_mut","clone_into","collect_and_apply","collect_and_apply","compare","deref","deref","deref_mut","deref_mut","diagnostic","diagnostic_id","drop","drop","emit","emit_err","emit_fatal","emitter","equals","equivalent","equivalent","equivalent","filterable","filterable","finish_diagnostics","from","from","init","init","into","into","new","parse_sess","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip"],"q":[[0,"flux_errors"],[51,"rustc_hir"],[52,"core::iter::traits::collect"],[53,"core::any"],[54,"core::iter::traits::iterator"],[55,"core::ops::function"],[56,"core::cmp"],[57,"rustc_errors"],[58,"rustc_errors::diagnostic"],[59,"core::result"],[60,"rustc_errors::diagnostic_builder"],[61,"rustc_session::options"],[62,"rustc_span::source_map"],[63,"alloc::sync"],[64,"rustc_error_messages"],[65,"rustc_errors::emitter"],[66,"alloc::boxed"],[67,"icu_provider_adapters::filter"],[68,"core::any"]],"d":["Useful type to use with Result<> indicate that an error …","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","",""],"i":[0,0,0,1,13,13,13,1,13,1,13,13,1,13,13,1,13,1,13,1,0,1,13,27,1,1,0,13,13,13,13,1,13,1,1,13,1,13,1,13,1,1,13,1,13,1,13,1,13,1,13],"f":[0,0,0,[1,2],[[3,-1],[[4,[-2]]],5,[]],[[-1,3],-2,[],[]],[-1,6,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],9,[],[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[1,11],[[],12],[10,2],[10,2],[[-1,1],[[14,[-2,13]]],[],[]],[[1,-1],13,15],[[1,-1],16,[[15,[16]]]],[[17,[19,[18]],20],[[22,[21]]]],[[-1,6],23,[]],[[-1,-2],23,[],[]],[[-1,-2],23,[],[]],[[-1,-2],23,[],[]],[[-1,24],[[25,[-2]]],[],[]],[[-1,24],[[25,[-2]]],[],[]],[1,2],[-1,-1,[]],[-1,-1,[]],[[],10],[[],10],[-1,-2,[],[]],[-1,-2,[],[]],[[17,[19,[18]],20],1],0,[-1,-2,[],[]],[-1,[[14,[-2]]],[],[]],[-1,[[14,[-2]]],[],[]],[-1,[[14,[-2]]],[],[]],[-1,[[14,[-2]]],[],[]],[-1,26,[]],[-1,26,[]],[-1,-2,[],[]],[-1,-2,[],[]]],"c":[],"p":[[3,"FluxSession",0],[15,"tuple"],[3,"Arena",51],[15,"slice"],[8,"IntoIterator",52],[8,"Any",53],[8,"Iterator",54],[8,"FnOnce",55],[4,"Ordering",56],[15,"usize"],[3,"Handler",57],[4,"DiagnosticId",58],[3,"ErrorGuaranteed",0],[4,"Result",59],[8,"IntoDiagnostic",60],[15,"never"],[3,"Options",61],[3,"SourceMap",62],[3,"Arc",63],[6,"LazyFallbackBundle",64],[8,"Emitter",65],[3,"Box",66],[15,"bool"],[15,"str"],[3,"RequestFilterDataProvider",67],[3,"TypeId",53],[8,"ResultExt",0]],"b":[]},\ "flux_fhir_analysis":{"doc":"","t":"HFAFFFFAFAFFFFFFFFFFFAGDLLFFFFLLLLLALLLLLMLLMLMMLLLLLLMLLLLLLLLLLDDDDDRRRRRMLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLMMMMMMMMMMMLLLLLMLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLMLLLMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNEDNDDENNLFFLLLLLLLLLLLLLLLLLMLLLLLLLLFLLLLLLFLFFLLLLFFLLLFLLFFFLFFFFLLLFLLFFLLLLLLLLLLLLLLLLLLLMLAFLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLMMLLMMLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMDRLLLLLLLLLLLLLLLMLLLLLLDRLLLLLLLLLLLLLLMLMLLLLLLDDLLLLLLFFLFFLLLLLLFLLLLLLLFLFFLLLLLLLLLLLLLLALLLLLLLLMLLLLLLLLLLLLALLLLLLLLLLLLMDDDDDDDDDDDDDDDDDDRRRRRRRRRRRRRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLMLLLLMLLLLLLLLLLLLLLLLLLLLMLLLLLLLLFLLLLLLLMLM","n":["DEFAULT_LOCALE_RESOURCE","adt_def","annot_check","check_crate_wf","check_wf","check_wf_flux_item","check_wf_rust_item","conv","defns","errors","fn_sig","func_decls","generics_of","invariants_of","item_bounds","normalize","predicates_of","provide","qualifiers","type_of","variants_of","wf","LocsMap","Zipper","borrow","borrow_mut","check_alias","check_enum_def","check_fn_sig","check_struct_def","collect_and_apply","deref","deref_mut","drop","emit_err","errors","filterable","from","from","from_cycle_error","init","inner","into","into_query_param","locs","new","self_ty","sess","to_predicate","to_result","try_from","try_into","type_id","vzip","wfckresults","zip_bty","zip_constraints","zip_enum_variant","zip_fn_sig","zip_generic_arg","zip_lifetime","zip_path","zip_qpath","zip_ty","zip_tys","ArrayLenMismatch","FieldCountMismatch","FunArgCountMismatch","GenericArgCountMismatch","InvalidRefinement","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_ArrayLenMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_FieldCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_FunArgCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_GenericArgCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidRefinement","args","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","def_descr","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","expected","expected_args","expected_fields","expected_len","expected_span","expected_span","expected_span","expected_span","expected_span","expected_ty","fields","filterable","filterable","filterable","filterable","filterable","found","from","from","from","from","from","from","from","from","from","from","from_btys","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_paths","from_qpaths","from_tys","from_variants","has_note","init","init","init","init","init","into","into","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","len","new","new","new","note","span","span","span","span","span","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","with_note","ConvCtxt","EarlyBound","Entry","Env","LateBoundList","Layer","LookupResult","LookupResultKind","Sort","Unit","add_coercions","adt_def_for_enum","adt_def_for_struct","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","collapse","collapse","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","conv_base_ty","conv_constr","conv_defn","conv_enum_def_variants","conv_enum_variant","conv_expr","conv_exprs","conv_fn_bound","conv_fn_output","conv_fn_sig","conv_func","conv_func_decl","conv_func_sort","conv_generic_args","conv_generic_args_into","conv_generic_bound","conv_generic_bounds","conv_generic_predicates","conv_generics","conv_indexed_path","conv_indexed_type","conv_invariant","conv_invariants","conv_invariants","conv_lifetime","conv_lit","conv_opaque_ty","conv_qualifier","conv_refine_arg","conv_refine_param","conv_sort","conv_sort_ctor","conv_sorts","conv_struct_def_variant","conv_trait_bound","conv_trait_bound_generic_param","conv_ty","conv_ty","conv_type_bindings","def_id_to_param_index","def_id_to_param_ty","depth","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","early_bound","empty","errors","expand_type_alias","fill_generic_args_defaults","filter_unit","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","genv","get","get_field","init","init","init","init","init","init","into","into","into","into","into","into","into_bound_vars","into_iter","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_record","kind","layers","list","lookup","map","name","new","new","new","new","node_sort","pop_layer","push_layer","resolve_param_sort","sort_args_for_adt","to_bound_vars","to_early_bound_vars","to_expr","to_owned","to_owned","to_path","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","top_layer","trait_defines_associated_item_named","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","wfckresults","conv","idx","infer_mode","sort","collapse","entry","idx","level","sort","AssocTypeNotFound","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_AssocTypeNotFound","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","filterable","from","from","from_cycle_error","init","into","into_diagnostic","into_query_param","new","span","to_predicate","to_result","try_from","try_into","type_id","vzip","DefinitionCycle","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DefinitionCycle","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","filterable","from","from","from_cycle_error","init","into","into_diagnostic","into_query_param","msg","new","span","to_predicate","to_result","try_from","try_into","type_id","vzip","Wf","XiCtxt","borrow","borrow","borrow_mut","borrow_mut","check_base_ty","check_constraint","check_defn","check_enum_def","check_fn_output","check_fn_quals","check_fn_sig","check_generic_arg","check_generic_args","check_generic_args_kinds","check_generic_bound","check_generic_predicate","check_generic_predicates","check_opaque_ty","check_opaque_ty","check_output_locs","check_param_uses_expr","check_param_uses_refine_arg","check_params_are_determined","check_path","check_pred","check_qualifier","check_refine_arg","check_struct_def","check_ty_alias","check_ty_is_base","check_type","check_type_bindings","check_variant","collect_and_apply","collect_and_apply","default","deref","deref","deref_mut","deref_mut","drop","drop","emit_err","errors","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","genv","init","init","insert","into","into","into_query_param","into_query_param","new","remove","rollback_to","snapshot","sort_of_bty","sortck","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","xi","ArgCountMismatch","CannotInferSort","DuplicatedEnsures","EarlyBoundArgCountMismatch","ExpectedFun","ExpectedNumeric","FieldNotFound","InvalidBaseInstance","InvalidParamPos","InvalidPrimitiveDotAccess","MissingEnsures","NoEquality","ParamCountMismatch","ParamNotDetermined","SortAnnotationNeeded","SortMismatch","UnexpectedFun","UnknownQualifier","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_ArgCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_CannotInferSort","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DuplicatedEnsures","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_EarlyBoundArgCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_ExpectedFun","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_ExpectedNumeric","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_FieldNotFound","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidBaseInstance","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidParamPos","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_InvalidPrimitiveDotAccess","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_MissingEnsures","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_NoEquality","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_ParamCountMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_ParamNotDetermined","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_SortAnnotationNeeded","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_SortMismatch","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnexpectedFun","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnknownQualifier","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","expected","expected","expected","expected","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fld","found","found","found","found","found","found","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_pred","loc","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","sort","sort","sort","sort","sort","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","sym","thing","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","InferCtxt","borrow","borrow_mut","check_abs","check_binary_op","check_expr","check_loc","check_record","check_refine_arg","collect_and_apply","deref","deref_mut","drop","emit_err","emit_field_not_found","emit_sort_mismatch","ensure_resolved_var","eq_vids","filterable","from","from","from_cycle_error","genv","has_equality","index","infer_mode","init","instantiate_func_sort","into","into_query_param","into_results","is_bool","is_coercible","is_coercible_to_func","is_coercible_to_numeric","is_eq_sort_vid","is_func","is_int","is_numeric","is_single_field_record","new","next_eq_sort_vid","next_sort_vid","params","push_layer","resolve_param","resolve_params_sorts","resolve_sort","synth_app","synth_binary_op","synth_expr","synth_func","synth_lit","synth_unary_op","to_predicate","to_result","try_equate","try_from","try_into","type_id","unification_table","vzip","wfckresults"],"q":[[0,"flux_fhir_analysis"],[22,"flux_fhir_analysis::annot_check"],[65,"flux_fhir_analysis::annot_check::errors"],[206,"flux_fhir_analysis::conv"],[421,"flux_fhir_analysis::conv::Entry"],[425,"flux_fhir_analysis::conv::LookupResultKind"],[430,"flux_fhir_analysis::conv::errors"],[454,"flux_fhir_analysis::errors"],[479,"flux_fhir_analysis::wf"],[560,"flux_fhir_analysis::wf::errors"],[1013,"flux_fhir_analysis::wf::sortck"],[1076,"flux_middle::global_env"],[1077,"rustc_span::def_id"],[1078,"flux_middle::rty"],[1079,"flux_middle::queries"],[1080,"rustc_span"],[1081,"core::result"],[1082,"flux_middle::fhir"],[1083,"flux_middle::fhir"],[1084,"rustc_span::symbol"],[1085,"flux_middle::rty::normalize"],[1086,"flux_middle::rty"],[1087,"flux_middle::rty"],[1088,"flux_middle::rty"],[1089,"flux_middle::rty::fold"],[1090,"flux_middle::rty"],[1091,"flux_errors"],[1092,"flux_middle::fhir"],[1093,"flux_middle::fhir"],[1094,"core::ops::function"],[1095,"rustc_errors::diagnostic_builder"],[1096,"icu_provider_adapters::filter"],[1097,"rustc_query_system::query::job"],[1098,"flux_middle::fhir"],[1099,"core::any"],[1100,"flux_middle::fhir"],[1101,"rustc_errors::diagnostic_builder"],[1102,"flux_middle::rty::expr"],[1103,"flux_middle::fhir"],[1104,"flux_middle::fhir"],[1105,"flux_middle::fhir"],[1106,"flux_middle::fhir"],[1107,"flux_middle::fhir"],[1108,"core::fmt"],[1109,"core::fmt"],[1110,"flux_middle::fhir"],[1111,"flux_middle::rty::expr"],[1112,"rustc_middle::ty::assoc"],[1113,"rustc_hash"],[1114,"alloc::string"]],"d":["Raw content of Fluent resource for this crate, generated …","","Check if an fhir annotation is a valid refinement of the …","","","","","Conversion from types in fhir to types in rty","","","","","","","","","","","","","","Checks type well-formedness","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","We track parameters of unit sort separately because we …","","","","","","","","","","","","","","","","","","","","","Whether to collapse the layer into a single variable of …","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether to skip variables bound to Unit in this layer.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The index of the entry in the layer skipping all …","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","Keeps track of all refinement parameters that are used as …","","","","","","","","","","","","","","","","","","","","","Checks that refinement parameters of function sort are …","Checks that refinement parameters of function sort are …","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","sort variables that can only be instantiated to sorts that …","","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","","","","Whether a value of sort1 can be automatically coerced to a …","","","","","","","","","","","","Push a layer of binders. We assume all names are fresh so …","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,39,39,39,39,39,0,39,39,39,39,39,160,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,0,0,0,0,0,0,0,0,0,0,60,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,61,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,61,60,56,62,55,60,61,62,56,55,56,55,60,61,62,56,61,55,55,60,60,61,61,62,62,56,56,55,55,60,61,62,56,55,55,55,56,55,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,62,60,61,62,55,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,55,60,61,62,56,55,0,117,0,0,117,0,0,0,69,69,65,0,0,65,71,68,69,116,117,65,71,68,69,116,117,68,69,68,69,68,68,65,71,68,69,116,117,65,65,0,65,65,65,65,65,65,0,65,0,0,65,65,65,65,0,0,65,65,65,0,65,65,0,0,0,65,0,0,0,0,65,65,65,0,65,65,0,0,71,65,71,68,69,116,117,65,71,68,69,116,117,65,71,68,69,116,117,71,68,0,0,65,68,65,71,68,69,116,117,68,69,116,117,65,65,71,71,68,68,69,69,116,116,117,117,65,71,68,69,116,117,65,68,116,65,71,68,69,116,117,65,71,68,69,116,117,68,68,65,71,68,69,116,117,116,116,71,68,71,68,116,65,71,68,69,65,71,71,65,0,68,71,116,68,69,116,65,71,68,69,116,117,65,71,68,69,116,117,71,65,65,71,68,69,116,117,65,71,68,69,116,117,65,71,68,69,116,117,65,71,68,69,116,117,65,161,161,161,161,162,162,163,162,163,0,0,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,0,0,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,0,0,130,134,130,134,130,130,0,0,130,0,0,130,130,130,130,130,130,0,130,130,130,130,130,130,130,0,130,0,0,130,130,130,130,130,134,134,130,134,130,134,130,134,130,0,130,134,130,130,134,134,130,134,130,130,134,134,130,134,130,134,130,134,134,134,130,0,130,134,130,134,130,134,130,134,130,134,130,134,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,146,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,147,136,137,138,142,145,146,136,136,137,137,138,138,139,139,140,140,141,141,142,142,143,143,144,144,145,145,146,146,147,147,148,148,149,149,150,150,151,151,152,152,153,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,143,139,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,143,144,147,148,150,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,151,137,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,149,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,0,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,0,131,131,131,131,131,131,131,131,131,131],"f":[0,[[1,2],[[4,[3]]]],0,[1,[[7,[5,6]]]],[[1,8],[[4,[[10,[9]]]]]],[[1,11],[[4,[[10,[9]]]]]],[[1,2],[[4,[[10,[9]]]]]],0,[1,[[4,[12]]]],0,[[1,2],[[4,[[14,[13]]]]]],[1,[[16,[11,15]]]],[[1,2],[[4,[17]]]],[[1,2],[[4,[[19,[18]]]]]],[[1,2],[[4,[[14,[[21,[20]]]]]]]],[[1,-1],[[4,[-1]]],22],[[1,2],[[4,[[14,[23]]]]]],[24,5],[1,[[4,[[19,[25]]]]]],[[1,2],[[4,[[14,[26]]]]]],[[1,2],[[4,[[28,[[14,[27]]]]]]]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[29,30,9,31],[[7,[5,6]]]],[[29,30,9,32],[[7,[5,6]]]],[[29,30,9,33,34],[[7,[5,6]]]],[[29,30,9,35],[[7,[5,6]]]],[[-1,-2],-3,36,37,[]],[38,-1,[]],[38,-1,[]],[38,5],[[39,-1],6,40],0,[[-1,41],[[42,[-2]]],[],[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[-1,[44,[43]],6],-2,[],[]],[[],38],0,[-1,-2,[],[]],[-1,-2,[],[]],0,[[30,9,[46,[45]]],39],0,0,[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,47,[]],[-1,-2,[],[]],0,[[39,48,48],[[7,[5,6]]]],[[39,[44,[49]]],[[7,[5,6]]]],[[39,50,50],[[7,[5,6]]]],[[39,34,34],[[7,[5,6]]]],[[39,51,51],[[7,[5,6]]]],[[39,52,52],5],[[39,53,53],[[7,[5,6]]]],[[39,54,54],[[7,[5,6]]]],[[39,45,45],[[7,[5,6]]]],[[39,[44,[45]],[44,[45]]],[[7,[5,6]]]],0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],0,[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,5],[38,5],[38,5],[38,5],[38,5],0,0,0,0,0,0,0,0,0,0,0,[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],0,[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[48,48],55],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[53,53],55],[[54,54],55],[[45,45],55],[[50,50],56],0,[[],38],[[],38],[[],38],[[],38],[[],38],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[55,57],[[58,[-1]]],59],[[60,57],[[58,[-1]]],59],[[61,57],[[58,[-1]]],59],[[62,57],[[58,[-1]]],59],[[56,57],[[58,[-1]]],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[34,34],60],[[53,53],61],[[63,63],62],0,0,0,0,0,0,[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[55,-1],55,64],0,0,0,0,0,0,0,0,0,0,[[65,66,67],66],[[1,[19,[18]],32],3],[[1,[19,[18]],35],3],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[68,68],[69,69],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[65,[44,[70]]],68],0,[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[65,71,48],[[4,[72]]]],[[65,71,49],[[4,[73]]]],[[1,74,9],75],[[1,32,9],[[4,[[19,[76]]]]]],[[1,77,50,9],[[4,[76]]]],[[65,71,78],66],[[65,71,[44,[78]]],[[21,[66]]]],[[65,71,72,79,80,[19,[20]]],[[4,[5]]]],[[65,71,81],[[4,[[83,[82]]]]]],[[1,2,34,9],[[4,[[14,[13]]]]]],[[65,71,84],66],[[1,85],15],[[1,86],87],[[65,71,77,[44,[51]]],[[4,[[19,[88]]]]]],[[65,71,[44,[51]],[19,[88]]],[[4,[5]]]],[[65,71,72,89,[19,[20]]],[[4,[5]]]],[[65,71,72,90],[[4,[[19,[20]]]]]],[[1,2,91,9],[[4,[[14,[23]]]]]],[[1,92,93,[44,[70]],[46,[2]]],[[4,[17]]]],[[65,71,53,94],[[4,[72]]]],[[65,71,48,94],[[4,[72]]]],[[65,71,78],18],[[1,[44,[70]],[44,[78]],9],[[19,[18]]]],[[65,71,[44,[78]]],[[19,[18]]]],[[65,71,52],95],[96,97],[[1,77,98,9],[[4,[[21,[20]]]]]],[[1,99,9],25],[[65,71,100],[[5,[66,[102,[101]]]]]],[[1,70],103],[[1,104],105],[106,107],[[1,-1],[[19,[105]]],108],[[1,35,9],[[4,[[28,[76]]]]]],[[65,71,72,77,[44,[51]],[44,[109]],[19,[20]]],[[4,[5]]]],[[65,109],[[4,[110]]]],[[1,45,9],[[4,[[83,[72]]]]]],[[65,71,45],[[4,[72]]]],[[65,71,72,77,[44,[111]],[19,[20]]],[[4,[5]]]],[[29,2],112],[[29,2],113],[71,38],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],0,[[],68],0,[[1,31,9],[[4,[[83,[72]]]]]],[[65,77,[19,[88]]],[[4,[5]]]],0,[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[68,114],115],[[69,114],115],[[116,114],115],[[117,114],115],[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],0,[[68,-1,112],[[46,[117]]],[[119,[118]]]],[[116,1,120],66],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[68,[[21,[110]]]],[68,[[0,[36]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[116,[[46,[77]]]],0,0,[[65,112,[44,[70]],101],68],[[71,121],116],0,0,[[1,9],65],[[[44,[70]]],71],[[65,112,[44,[70]],101,101],68],[[1,112,104,122],69],[[65,67],104],[71,68],[[71,68],5],[[65,70],104],[[1,-1],[[21,[104]]],[[123,[77]]]],[68,[[21,[110]]]],[71,[[21,[66]]]],[116,66],[-1,-2,[],[]],[-1,-2,[],[]],[116,124],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[71,68],[[65,77,125,120],[[46,[126]]]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,36,37,[]],[38,-1,[]],[38,-1,[]],[38,5],[[-1,41],[[42,[-2]]],[],[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[-1,[44,[43]],6],-2,[],[]],[[],38],[-1,-2,[],[]],[[127,57],[[58,[-1]]],59],[-1,-2,[],[]],[120,127],0,[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,47,[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,36,37,[]],[38,-1,[]],[38,-1,[]],[38,5],[[-1,41],[[42,[-2]]],[],[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[-1,[44,[43]],6],-2,[],[]],[[],38],[-1,-2,[],[]],[[128,57],[[58,[-1]]],59],[-1,-2,[],[]],0,[[129,[19,[11]]],128],0,[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,47,[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[130,131,48],[[7,[5,6]]]],[[130,131,49],[[7,[5,6]]]],[[1,74],[[7,[9,6]]]],[[1,32],[[7,[9,6]]]],[[130,131,81],[[7,[5,6]]]],[[30,[132,[11]],[19,[120]]],[[7,[5,6]]]],[[1,34,33],[[7,[9,6]]]],[[130,131,51],[[7,[5,6]]]],[[130,131,77,[44,[51]]],[[7,[5,6]]]],[[130,77,[44,[51]]],[[7,[5,6]]]],[[130,131,89],[[7,[5,6]]]],[[130,131,133],[[7,[5,6]]]],[[130,131,91],[[7,[5,6]]]],[[1,98,33],[[7,[9,6]]]],[[130,131,98],[[7,[5,6]]]],[[130,34],[[7,[5,6]]]],[[130,131,78,101],[[7,[5,6]]]],[[130,131,100],[[7,[5,6]]]],[[130,131,[44,[70]]],[[7,[5,6]]]],[[130,131,53],[[7,[5,6]]]],[[130,131,78],[[7,[5,6]]]],[[1,99],[[7,[9,6]]]],[[130,131,100,104],[[7,[5,6]]]],[[1,35],[[7,[9,6]]]],[[1,31],[[7,[9,6]]]],[[130,45],[[7,[5,6]]]],[[130,131,45],[[7,[5,6]]]],[[130,131,[44,[111]]],[[7,[5,6]]]],[[130,131,50],[[7,[5,6]]]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[],134],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,5],[38,5],[[130,-1],[[7,[-2,6]]],40,[]],0,[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],0,[[],38],[[],38],[[134,118],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1,130],[[134,118],101],[[134,135],5],[134,135],[[130,48],104],0,[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,47,[]],[-1,47,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,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,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[[-1,-2],-3,36,37,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,-1,[]],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],[38,5],0,0,0,0,[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],[[-1,41],[[42,[-2]]],[],[]],0,0,0,0,0,0,0,[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[-1,-1,[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[-1,[44,[43]],6],-2,[],[]],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[136,57],[[58,[-1]]],59],[[137,57],[[58,[-1]]],59],[[138,57],[[58,[-1]]],59],[[139,57],[[58,[-1]]],59],[[140,57],[[58,[-1]]],59],[[141,57],[[58,[-1]]],59],[[142,57],[[58,[-1]]],59],[[143,57],[[58,[-1]]],59],[[144,57],[[58,[-1]]],59],[[145,57],[[58,[-1]]],59],[[146,57],[[58,[-1]]],59],[[147,57],[[58,[-1]]],59],[[148,57],[[58,[-1]]],59],[[149,57],[[58,[-1]]],59],[[150,57],[[58,[-1]]],59],[[151,57],[[58,[-1]]],59],[[152,57],[[58,[-1]]],59],[[153,57],[[58,[-1]]],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[129,104,104],136],[[[46,[129]],154,38,38],137],[[129,38,38],138],[121,139],[129,140],[121,141],[[129,104],142],[[129,104],143],[[129,104],144],[[129,104],145],[[129,38,38],146],[[104,120],147],[[104,120],148],[45,149],[[129,104],150],[121,151],[70,152],[121,153],0,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,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],0,[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,47,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[131,[19,[70]],78,129,67,104],[[7,[5,6]]]],[[131,78,155,78,78,104],[[7,[5,6]]]],[[131,78,104],[[7,[5,6]]]],[[131,121],[[7,[5,6]]]],[[131,77,[44,[104]],[44,[100]],129],[[7,[5,6]]]],[[131,100,104],[[7,[5,6]]]],[[-1,-2],-3,36,37,[]],[38,-1,[]],[38,-1,[]],[38,5],[[131,-1],6,40],[[131,104,120],6],[[131,129,104,104],6],[[131,121],[[7,[104,6]]]],0,[[-1,41],[[42,[-2]]],[],[]],[-1,-1,[]],[[[7,[-1]]],-1,[]],[[-1,[44,[43]],6],-2,[],[]],0,[[131,104],101],[[131,-1],[],[[119,[118]]]],[[131,121],122],[[],38],[[131,86],156],[-1,-2,[],[]],[-1,-2,[],[]],[131,9],[[131,104],101],[[131,104,104,67],101],[[131,104,67],[[46,[86]]]],[[131,104,67],[[46,[104]]]],[[131,157],101],[[131,104],[[46,[86]]]],[[131,104],101],[[131,104],101],[[131,104],[[46,[104]]]],[[1,158],131],[131,157],[131,157],0,[[131,-1],5,108],[[131,70],[[46,[104]]]],[[131,[44,[70]]],[[7,[5,6]]]],[[131,104],[[46,[104]]]],[[131,84,[44,[78]],129],[[7,[104,6]]]],[[131,78,155,78,78],[[7,[104,6]]]],[[131,78],[[7,[104,6]]]],[[131,84],[[7,[156,6]]]],[96,104],[[131,159,78],[[7,[104,6]]]],[[-1,29],-2,[],[]],[-1,[[7,[-2]]],[],[]],[[131,104,104],[[46,[104]]]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,47,[]],0,[-1,-2,[],[]],0],"c":[],"p":[[3,"GlobalEnv",1076],[3,"LocalDefId",1077],[3,"AdtDef",1078],[6,"QueryResult",1079],[15,"tuple"],[3,"ErrorGuaranteed",1080],[4,"Result",1081],[4,"FluxLocalDefId",1082],[3,"WfckResults",1082],[3,"Rc",1083],[3,"Symbol",1084],[3,"Defns",1085],[6,"PolyFnSig",1078],[3,"EarlyBinder",1078],[3,"FuncDecl",1078],[6,"FxHashMap",1086],[3,"Generics",1078],[3,"Invariant",1078],[3,"Vec",1087],[3,"Clause",1078],[6,"List",1088],[8,"TypeFoldable",1089],[3,"GenericPredicates",1078],[3,"Providers",1079],[3,"Qualifier",1078],[6,"PolyTy",1078],[6,"PolyVariants",1078],[4,"Opaqueness",1078],[3,"TyCtxt",1090],[3,"FluxSession",1091],[3,"TyAlias",1082],[3,"EnumDef",1082],[3,"OwnerId",1092],[3,"FnSig",1082],[3,"StructDef",1082],[8,"Iterator",1093],[8,"FnOnce",1094],[15,"usize"],[3,"Zipper",22],[8,"IntoDiagnostic",1095],[15,"str"],[3,"RequestFilterDataProvider",1096],[3,"QueryInfo",1097],[15,"slice"],[3,"Ty",1082],[4,"Option",1098],[3,"TypeId",1099],[3,"BaseTy",1082],[4,"Constraint",1082],[3,"VariantDef",1082],[4,"GenericArg",1082],[4,"Lifetime",1082],[3,"Path",1082],[4,"QPath",1082],[3,"InvalidRefinement",65],[3,"FieldCountMismatch",65],[3,"Handler",1100],[3,"DiagnosticBuilder",1095],[8,"EmissionGuarantee",1095],[3,"FunArgCountMismatch",65],[3,"GenericArgCountMismatch",65],[3,"ArrayLenMismatch",65],[3,"ArrayLen",1082],[8,"ToString",1101],[3,"ConvCtxt",206],[6,"Expr",1102],[3,"FhirId",1082],[3,"Layer",206],[4,"Entry",206],[3,"RefineParam",1082],[3,"Env",206],[6,"Ty",1078],[4,"Constraint",1078],[3,"Defn",1082],[3,"Defn",1078],[6,"PolyVariant",1078],[3,"DefId",1077],[3,"Expr",1082],[3,"PolyTraitRef",1082],[4,"ClosureKind",1103],[3,"FnOutput",1082],[3,"FnOutput",1078],[3,"Binder",1078],[4,"Func",1082],[3,"FuncDecl",1082],[3,"PolyFuncSort",1082],[3,"PolyFuncSort",1078],[4,"GenericArg",1078],[4,"GenericBound",1082],[6,"GenericBounds",1082],[3,"GenericPredicates",1082],[3,"Generics",1104],[3,"Generics",1082],[3,"Index",1078],[4,"Region",1104],[4,"Lit",1082],[4,"Constant",1105],[3,"OpaqueTy",1082],[3,"Qualifier",1082],[4,"RefineArg",1082],[15,"bool"],[4,"TupleTree",1078],[3,"RefineParam",1078],[4,"Sort",1082],[4,"Sort",1078],[4,"SortCtor",1082],[4,"SortCtor",1078],[8,"IntoIterator",1106],[3,"GenericParam",1082],[4,"BoundVariableKind",1078],[3,"TypeBinding",1082],[15,"u32"],[3,"ParamTy",1107],[3,"Formatter",1108],[6,"Result",1108],[3,"LookupResult",206],[4,"LookupResultKind",206],[3,"Name",1082],[8,"Borrow",1109],[6,"SurfaceIdent",1082],[3,"Ident",1082],[4,"InferMode",1082],[8,"Into",1110],[3,"Path",1102],[4,"AssocKind",1111],[3,"AssocItem",1111],[3,"AssocTypeNotFound",430],[3,"DefinitionCycle",454],[3,"Span",1112],[3,"Wf",479],[3,"InferCtxt",1013],[6,"FxHashSet",1086],[3,"WhereBoundPredicate",1082],[3,"XiCtxt",479],[3,"Snapshot",1113],[3,"SortMismatch",560],[3,"ArgCountMismatch",560],[3,"EarlyBoundArgCountMismatch",560],[3,"DuplicatedEnsures",560],[3,"UnknownQualifier",560],[3,"MissingEnsures",560],[3,"ExpectedFun",560],[3,"InvalidParamPos",560],[3,"UnexpectedFun",560],[3,"ExpectedNumeric",560],[3,"ParamCountMismatch",560],[3,"FieldNotFound",560],[3,"InvalidPrimitiveDotAccess",560],[3,"InvalidBaseInstance",560],[3,"NoEquality",560],[3,"ParamNotDetermined",560],[3,"SortAnnotationNeeded",560],[3,"CannotInferSort",560],[3,"String",1101],[4,"BinOp",1105],[3,"FuncSort",1082],[3,"SortVid",1082],[4,"FluxOwnerId",1082],[4,"UnOp",1105],[6,"LocsMap",22],[13,"Sort",421],[13,"LateBoundList",425],[13,"EarlyBound",425]],"b":[]},\ "flux_fixpoint":{"doc":"","t":"NNNNNENNNNNDDENENDNNDENENNENDNNNNNNNNNDNQNNNNNNNNNNNDENENDNNNNNEEDDNIQDIENNNNNNQMAMLLLLLLLLLLLLLLLLLLLLLLLLLLMMMAMOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLMLLLLLLLLMLLLLLLLLLLLLLLLLMMMMMLLMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLDNNSESLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLMLLNNNNNENNNNNDENEHNNENDNNENDNNNNNNNNNNNNNNNNNNSSNNNDENDENDNNNNEENSSENNNNNSSLLLLLLLLLLLLLLLLLLLLLMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLL","n":["Add","And","And","App","App","BinOp","BinaryOp","BitVec","Bool","Bool","Conj","Const","ConstInfo","Constant","Constant","Constraint","Crash","CrashInfo","Div","Eq","Error","Expr","Expr","FixpointResult","ForAll","Fst","Func","Func","FuncSort","Ge","Gt","Guard","IfThenElse","Iff","Imp","Int","Int","Itf","KVar","KVar","KVar","Le","Lt","Map","Mod","Mul","Ne","Neg","Not","Or","Pair","Pair","PolyFuncSort","Pred","Pred","Proj","Proj","Qualifier","Real","Real","Safe","Set","Snd","Sort","SortCtor","Stats","StringTypes","Sub","Symbol","Tag","Task","Types","UnOp","UnaryOp","Unit","Unit","Unsafe","Var","Var","Var","args","big_int","body","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check","check_with_cache","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","comment","comments","constants","constraint","constraint","declare_types","default","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deserialize","deserialize","deserialize","deserialize","drop","drop","drop","drop","drop","drop","drop","drop","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","fsort","global","hash","hash","hash","hash_with_default","id","init","init","init","init","init","init","init","init","inputs_and_output","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kvars","kvid","name","name","name","new","new","num_chck","num_cstr","num_iter","num_vald","orig","params","qualifiers","scrape_quals","sort","sorts","sorts","tag","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","val","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","BigInt","Negative","NonNegative","ONE","Sign","ZERO","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","cmp","collect_and_apply","collect_and_apply","compare","compare","compare","compare","decode","decode","deref","deref","deref_mut","deref_mut","drop","drop","encode","encode","eq","eq","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","hash","hash","init","init","int_max","int_min","into","into","into_query_param","into_query_param","partial_cmp","partial_cmp","sign","to_owned","to_owned","to_predicate","to_predicate","to_result","to_result","to_string","try_from","try_from","try_into","try_into","type_id","type_id","uint_max","val","vzip","vzip","Add","And","And","App","App","BinOp","BinaryOp","BitVec","Bool","Bool","Conj","Const","Constant","Constant","Constraint","DEFAULT_QUALIFIERS","Div","Eq","Expr","Expr","FmtParens","ForAll","Fst","Func","Func","FuncSort","Ge","Gt","Guard","IfThenElse","Iff","Imp","Int","Int","Itf","KVar","Le","Lt","Map","Mod","Mul","Ne","Neg","Not","ONE","ONE","Or","Pair","Pair","PolyFuncSort","Pred","Pred","PredTag","Proj","Proj","Qualifier","Real","Real","Set","Snd","Sort","SortCtor","Sub","TRUE","TRUE","UnOp","UnaryOp","Unit","Unit","Var","Var","ZERO","ZERO","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","and","args","as_any","as_any","as_any","body","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","decode","decode","decode","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","encode","eq","eq","eq","eq","eq","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","fsort","ge","global","gt","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","iff","imp","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inputs_and_output","int_max","int_min","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_concrete","is_concrete","is_trivially_true","name","name","ne","new","or","params","to_bool","to_int","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uint_max","val","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"flux_fixpoint"],[287,"flux_fixpoint::big_int"],[388,"flux_fixpoint::constraint"],[918,"std::io::error"],[919,"alloc::string"],[920,"flux_common::cache"],[921,"core::iter::traits::iterator"],[922,"core::ops::function"],[923,"core::result"],[924,"serde::de"],[925,"core::str::traits"],[926,"icu_provider_adapters::filter"],[927,"core::fmt"],[928,"core::fmt"],[929,"rustc_span"],[930,"core::hash"],[931,"alloc::vec"],[932,"rustc_middle::ty::context"],[933,"core::any"],[934,"rustc_hir"],[935,"core::iter::traits::collect"],[936,"rustc_middle::arena"],[937,"core::any"],[938,"rustc_serialize::serialize"],[939,"rustc_serialize::serialize"],[940,"core::clone"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","interpreted (theory) function","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A signed integer in the range [-2^128, 2^128], represented …","","","","This are in order so negative is less than non-negative.","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","","","","","Given the bit width of a signed integer type, produces the …","Given the bit width of a signed integer type, produces the …","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Given the bit width of an unsigned integer type, produces …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","interpreted (theory) function","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See BigInt::int_max","See BigInt::int_min","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","Returns true if the constraint has at least one concrete …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See BigInt::uint_max","","","","","","","","","","","","","","","","",""],"i":[57,62,57,33,59,0,59,33,33,50,30,0,0,0,59,0,2,0,57,57,0,0,62,0,30,54,0,33,0,57,57,30,59,57,57,33,50,63,0,62,4,57,57,51,57,57,57,58,58,57,33,59,0,0,30,0,59,0,33,50,2,51,54,0,0,0,0,57,0,4,0,0,0,59,33,59,2,59,63,4,31,0,31,64,19,1,2,14,9,15,23,64,19,1,2,14,9,15,23,1,1,64,19,1,2,14,9,15,23,23,1,1,0,1,0,9,64,19,1,2,14,9,15,23,64,19,1,2,14,9,15,23,2,14,9,15,64,19,1,2,14,9,15,23,64,19,1,2,14,9,15,23,19,1,1,2,14,9,15,23,64,64,19,19,1,1,2,2,14,14,9,9,15,15,23,23,64,19,1,2,14,9,15,23,53,31,19,1,23,1,14,64,19,1,2,14,9,15,23,52,64,19,1,2,14,9,15,23,64,19,1,2,14,9,15,23,1,23,31,55,19,1,23,9,9,9,9,19,53,1,1,19,1,23,14,64,19,1,2,14,9,15,23,64,19,1,2,14,9,15,23,19,1,23,64,19,1,2,14,9,15,23,64,19,1,2,14,9,15,23,64,19,1,2,14,9,15,23,55,64,19,1,2,14,9,15,23,0,41,41,40,0,40,40,40,41,41,40,40,41,41,40,41,40,41,40,41,40,41,40,41,40,41,40,41,40,40,41,41,40,41,40,41,40,41,40,41,40,41,40,41,40,41,40,40,40,40,40,41,41,41,41,41,40,41,40,40,41,40,40,40,40,40,40,41,41,40,41,40,41,40,41,40,40,40,41,40,41,40,41,40,40,41,40,41,40,41,40,40,41,40,41,40,41,40,40,40,41,57,62,57,33,59,0,59,33,33,50,30,0,0,59,0,0,57,57,0,62,0,30,54,0,33,0,57,57,30,59,57,57,33,50,63,62,57,57,51,57,57,57,58,58,59,50,57,33,59,0,0,30,0,0,59,0,33,50,51,54,0,0,57,30,62,0,59,33,59,59,63,59,50,54,54,55,55,57,57,58,58,50,50,54,54,55,55,57,57,58,58,50,50,50,31,57,58,50,31,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,33,51,52,53,54,55,57,58,50,33,51,52,53,54,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,57,58,50,59,57,58,50,50,57,58,50,57,57,57,57,57,58,58,58,58,58,50,50,50,50,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,31,57,57,58,58,50,50,60,60,61,61,30,30,33,33,51,51,52,52,53,53,62,62,59,59,63,63,54,54,31,31,55,55,57,57,58,58,50,50,50,50,50,50,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,53,50,31,50,30,33,51,52,53,62,59,63,54,31,57,58,50,50,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,52,50,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,30,62,62,31,55,50,53,50,53,50,50,33,51,52,53,54,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,31,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50,50,55,60,61,30,33,51,52,53,62,59,63,54,31,55,57,58,50],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[1,[-1]]],[[3,[2]]],4],[[[1,[-1]],5,6],[[3,[2]]],4],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],0,0,0,0,0,0,[[],9],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[-1,[[11,[[2,[-2]]]]],12,13],[-1,[[11,[[14,[-2]]]]],12,13],[-1,[[11,[9]]],12],[-1,[[11,[15]]],12],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[[19,[-1]],20],21,4],[[[1,[-1]],20],21,4],[[[1,[-1]],20],21,4],[[[2,[-1]],20],21,22],[[[14,[-1]],20],21,22],[[9,20],21],[[15,20],21],[[[23,[-1]],20],21,4],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],0,0,[[[19,[-1]],-2],16,4,27],[[[1,[-1]],-2],16,4,27],[[[23,[-1]],-2],16,4,27],[[[1,[-1]]],28,4],0,[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[[29,[5]],[29,[[19,[-1]]]],[29,[[23,[-1]]]],[30,[-1]],[29,[[31,[-1]]]],[29,[5]],32],[[1,[-1]]],4],[[[29,[33]],5],[[23,[-1]]],4],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[[36,-1],[[25,[-2]]],37,[]],[[38,-1],[[25,[-2]]],37,[]],[[36,-1],[[25,[-2]]],37,[]],[[38,-1],[[25,[-2]]],37,[]],[[-1,38],-2,[],[]],[[-1,36],-2,[],[]],[[-1,36],-2,[],[]],[[-1,38],-2,[],[]],[-1,39,[]],[-1,39,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[40,40],[41,41],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[40,40],42],[[41,41],42],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],42,[],[]],[[-1,-2],42,[],[]],[[-1,-2],42,[],[]],[[-1,-2],42,[],[]],[-1,40,43],[-1,41,43],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,16],[10,16],[[40,-1],16,44],[[41,-1],16,44],[[40,40],32],[[41,41],32],[[-1,39],32,[]],[[-1,39],32,[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[40,20],21],[[40,20],21],[[41,20],21],[10,40],[-1,-1,[]],[[[11,[-1]]],-1,[]],[45,40],[46,40],[47,40],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[40,-1],16,27],[[41,-1],16,27],[[],10],[[],10],[48,40],[48,40],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[40,40],[[49,[42]]]],[[41,41],[[49,[42]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,5,[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,35,[]],[-1,35,[]],[48,40],0,[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[36,-1],[[25,[-2]]],37,[]],[[38,-1],[[25,[-2]]],37,[]],[[36,-1],[[25,[-2]]],37,[]],[[38,-1],[[25,[-2]]],37,[]],[[38,-1],[[25,[-2]]],37,[]],[[36,-1],[[25,[-2]]],37,[]],[[38,-1],[[25,[-2]]],37,[]],[[36,-1],[[25,[-2]]],37,[]],[[36,-1],[[25,[-2]]],37,[]],[[38,-1],[[25,[-2]]],37,[]],[[-1,36],-2,[],[]],[[-1,38],-2,[],[]],[[-1,36],-2,[],[]],[[-1,38],-2,[],[]],[[-1,36],-2,[],[]],[[-1,38],-2,[],[]],[[-1,38],-2,[],[]],[[-1,36],-2,[],[]],[[-1,36],-2,[],[]],[[-1,38],-2,[],[]],[[50,50],[[49,[50]]]],0,[-1,39,[]],[-1,39,[]],[-1,39,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[33,33],[51,51],[52,52],[53,53],[54,54],[[[55,[-1]]],[[55,[-1]]],[56,4]],[57,57],[58,58],[50,50],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],16,[],[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[[-1,-2],-3,7,8,[]],[-1,57,43],[-1,58,43],[-1,50,43],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[10,16],[[57,-1],16,44],[[58,-1],16,44],[[50,-1],16,44],[[[59,[-1]],[59,[-1]]],[[59,[-1]]],4],[[57,57],32],[[58,58],32],[[50,50],32],[[50,50],50],[[-1,39],32,[]],[[-1,39],32,[]],[[-1,39],32,[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,-2],32,[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[[60,[-1]],20],21,4],[[[61,[-1]],20],21,4],[[[30,[-1]],20],21,4],[[33,20],21],[[51,20],21],[[52,20],21],[[53,20],21],[[[62,[-1]],20],21,4],[[[59,[-1]],20],21,4],[[[63,[-1]],20],21,4],[[[31,[-1]],20],21,4],[[57,20],21],[[57,20],21],[[58,20],21],[[58,20],21],[[50,20],21],[[50,20],21],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[[[11,[-1]]],-1,[]],[-1,-1,[]],[47,50],[45,50],[10,50],[46,50],[32,50],[[[11,[-1]]],-1,[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],0,[[50,50],[[49,[50]]]],0,[[50,50],[[49,[50]]]],[[[30,[-1]],-2],16,4,27],[[33,-1],16,27],[[51,-1],16,27],[[52,-1],16,27],[[53,-1],16,27],[[[62,[-1]],-2],16,4,27],[[[59,[-1]],-2],16,4,27],[[[63,[-1]],-2],16,4,27],[[54,-1],16,27],[[[31,[-1]],-2],16,4,27],[[57,-1],16,27],[[58,-1],16,27],[[50,-1],16,27],[[50,50],[[49,[50]]]],[[50,50],[[49,[50]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],0,[48,50],[48,50],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[30,[-1]]],32,4],[[[62,[-1]]],32,4],[[[62,[-1]]],32,4],0,0,[[50,50],50],[[10,-1,33],53,37],[[50,50],[[49,[50]]]],0,[50,[[49,[32]]]],[50,[[49,[40]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[[-1,34],-2,[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,5,[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,[[11,[-2]]],[],[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[-1,35,[]],[48,50],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]]],"c":[],"p":[[3,"Task",0],[4,"FixpointResult",0],[6,"Result",918],[8,"Types",0],[3,"String",919],[3,"QueryCache",920],[8,"Iterator",921],[8,"FnOnce",922],[3,"Stats",0],[15,"usize"],[4,"Result",923],[8,"Deserializer",924],[8,"FromStr",925],[3,"Error",0],[3,"CrashInfo",0],[15,"tuple"],[15,"str"],[3,"RequestFilterDataProvider",926],[3,"ConstInfo",0],[3,"Formatter",927],[6,"Result",927],[8,"Debug",927],[3,"KVar",0],[3,"QueryInfo",928],[15,"slice"],[3,"ErrorGuaranteed",929],[8,"Hasher",930],[15,"u64"],[3,"Vec",931],[4,"Constraint",388],[3,"Qualifier",388],[15,"bool"],[4,"Sort",388],[3,"TyCtxt",932],[3,"TypeId",933],[3,"Arena",934],[8,"IntoIterator",935],[3,"Arena",936],[8,"Any",933],[3,"BigInt",287],[4,"Sign",287],[4,"Ordering",937],[8,"Decoder",938],[8,"Encoder",938],[15,"i32"],[15,"i128"],[15,"u128"],[15,"u32"],[4,"Option",939],[4,"Constant",388],[4,"SortCtor",388],[3,"FuncSort",388],[3,"PolyFuncSort",388],[4,"Proj",388],[3,"Const",388],[8,"Clone",940],[4,"BinOp",388],[4,"UnOp",388],[4,"Expr",388],[3,"PredTag",388],[3,"FmtParens",388],[4,"Pred",388],[4,"Func",388],[3,"StringTypes",0]],"b":[[153,"impl-Display-for-Task%3CT%3E"],[154,"impl-Debug-for-Task%3CT%3E"],[345,"impl-Debug-for-BigInt"],[346,"impl-Display-for-BigInt"],[348,"impl-From%3Cusize%3E-for-BigInt"],[351,"impl-From%3Ci32%3E-for-BigInt"],[352,"impl-From%3Ci128%3E-for-BigInt"],[353,"impl-From%3Cu128%3E-for-BigInt"],[610,"impl-PartialEq-for-Constant"],[611,"impl-Constant"],[657,"impl-Debug-for-BinOp"],[658,"impl-Display-for-BinOp"],[659,"impl-Debug-for-UnOp"],[660,"impl-Display-for-UnOp"],[661,"impl-Debug-for-Constant"],[662,"impl-Display-for-Constant"],[694,"impl-From%3Cu128%3E-for-Constant"],[695,"impl-From%3Ci32%3E-for-Constant"],[696,"impl-From%3Cusize%3E-for-Constant"],[697,"impl-From%3Ci128%3E-for-Constant"],[698,"impl-From%3Cbool%3E-for-Constant"]]},\ "flux_macros":{"doc":"","t":"YYAOAAFAAAFADDDLLLLLLMMLMLLLFLLLLLLLMMMMLLLLLLLLLNDEDNLLLLLLLLLLLLMMLLLMMLLLLLLLLLLLMMLLMMLLLLLLLLLLLMENNFLLLLLLFFFOOLLLLFFFFFDDDMMMLLLLLLLLMMMLMLLLLLLLLLLMMMLLLLLLMLMMMLLLLLLLLLLMEERDEGINNNNNNNNNNNNNINNGEDNENNNNNNLMMLLLLLLLLLLLLLLFLFLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLFMFMFFFFFKFMLLLMLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLFFFKKLLMMMMMM","n":["Diagnostic","Subdiagnostic","diagnostics","fluent_messages","diagnostic","diagnostic_builder","diagnostic_derive","error","fluent","subdiagnostic","subdiagnostic_derive","utils","DiagnosticDerive","LintDiagnosticDerive","Mismatch","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","builder","builder","check","crate_name","from","from","from","generate_test","into","into","into","into_tokens","into_tokens","new","new","slug_name","slug_prefix","structure","structure","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","Diagnostic","DiagnosticDeriveBuilder","DiagnosticDeriveKind","DiagnosticDeriveVariantBuilder","LintDiagnostic","add_spanned_subdiagnostic","add_subdiagnostic","as_any","body","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","code","diag","each_variant","eq","equals","field_map","formatting_init","from","from","from","generate_field_attrs_code","generate_field_code","generate_inner_field_code","generate_structure_code_for_attr","get_field_binding","into","into","into","kind","parent","parse_subdiag_attribute","preamble","slug","span","span_and_applicability_of_ty","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","handler","DiagnosticDeriveError","ErrorHandled","SynError","_throw_err","borrow","borrow_mut","fmt","from","from","into","invalid_attr","path_to_string","span_err","throw_invalid_attr","throw_span_err","to_compile_error","try_from","try_into","type_id","failed","finish","fluent_messages","invocation_relative_path_to_absolute","variable_references","KindsStatistics","SubdiagnosticDeriveBuilder","SubdiagnosticDeriveVariantBuilder","all_applicabilities_static","all_multipart_suggestions","applicability","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","diag","f","fields","fmt","formatting_init","from","from","from","from_iter","generate_field_attr_code","generate_field_code_inner","generate_field_code_inner_list","generate_field_code_inner_path","generate_field_set_arg","get_field_binding","has_multipart_suggestion","has_normal_suggestion","has_suggestion_parts","identify_kind","into","into","into","into_tokens","into_tokens","is_enum","new","parent","span","span_field","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","variant","AllowMultipleAlternatives","Applicability","CODE_IDENT_COUNT","FieldInfo","FieldInnerTy","FieldMap","HasFieldMap","HasPlaceholders","Help","Hidden","Label","MachineApplicable","MaybeIncorrect","MultipartSuggestion","No","None","Normal","Note","Option","Plain","SetOnce","Short","Some","SpannedOption","SubdiagnosticKind","SubdiagnosticVariant","Suggestion","SuggestionKind","ToolOnly","Unspecified","Vec","Verbose","Warn","Yes","as_any","base","binding","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_field_mapping","build_format","build_suggestion_code","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","eq","equals","fmt","fmt","fmt","from","from","from","from","from","from","from","from_attr","from_str","from_str","from_suffix","from_type","get_field_binding","inner_type","into","into","into","into","into","into","into","is_doc_comment","kind","new_code_ident","no_span","parse_suggestion_values","report_error_if_not_applied_to_applicability","report_error_if_not_applied_to_span","report_error_if_not_applied_to_ty","report_type_error","set_once","should_generate_set_arg","slug","span","span","span","span","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_suggestion_style","to_tokens","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_is_bool","type_is_unit","type_matches_path","value","value_ref","will_iterate","with","applicability","applicability","code_field","code_init","suggestion_kind","suggestion_kind"],"q":[[0,"flux_macros"],[4,"flux_macros::diagnostics"],[12,"flux_macros::diagnostics::diagnostic"],[49,"flux_macros::diagnostics::diagnostic_builder"],[101,"flux_macros::diagnostics::diagnostic_builder::DiagnosticDeriveKind"],[102,"flux_macros::diagnostics::error"],[121,"flux_macros::diagnostics::fluent"],[126,"flux_macros::diagnostics::subdiagnostic"],[180,"flux_macros::diagnostics::utils"],[323,"flux_macros::diagnostics::utils::SubdiagnosticKind"],[329,"synstructure"],[330,"proc_macro2"],[331,"syn::path"],[332,"core::option"],[333,"proc_macro2"],[334,"core::any"],[335,"core::any"],[336,"synstructure"],[337,"alloc::string"],[338,"proc_macro"],[339,"proc_macro::diagnostic"],[340,"core::ops::function"],[341,"core::fmt"],[342,"proc_macro::diagnostic"],[343,"proc_macro"],[344,"fluent_syntax::ast"],[345,"alloc::vec"],[346,"core::iter::traits::collect"],[347,"syn::attr"],[348,"proc_macro2"],[349,"syn::ty"],[350,"syn::lit"],[351,"syn::error"],[352,"quote::to_tokens"]],"d":["","","","","","","","","","","","","The central struct for constructing the into_diagnostic …","The central struct for constructing the decorate_lint …","","","","","","","","","","Checks whether the slug starts with the crate name it’s …","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Generates a #[test] that verifies that all referenced …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Tracks persistent information required for the entire type …","What kind of diagnostic is being derived - a …","Tracks persistent information required for a specific …","","Adds a spanned subdiagnostic by generating a …","Adds a subdiagnostic by generating a diag.span_$kind call …","","Generates calls to span_label and similar functions based …","","","","","","","","","Error codes are a optional part of the struct attribute - …","The identifier to use for the generated DiagnosticBuilder …","Call f for the struct or for each variant of the enum, …","","","Store a map of field name to its corresponding field. This …","Initialization of format strings for code suggestions.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Establishes state in the DiagnosticDeriveBuilder resulting …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Kind of diagnostic that should be derived.","The parent builder for the entire type.","Parse a SubdiagnosticKind from an Attribute.","Generates calls to code and similar functions based on the …","Slug is a mandatory part of the struct attribute as …","Span of the struct or the enum variant.","","","","","","","","","","","","","","","","Helper function for use with throw_* macros - constraints …","","","","Returns the argument unchanged.","","Calls U::from(self).","Returns an error diagnostic for an invalid attribute.","Helper function for printing syn::Path - doesn’t handle …","Returns an error diagnostic on span span with msg msg.","Emit an error diagnostic for an invalid attribute …","Emit a diagnostic on span $span with msg $msg (optionally …","","","","","Tokens to be returned when the macro cannot proceed.","Final tokens.","See [rustc_fluent_macro::fluent_messages].","Helper function for returning an absolute path for …","","Provides frequently-needed information about the …","The central struct for constructing the add_to_diagnostic …","Tracks persistent information required for building up the …","","","The binding to the #[applicability] field, if present.","","","","","","","","","","","Store a map of field name to its corresponding field. This …","","Initialization of format strings for code suggestions.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Generates the necessary code for all attributes on a field.","","Generates the code for a [Meta::List]-like attribute on a …","Generates the code for a [Meta::Path]-like attribute on a …","Generates the code for a field with no attributes.","","","","Set to true when a #[suggestion_part] field is …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Set to true when this variant is an enum variant rather …","","The identifier to use for the generated DiagnosticBuilder …","Span for the entire type.","Identifier for the binding to the #[primary_span] field.","","","","","","","","","","","Info for the current variant (or the type if not an enum).","","Applicability of a suggestion - mirrors …","","Field information passed to the builder. Deliberately …","Inner type of a field and type of wrapper.","","","","#[help(...)]","","#[label(...)]","","","#[multipart_suggestion{,_short,_hidden,_verbose}]","","No value.","","#[note(...)]","Field is wrapped in a Option<$inner>.","Field isn’t wrapped in an outer type.","Small helper trait for abstracting over Option fields that …","","Some value of type T.","An Option<T> that keeps track of the span that caused it …","Types of subdiagnostics that can be created using …","","#[suggestion{,_short,_hidden,_verbose}]","Possible styles for suggestion subdiagnostics.","","","Field is wrapped in a Vec<$inner>.","","#[warning(...)]","","","","","","","","","","","","","","","","","","","Build the mapping of field names to fields. This allows …","In the strings in the attributes supplied to this macro, …","Constructs the format!() invocation(s) necessary for a …","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Constructs a SubdiagnosticVariant from a field or type …","","","","Returns inner type for a field, if there is one.","Returns the binding for the field with the given name, if …","Returns the inner type.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Returns an ident of the form __code_N where N is …","","","Reports an error if the field’s type is not Applicability…","Reports an error if the field’s type is not Span.","Reports an error if the field’s type does not match path.","Reports a type error for field with attr.","","Returns true if field should generate a set_arg call …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Checks whether the type ty is bool.","Checks whether the type ty is ().","Checks whether the type name of ty matches name.","","","Returns true if FieldInnerTy::with will result in …","Surrounds inner with destructured wrapper type, exposing …","","","Identifier for variable used for formatted code, e.g. …","Initialization logic for code_field’s variable, e.g. …","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,4,6,7,4,6,7,4,4,6,7,4,0,6,7,4,6,7,6,7,4,4,6,7,6,7,4,6,7,4,6,7,4,14,0,0,0,14,11,11,14,11,16,11,14,16,11,14,14,14,11,16,16,14,14,11,11,16,11,14,11,11,11,11,11,16,11,14,16,11,11,11,11,11,11,14,16,11,14,16,11,14,16,11,14,59,0,22,22,0,22,22,22,22,22,22,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,38,38,40,42,40,38,42,40,38,38,38,42,42,40,38,40,42,40,38,38,40,40,40,40,40,40,38,38,40,40,42,40,38,42,40,40,42,40,40,40,38,42,40,38,42,40,38,42,40,38,40,0,0,0,0,0,0,0,49,24,50,24,49,49,24,46,60,50,24,48,48,0,50,60,0,0,0,24,0,50,49,48,50,24,46,50,61,21,21,51,48,49,46,50,24,21,51,48,49,46,50,24,0,47,0,48,49,46,50,24,48,49,46,50,24,50,50,46,50,24,21,51,48,49,46,50,24,51,49,50,50,48,47,48,21,51,48,49,46,50,24,0,51,0,51,0,0,0,0,0,62,0,51,48,49,24,21,48,49,46,50,24,50,50,49,21,51,48,49,46,50,24,21,51,48,49,46,50,24,21,21,51,48,49,46,50,24,0,0,0,62,62,48,48,63,64,63,63,63,64],"f":[0,0,0,0,0,0,[1,2],0,0,0,[1,2],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[3,[[5,[4]]]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[3,1],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[6,2],[7,2],[[8,8,1],6],[[8,1],7],0,0,0,0,[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,10,[]],[-1,10,[]],[-1,10,[]],0,0,0,0,0,[[11,2,8,3],2],[[11,8,3],2],[-1,12,[]],[[11,13],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,14],[[-1,-2],15,[],[]],0,0,[[16,1,-1],2,17],[[14,14],18],[[-1,12],18,[]],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[11,19],2],[[11,19],2],[[11,20,21,2],[[9,[2,22]]]],[[11,20],[[9,[2,22]]]],[[11,23],[[5,[2]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[11,20],[[9,[[5,[[15,[24,3,18]]]],22]]]],[[11,13],2],0,0,[[11,21],[[9,[[15,[2,[5,[[15,[2,25]]]]]],22]]]],[-1,-2,[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,10,[]],[-1,10,[]],[-1,10,[]],0,0,0,0,[[26,-1],22,27],[-1,-2,[],[]],[-1,-2,[],[]],[[22,28],29],[-1,-1,[]],[30,22],[-1,-2,[],[]],[20,26],[3,23],[[-1,-2],26,31,[[32,[23]]]],0,0,[22,2],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,10,[]],[8,33],[[2,2],33],[33,33],[[25,34],35],[[[36,[34]]],[[37,[34]]]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[38,38],[[-1,-2],15,[],[]],0,0,0,[[38,28],29],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,38,39],[[40,19,38],2],[[40,38,20,21,18],[[9,[2,22]]]],[[40,38,20,21,41,18],[[9,[2,22]]]],[[40,38,20,21,3],[[9,[2,22]]]],[[40,19],2],[[40,23],[[5,[2]]]],0,0,0,[40,[[9,[[37,[[15,[24,3,18]]]],22]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[42,1],2],[40,[[9,[2,22]]]],0,[[],42],0,0,0,[-1,-2,[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,10,[]],[-1,10,[]],[-1,10,[]],0,0,0,0,0,0,0,0,0,0,0,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,12,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[13,[[43,[23,2]]]],[[-1,34,44],2,[]],[[8,45,-1,46],2,47],[48,48],[49,49],[46,46],[50,50],[24,24],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[50,50],18],[[-1,12],18,[]],[[46,28],29],[[50,28],29],[[24,28],29],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[20,-1],[[9,[[5,[51]],22]]],47],[34,[[9,[49]]]],[34,[[9,[50]]]],[34,[[5,[50]]]],[52,48],[[-1,23],[[5,[2]]],[]],[48,52],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[20,18],0,[[],8],0,[[45,46],[[54,[[37,[53]]]]]],[[20,21],[[9,[15,22]]]],[[20,21],[[9,[15,22]]]],[[20,21,[55,[34]],34],[[9,[15,22]]]],[[20,34],[[9,[56,22]]]],[[-1,-2,25],15,[],[]],[57,18],0,[48,44],[-1,44,[]],[24,[[5,[44]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,23,[]],[50,2],[[49,2],15],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],0,[-1,10,[]],[-1,10,[]],[-1,10,[]],[-1,10,[]],[-1,10,[]],[-1,10,[]],[-1,10,[]],[52,18],[52,18],[[52,[55,[34]]],18],[-1,[[5,[-2]]],[],[]],[-1,[[5,[-2]]],[],[]],[48,18],[[48,-1,-2],2,58,58],0,0,0,0,0,0],"c":[],"p":[[3,"Structure",329],[3,"TokenStream",330],[3,"Path",331],[3,"Mismatch",12],[4,"Option",332],[3,"DiagnosticDerive",12],[3,"LintDiagnosticDerive",12],[3,"Ident",330],[4,"Result",333],[3,"TypeId",334],[3,"DiagnosticDeriveVariantBuilder",49],[8,"Any",334],[3,"VariantInfo",329],[4,"DiagnosticDeriveKind",49],[15,"tuple"],[3,"DiagnosticDeriveBuilder",49],[8,"Fn",335],[15,"bool"],[3,"BindingInfo",329],[3,"Attribute",336],[3,"FieldInfo",180],[4,"DiagnosticDeriveError",102],[3,"String",337],[4,"SubdiagnosticKind",180],[3,"Span",338],[3,"Diagnostic",339],[8,"FnOnce",335],[3,"Formatter",340],[6,"Result",340],[3,"Error",341],[8,"MultiSpan",339],[8,"Into",342],[3,"TokenStream",338],[15,"str"],[3,"PathBuf",343],[3,"Message",344],[3,"Vec",345],[3,"KindsStatistics",126],[8,"IntoIterator",346],[3,"SubdiagnosticDeriveVariantBuilder",126],[3,"MetaList",336],[3,"SubdiagnosticDeriveBuilder",126],[3,"HashMap",347],[3,"Span",330],[3,"ParseNestedMeta",348],[4,"AllowMultipleAlternatives",180],[8,"HasFieldMap",180],[4,"FieldInnerTy",180],[4,"Applicability",180],[4,"SuggestionKind",180],[3,"SubdiagnosticVariant",180],[4,"Type",349],[3,"LitStr",350],[6,"Result",341],[15,"slice"],[15,"never"],[3,"Field",351],[8,"ToTokens",352],[13,"Diagnostic",101],[6,"SpannedOption",180],[6,"FieldMap",180],[8,"SetOnce",180],[13,"Suggestion",323],[13,"MultipartSuggestion",323]],"b":[]},\ "flux_metadata":{"doc":"","t":"DDDHRRLLMMLLLLLLLLLLLALLLLLLLLLLLFAFLLLFLMLLLLLLLLLLLLLLLLLLLMLLMLLLLLLLLLLLLLLLLMLMLLLDALLLLLFLLLALLLLLLLLMLLLLLLLLLLLLLLMLLLLLLLDRLLLLLLMLLLLLLLLLMLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLFOLLLLLLLMLLMMLLLLLLML","n":["AdtMetadata","CStore","CrateMetadata","DEFAULT_LOCALE_RESOURCE","METADATA_HEADER","METADATA_VERSION","adt","adt_def","adt_def","adts","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","decode","decode","decoder","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","encode","encode","encode_metadata","encoder","filename_for_metadata","filterable","filterable","filterable","flux_metadata_extern_location","fn_sig","fn_sigs","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","into","into","into","into_query_param","into_query_param","into_query_param","load","meta","new","refined_by","refined_bys","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_of","type_of","variants","variants","vzip","vzip","vzip","DecodeContext","__ty_decoder_impl","borrow","borrow_mut","cached_ty_for_shorthand","collect_and_apply","decode_alloc_id","decode_crate_metadata","deref","deref_mut","drop","errors","filterable","from","from","from_cycle_error","init","interner","into","into_query_param","opaque","peek_byte","position","read_i128","read_i16","read_i32","read_i64","read_isize","read_raw_bytes","read_u128","read_u16","read_u32","read_u64","read_u8","read_usize","tcx","to_predicate","to_result","try_from","try_into","type_id","vzip","with_position","DecodeFileError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DecodeFileError","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","err","filterable","from","from","from_cycle_error","init","into","into_diagnostic","into_query_param","new","path","to_predicate","to_result","try_from","try_into","type_id","vzip","EncodeContext","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","emit_bool","emit_char","emit_i128","emit_i16","emit_i32","emit_i64","emit_i8","emit_isize","emit_raw_bytes","emit_str","emit_u128","emit_u16","emit_u32","emit_u64","emit_u8","emit_usize","encode_alloc_id","encode_metadata","encoder_methods","filterable","from","from","from_cycle_error","init","into","into_query_param","opaque","position","predicate_shorthands","predicate_shorthands","tcx","to_predicate","to_result","try_from","try_into","type_id","type_shorthands","type_shorthands","vzip"],"q":[[0,"flux_metadata"],[87,"flux_metadata::decoder"],[130,"flux_metadata::decoder::errors"],[155,"flux_metadata::encoder"],[201,"rustc_span::def_id"],[202,"core::option"],[203,"flux_middle::rty"],[204,"core::iter::traits::iterator"],[205,"core::ops::function"],[206,"rustc_type_ir::codec"],[207,"rustc_type_ir::codec"],[208,"std::path"],[209,"rustc_middle::ty::context"],[210,"rustc_session::config"],[211,"icu_provider_adapters::filter"],[212,"rustc_span::def_id"],[213,"rustc_query_system::query::job"],[214,"rustc_span"],[215,"flux_errors"],[216,"flux_middle::fhir"],[217,"core::any"],[218,"flux_middle::rty"],[219,"rustc_middle::mir::interpret"],[220,"rustc_errors"],[221,"rustc_errors::diagnostic_builder"],[222,"rustc_errors::diagnostic_builder"],[223,"rustc_middle::ty::sty"],[224,"rustc_hash"]],"d":["","","","Raw content of Fluent resource for this crate, generated …","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","For now it only store type of aliases","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,1,1,3,8,1,8,3,1,8,3,1,8,3,8,3,0,1,8,3,1,8,3,1,8,3,8,3,0,0,0,1,8,3,0,1,8,1,1,8,8,3,3,1,8,3,1,8,3,1,8,3,1,8,3,1,1,8,1,8,1,8,3,1,8,3,1,8,3,1,8,3,1,8,3,1,8,1,3,1,8,3,0,0,33,33,33,33,33,0,33,33,33,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,0,0,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51],"f":[0,0,0,0,0,0,[[1,2],[[4,[3]]]],[[1,2],[[4,[5]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,6,7,[]],[[-1,-2],-3,6,7,[]],[[-1,-2],-3,6,7,[]],[-1,8,9],[-1,3,9],0,[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,-1,[]],[10,11],[10,11],[10,11],[[8,-1],11,12],[[3,-1],11,12],[[13,14],11],0,[15,16],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[-1,17],[[18,[-2]]],[],[]],[[15,19],[[4,[20]]]],[[1,2],[[4,[[22,[21]]]]]],0,[[[23,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[23,[-1]]],-1,[]],[-1,-1,[]],[[[23,[-1]]],-1,[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[-1,[25,[24]],26],-2,[],[]],[[],10],[[],10],[[],10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[15,27],1],0,[13,8],[[1,2],[[4,[28]]]],0,[[-1,15],-2,[],[]],[[-1,15],-2,[],[]],[[-1,15],-2,[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,29,[]],[-1,29,[]],[-1,29,[]],[[1,2],[[4,[[22,[30]]]]]],0,[[1,2],[[4,[[32,[[22,[[25,[31]]]]]]]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[33,10,-1],34,7],[[-1,-2],-3,6,7,[]],[33,35],[[15,27,14],[[4,[8]]]],[10,-1,[]],[10,-1,[]],[10,11],0,[[-1,17],[[18,[-2]]],[],[]],[[[23,[-1]]],-1,[]],[-1,-1,[]],[[-1,[25,[24]],26],-2,[],[]],[[],10],[33],[-1,-2,[],[]],[-1,-2,[],[]],0,[33,36],[33,10],[33,37],[33,38],[33,39],[33,40],[33,41],[[33,10],[[25,[36]]]],[33,42],[33,43],[33,44],[33,45],[33,36],[33,10],0,[[-1,15],-2,[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,29,[]],[-1,-2,[],[]],[[33,10,-1],-2,7,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,6,7,[]],[10,-1,[]],[10,-1,[]],[10,11],0,[[-1,17],[[18,[-2]]],[],[]],[[[23,[-1]]],-1,[]],[-1,-1,[]],[[-1,[25,[24]],26],-2,[],[]],[[],10],[-1,-2,[],[]],[[46,47],[[48,[-1]]],49],[-1,-2,[],[]],[[14,50],46],0,[[-1,15],-2,[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,29,[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,6,7,[]],[10,-1,[]],[10,-1,[]],[10,11],[[51,52],11],[[51,53],11],[[51,37],11],[[51,38],11],[[51,39],11],[[51,40],11],[[51,54],11],[[51,41],11],[[51,[25,[36]]],11],[[51,17],11],[[51,42],11],[[51,43],11],[[51,44],11],[[51,45],11],[[51,36],11],[[51,10],11],[[51,35],11],[[13,14],11],0,[[-1,17],[[18,[-2]]],[],[]],[[[23,[-1]]],-1,[]],[-1,-1,[]],[[-1,[25,[24]],26],-2,[],[]],[[],10],[-1,-2,[],[]],[-1,-2,[],[]],0,[51,10],[51,[[56,[55,10]]]],0,0,[[-1,15],-2,[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,29,[]],[51,[[56,[34,10]]]],0,[-1,-2,[],[]]],"c":[],"p":[[3,"CStore",0],[3,"DefId",201],[3,"AdtMetadata",0],[4,"Option",202],[3,"AdtDef",203],[8,"Iterator",204],[8,"FnOnce",205],[3,"CrateMetadata",0],[8,"TyDecoder",206],[15,"usize"],[15,"tuple"],[8,"TyEncoder",206],[3,"GlobalEnv",207],[3,"Path",208],[3,"TyCtxt",209],[4,"OutFileName",210],[15,"str"],[3,"RequestFilterDataProvider",211],[3,"CrateNum",201],[3,"PathBuf",208],[6,"PolyFnSig",203],[3,"EarlyBinder",203],[4,"Result",212],[3,"QueryInfo",213],[15,"slice"],[3,"ErrorGuaranteed",214],[3,"FluxSession",215],[3,"RefinedBy",216],[3,"TypeId",217],[6,"PolyTy",203],[6,"PolyVariant",203],[4,"Opaqueness",203],[3,"DecodeContext",87],[3,"Ty",218],[3,"AllocId",219],[15,"u8"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"isize"],[15,"u128"],[15,"u16"],[15,"u32"],[15,"u64"],[3,"DecodeFileError",130],[3,"Handler",220],[3,"DiagnosticBuilder",221],[8,"EmissionGuarantee",221],[3,"Error",222],[3,"EncodeContext",155],[15,"bool"],[15,"char"],[15,"i8"],[6,"PredicateKind",223],[6,"FxHashMap",224]],"b":[]},\ -"flux_middle":{"doc":"This crate contains common type definitions that are used …","t":"HOOOOOOOOOOOOAAAAAAAAAOFFFFFIGKKKKKNNNNNNNDNDNNEENNNNNGNENNDNENNDNNNNDNNNNDNEDDNNNEEEDDDENDEDNEEGDEDDNNNNDNNNNNENNNNDGGNNNENNENNDDNSSSSSSDNNNNNNDEDNNNNNNNNDNNEDNDDNNENNNEDNNNNNNNEDDENNNNNNNNNEEDGDNNDENGSNNENNDDENNNDNNENNNNNNDDDEDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMLLLLLLLLLLLLLMLLLLLLLLLLLLLMMMMLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLMMMMMMMMLMLAMMMMMLMMLMMMMMMLLLLLLLLLLMLMMLMMMMMMMMMMMMMMMMLLLLMMMMMMMLLMLMMMMMLLMMMLLMMMMLLMMMMMMMMMMMMLLLLLMLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMDLLLLLLLLALLLLLLLLLLLLLLFLLLLLLFLLLLLLLLLLLFFLFLLLLLMMMMLLLLLLLDRLLLMLLLLLLLLLLLLMMLLLLLLILLLLLLLLLLLLLLLLLLLLLLFFFFFFFFFFFFFFFFFFFDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMLLLLMLLLLLMLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGGDIDGILLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLCCLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLMMLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNINDEDDINDLLLLMLLLLLLLLLLLLLLLLLMMFLLOLLLLLLLLLLLLLLLLLLLLKLLLLOLLLLLLLLLLLLLLLKLMLMLMMLMMOLLLLLLLLLLLLLLLMOLMLLLLOMFMMOLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLOOGNNNDDEGNLMMLLLMLLLLMMLLLLLLLLMMLLLLLLLLLOLLLLLMMLLLLLLLLLLLMMLMMLLLLLLLLLLLMMLMLMLMLMLMMMLMMFLLLLLLLLLLLLLLLLLMMLMLMMLLLMMMNNNDDDNEDNNNNENNENDNNNNNOCEDENNNNNDENEDCNNNENNEGNNDDNNNDCNCDNDNNGNENNRNOENNNDDNDNCNDDNDNDEGDEDDNNNENNNNNRHNNNDNCNNNOEDNDNDNNNNNENNNNNNNNNEDNNNNNSNNGENDNNNDDNGDGGGNNNNDNEDNNNNONGDCNDNNNEEDNNNNDDNNNNNNEGNEDNNNGNNNNNHNOEENNNNENNNDDSLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMLMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLAMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMLLLLLLMMMMMMMLLLLLLLLLLLLAMMLLMLLLMMMLLLMMMMMMMLMAMMMMLMMALLLLMLLMALLLLLMLLMMMLMMLLLLLLMMMMLLLLLLLLLLLLLLLLALLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLMMMMLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMDDDDEDSSHNNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNENNNENNDNNNGNEDNNNNNENNNNDNDNNENNNSSSSNNDNNNNDNNNDNNNENENNLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLMMLLLLLLLLLLLLLLLLLLLLLLAMMLMLLMLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNNELLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLQQIIIIIIILLLLLLLLLLLLLLLLLKLLLLLLKKLLLLLKLDDDLLLLLLLLLLLLLMMLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLEDNDNNMLLFLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLFFFFFFFFLLLMLMLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLMLMLLLLLLLMLLLLFLLFLLLLFLLLLLLLLLLLLDIDDDDLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMLLLLMLMKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAAADDLLLLLLLLLLLLMLLALLLLLLLLLLLLLLLLFLFLLLFLFFLFFLLFFFFFFFFLLLFLFLLLFFFLMLMMMMLLLLLLLLLLLLLDDDRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMMMMMLLLLLLLLLLLLLLMLLLLLLNNNENNNNENDDENNNNDNDENNDNENNNNENNNNNNNNNNNNNNRNENNNDNNNNNNNNDNNNNNNDDGEDNNNNNNNNNNENDENDNENSRNNNNNERNNNNDDENNNDNNDENNENNNNNENNEDNMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLMMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLMMMMMLMLLLLLLLLLFLLFMMMMMMLMLLLLLLLLLLLMLFMLLMMMMLMMMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMNDDNEDNDNDEDENNNNDENDDENNNNDDDNNDNENDDDDEGDEDDNNNNNNENNNNENNNDNNDGNNDNNNNNNNENDDNNNDDNDNEDNNGNNNNNNENNDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLLMLMLMMMLMMMMMLLLLLLLLLLLLFMMMLLMLLLLLLLLLLLALLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMIK","n":["DEFAULT_LOCALE_RESOURCE","_Bool","_Float","_Int","_Ref","_Uint","_define_scoped","_format_args_cx","_impl_debug_with_default_cx","_join","_parens","_w","_with_cx","const_eval","cstore","fhir","global_env","intern","pretty","queries","rty","rustc","walk_list","scalar_int_to_constant","scalar_int_to_rty_constant","scalar_to_bits","scalar_to_int","scalar_to_uint","CrateStore","CrateStoreDyn","adt_def","fn_sig","refined_by","type_of","variants","Abs","Add","And","App","App","Arr","Array","ArrayLen","At","BaseTy","BaseTy","BaseTy","BaseTyKind","BinOp","BinaryOp","BitVec","Bool","Bool","Bool","Cache","Char","Coercion","Colon","Const","ConstInfo","Constr","Constraint","Def","Def","Defn","Defn","Div","Dot","EVar","EnumDef","Eq","Error","Exists","Explicit","Expr","Expr","ExprKind","FhirId","FieldDef","Float","Flux","Flux","FluxItem","FluxLocalDefId","FluxOwnerId","FnInfo","FnOutput","FnSig","Func","Func","FuncDecl","FuncKind","FuncSort","Ge","GenericArg","GenericBound","GenericBounds","GenericParam","GenericParamKind","GenericPredicates","Generics","Global","Gt","Hole","Hole","Ident","IfThenElse","Iff","Imp","Indexed","Infer","InferMode","Inject","Int","Int","Int","ItemLocalId","ItemLocalMap","ItemPredicates","KVar","LangItemTrait","Le","Lifetime","Lifetime","Lifetime","Lit","Literal","Loc","LocalTableInContext","LocalTableInContextMut","Lt","MAX","MAX","MAX","MAX_AS_U32","MAX_AS_U32","MAX_AS_U32","Map","Map","Maybe","Mod","Mul","Mut","Mut","MutTy","Mutability","Name","Ne","Neg","Never","None","Not","Not","Opaque","OpaqueDef","OpaqueTy","Or","Param","ParamKind","Path","Path","PolyFuncSort","PolyTraitRef","Pound","Pred","PrimTy","PrimTy","Project","Ptr","QPath","Qualifier","Qualifier","RawPtr","Real","Real","Record","Record","Ref","RefineArg","RefineParam","RefinedBy","Res","Resolved","Resolved","Rust","Rust","SelfTyAlias","SelfTyParam","Set","Shr","Slice","Sort","SortCtor","SortDecl","SortDecls","SortVid","SplTy","Str","StructDef","StructKind","Sub","SurfaceIdent","TRUE","Thy","Trait","TraitBoundModifier","Transparent","Tuple","Ty","TyAlias","TyKind","Type","Type","Type","TypeBinding","Uif","Uint","UnOp","UnaryOp","Unit","User","Var","Var","Var","VariantDef","VariantIdx","VariantRet","WeakKind","WfckResults","WhereBoundPredicate","Wildcard","add","add","add","add_trusted","all_params","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","args","args","args","args","arity","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_path","as_path","as_u32","as_u32","as_u32","as_usize","as_usize","as_usize","backward_checked","backward_checked","backward_checked","base","base","bindings","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bound_generic_params","bounded_ty","bounds","bounds","bty","buf","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","coercions","coercions","coercions_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","const_by_name","consts","consts","data","data","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","def_id","def_id","def_id","def_id","def_id","default","default_infer_mode","defn","defns","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descr","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","early_bound","early_bound_params","early_bound_sorts","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","ensures","enums","enums","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expect_type","expr","expr","externs","fhir_id","fhir_id","fhir_id","field_index","field_sort","fields","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","flux_items","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fn_quals","fn_quals","fn_sig","fn_sigs","fns","forward_checked","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_index","from_u32","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","from_usize","fsort","func_decl","func_decls","func_decls","generics","get","get_enum","get_extern","get_flux_item","get_fn_quals","get_fn_sig","get_generic_predicates","get_generics","get_opaque_ty","get_param","get_refine_params","get_struct","get_type_alias","global","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","ident","ident","idx","in_use","index","index","index","index","index","index","index","index_params","index_params","index_sorts","infer_mode","infer_mode","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","inputs","inputs_and_output","insert","insert_const","insert_defn","insert_enum","insert_extern","insert_fn_quals","insert_fn_sig","insert_func_decl","insert_generic_predicates","insert_generics","insert_opaque_tys","insert_qualifier","insert_refined_by","insert_sort_decl","insert_struct","insert_theory_func","insert_theory_funcs","insert_type_alias","instantiate","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_diagnostic_arg","into_diagnostic_arg","into_diagnostic_arg","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","invariants","invariants","is_base_generic","is_bool","is_bool","is_implicit","is_numeric","is_opaque","is_pred","is_trusted","is_wildcard","kind","kind","kind","kind","kind","kind","kind","len","lifetime_holes","lifetime_holes","lifetime_holes_mut","lift","lifted","lifted","lifted","lifted","local_id","map","map","mutbl","name","name","name","name","name","name","name","new","new","new","new","new","new","new","new","new","node_sorts","node_sorts","node_sorts_mut","opaque_tys","opaque_tys","output","output","owner","owner","owner","owner","owner_id","owner_id","owner_id","params","params","params","params","params","params","params","params","partial_cmp","partial_cmp","partial_cmp","partial_cmp","predicates","predicates","predicates","private","private","private","private","qualifiers","recover","refine","refined_by","refined_by","requires","res","ret","ret","set","skip_binders","sort","sort","sort","sort_decl","sort_decls","sort_decls","sort_params","sorts","source_info","span","span","span","span","span","span","span","span","span","span","span","span","span","span","steps_between","steps_between","steps_between","storage","structs","structs","subst","sym","sym","tag","term","to_debug_str","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","to_string","trait_def_id","trait_ref","trivial","trusted","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","ty","ty","type_aliases","type_aliases","type_holes","type_holes","type_holes_mut","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unify_values","val","val","variants","visit","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_refined_by","default","expr","is_binder","alias_to","is_trait_impl","trait_","name","fields","LiftCtxt","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","emit_err","emit_unsupported","errors","filterable","from","from","from_cycle_error","generic_params_into_args","init","insert_opaque_ty","into","into_query_param","lift_array_len","lift_enum_variant","lift_enum_variant_id","lift_field_def","lift_field_def_id","lift_fn","lift_fn_ret_ty","lift_fn_sig","lift_generic_args","lift_generic_bound","lift_generic_param","lift_generic_predicates","lift_generics","lift_generics","lift_generics_inner","lift_generics_with_predicates","lift_lifetime","lift_mut_ty","lift_opaque_ty","lift_path","lift_path_to_ty","lift_poly_trait_ref","lift_predicates","lift_qpath","lift_refined_by","lift_self_ty","lift_ty","lift_type_alias","lift_type_bindings","lift_variant_ret","lift_variant_ret_inner","lift_where_predicate","new","opaque_tys","owner","sess","tcx","to_predicate","to_result","try_from","try_into","type_id","vzip","with_new_owner","UnsupportedHir","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedHir","borrow","borrow_mut","collect_and_apply","def_kind","deref","deref_mut","drop","filterable","from","from","from_cycle_error","init","into","into_diagnostic","into_query_param","new","note","span","to_predicate","to_result","try_from","try_into","type_id","vzip","Visitor","visit_bty","visit_constraint","visit_enum_def","visit_expr","visit_field_def","visit_fn_output","visit_fn_sig","visit_func_sort","visit_generic_arg","visit_ident","visit_lifetime","visit_literal","visit_poly_func_sort","visit_qpath","visit_refine_arg","visit_refine_param","visit_sort","visit_struct_def","visit_ty","visit_type_binding","visit_variant","visit_variant_ret","walk_bty","walk_constraint","walk_enum_def","walk_expr","walk_field_def","walk_fn_output","walk_fn_sig","walk_func_sort","walk_generic_arg","walk_poly_func_sort","walk_qpath","walk_refine_arg","walk_refine_param","walk_sort","walk_struct_def","walk_ty","walk_type_binding","walk_variant","walk_variant_ret","GlobalEnv","Ident","Symbol","adt_def","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_wf","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","const_by_name","cstore","cstore","ctor_has_equality","defns","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","early_bound_sorts_of","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","field_index","field_sort","filterable","filterable","filterable","fingerprint_style","fingerprint_style","fn_sig","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","func_decl","func_decls","generics_of","get_generic_param","has_equality","hir","index_sorts_of","init","init","init","instantiate_arg_for_constructor","instantiate_arg_for_fun","into","into","into","into_query_param","into_query_param","into_query_param","is_box","is_fn_once_output","is_suggestable","is_suggestable","item_bounds","lookup_extern","lower_fn_sig","lower_late_bound_vars","lower_type_of","make_suggestable","make_suggestable","map","map","map_mut","mir","mk_box","name","new","predicates_of","providers","qualifiers","queries","recover","recover","refine_default","refine_default_generic_args","refine_with_holes","sess","sort_of_bty","sort_of_generic_param","sort_of_path","sort_of_self_ty","sort_of_self_ty_alias","sort_of_ty","span","tcx","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_of","variances_of","variant_sig","variants_of","vzip","vzip","vzip","Guard","InternMap","InternStorage","Internable","Interned","List","SliceInternable","abs","alias","and","app","arc","arc","array","as_any","as_closure","as_generator","as_generator","as_ref","as_tuple","at_base","binary_op","blocked","bool","borrow","borrow","borrow_mut","borrow_mut","char","clone","clone_into","closure","cmp","cmp","collect_and_apply","collect_and_apply","compare","compare","const_def_id","const_op","constant","constant_at","constr","decode","decode","deref","deref","deref","deref_mut","deref_mut","discr","downcast","drop","drop","drop","drop_slow","early_bvar","empty","empty","encode","encode","eq","eq","eq","eq_at","equals","equivalent","equivalent","equivalent","equivalent","equivalent","eta_expand_abs","eta_expand_tuple","evar","exists","exists_with_constr","expect_tuple","ff","fill_item","filterable","filterable","float","fmt","fmt","fmt","fmt","fold_sort","from","from","from","from","from","from","from_arr","from_arr","from_bits","from_cycle_error","from_cycle_error","from_iter","from_slice","from_slice","from_vec","from_vec","fvar","ge","generator","get","global_func","gt","hash","hasher","hole","identity_for_item","impl_internable","impl_slice_internable","implies","indexed","init","init","int","int_max","int_min","into","into","into_iter","into_query_param","into_query_param","is_abs","is_atom","is_binary_op","is_trivially_true","is_true","is_tuple","ite","kind","kvar","late_bvar","le","list_with","list_with","local","lt","map","marker","mk_ref","mk_slice","ne","neg","never","new","new","not","nu","one","opaque","or","param","partial_cmp","partial_cmp","path_proj","projection","ptr","rwlock","select","shards","shift","simplify","singleton","singleton","span","storage","storage","str","subst","to_loc","to_owned","to_path","to_predicate","to_predicate","to_result","to_result","to_sort_list","to_sort_list","to_string","to_var","try_fold_with","try_from","try_from","try_into","try_into","tt","tuple","tuple","tuple_proj","tuple_projs","type_id","type_id","uint","uint_max","unary_op","unblocked","unconstr","uninit","unit","unit","usize","var","visit_with","vzip","vzip","zero","All","FromOpt","Hide","Join","KVarArgs","PPrintCx","Parens","Pretty","SelfOnly","WithCx","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","bindings_chain","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","cx","data","def_id_to_string","default","default_cx","define_scoped","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","format_args_cx","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_opt","from_opt","full_spans","fully_qualified_paths","fully_qualified_paths","hide_binder","hide_binder","hide_refinements","hide_regions","hide_regions","hide_uninit","impl_debug_with_default_cx","init","init","init","init","init","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","iter","join","kvar_args","kvar_args","merge","new","new","new","parens","parenthesize","pprint_with_default_cx","preds_chain","sep","set_opts","show_is_binder","show_is_binder","simplify_exprs","tags","tcx","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","val","vzip","vzip","vzip","vzip","vzip","w","with_cx","Cache","Emitted","Err","Ok","Providers","Queries","QueryErr","QueryResult","UnsupportedType","adt_def","adt_def","adt_def","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_wf","check_wf","check_wf","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","default","default","defns","defns","defns","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","empty_query","filterable","filterable","filterable","fmt","fn_sig","fn_sig","fn_sig","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","func_decls","func_decls","func_decls","generics_of","generics_of","generics_of","init","init","init","into","into","into","into_diagnostic","into_query_param","into_query_param","into_query_param","item_bounds","item_bounds","item_bounds","lower_fn_sig","lower_fn_sig","lower_late_bound_vars","lower_late_bound_vars","lower_type_of","lower_type_of","mir","mir","predicates_of","predicates_of","predicates_of","providers","qualifiers","qualifiers","qualifiers","run_with_cache","to_owned","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_of","type_of","type_of","unsupported","value","variants_of","variants_of","variants_of","vzip","vzip","vzip","def_id","def_span","reason","Abs","Add","Adt","AdtDef","AdtDefData","AdtFlags","Alias","AliasKind","AliasTy","And","App","App","Array","BaseTy","BaseTy","BaseTy","BinOp","BinaryOp","Binder","BitVec","Blocked","Bool","Bool","Bool","Bool","BoundRegion","BoundRegionKind","BoundVar","BoundVariableKind","Box","BrAnon","BrEnv","BrNamed","Char","Clause","ClauseKind","Closure","ClosureKind","ClosureOblig","Const","Const","Const","ConstDefId","Constant","Constant","Constr","Constraint","Constraints","Coroutine","CoroutineWitness","Defn","Defns","Discr","Div","Downcast","ESpan","EVar","EVar","EVarGen","EarlyBinder","EarlyBound","EarlyBoundRegion","Eq","Exists","Expr","Expr","ExprKind","F32","F64","FIRST_VARIANT","Float","Float","FloatTy","Fn","FnMut","FnOnce","FnOutput","FnSig","FnTrait","FnTraitPredicate","Free","FreeRegion","Func","FuncDecl","FuncSort","Ge","GeneratorArgs","GeneratorOblig","GeneratorObligPredicate","GenericArg","GenericArgs","GenericParamDef","GenericParamDefKind","GenericPredicates","Generics","GlobalFunc","Gt","Hole","HoleKind","I128","I16","I32","I64","I8","INNERMOST","INT_TYS","IfThenElse","Iff","Imp","Index","Indexed","InferMode","Int","Int","Int","Int","IntTy","Invariant","Isize","KVar","KVar","KVid","LateBound","Le","Leaf","Lifetime","Lifetime","Loc","Loc","Local","Local","Lt","Map","Mod","Mul","Mut","Mut","Mutability","Name","Ne","Neg","Never","Not","Not","ONE","Opaque","Opaque","OpaqueArgsMap","Opaqueness","Or","OutlivesPredicate","Param","Param","Param","ParamTy","Path","PathProj","PolyFnSig","PolyFuncSort","PolyTy","PolyVariant","PolyVariants","Pred","Pred","Projection","Projection","ProjectionPredicate","Ptr","PtrKind","Qualifier","RawPtr","Real","Real","Ref","Ref","Refine","RefineArgs","RefineParam","Region","Region","ScalarInt","Set","Shr","Slice","Sort","SortCtor","SortVar","SplTy","Str","Sub","Trait","TraitPredicate","TraitRef","Transparent","Tuple","Tuple","Tuple","Tuple","TupleProj","TupleTree","Ty","Ty","TyKind","TyS","Type","Type","TypeOutlives","TypeOutlivesPredicate","U128","U16","U32","U64","U8","UINT_TYS","Uint","Uint","UintTy","UnOp","UnaryOp","Uninit","User","Usize","Var","Var","Var","Var","VariantIdx","VariantSig","ZERO","adt","adt_def","alias","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","and","app","arc","arc","arc","arc","arc","arc","args","args","args","args","args","args","args","args","array","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_bty_skipping_existentials","as_deref","as_deref","as_generator","as_leaf","as_ref","as_ref","as_ref","base","base","bits","blocked","body","bool","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","box_args","char","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closure","collect_all_refine_params","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","constr","data","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","def_id","def_id","def_id","def_id","def_id","default_cx","default_cx","default_infer_mode","defns","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","did","discr","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","ensures","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evars","exists","exists_with_constr","expect","expect_adt","expect_discr","expect_func","expect_leaf","expect_refine","expect_sort","expect_tuple","expect_type","expr","expr","expr","fields","fields","fill_item","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","fingerprint_style","flatten","float","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_param_def","from_ref","fsort","ge","generator","global","gt","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","identity_for_item","idx","iff","imp","index","index","index","index","indexed","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inputs","inputs_and_output","instantiate","instantiate_identity","instantiate_identity","instantiate_identity_into","int","int_invariants","int_max","int_min","intern","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_ty","into_ty","invariants","invariants","invariants","is_array","is_array","is_binder","is_bool","is_bool","is_bool","is_box","is_box","is_box","is_closure","is_closure","is_enum","is_integral","is_integral","is_opaque","is_pred","is_slice","is_slice","is_struct","is_struct","is_struct","is_suggestable","is_trivially_true","is_tuple","is_tuple","is_uninit","is_unit","is_valid_base_arg","is_valid_base_ty","kind","kind","kind","kind","kind","kind","kind","kvid","loc","make_suggestable","map","map","map","mk_ref","mk_slice","mode","name","name","name","name","name","name","ne","never","new","new","new","new","new","new","new","new","new","new","normalize","oblig_def_id","oblig_sig","ok_or_else","opaque","opaque","or","output","output","output","output","output","param","param_at","params","params","params","parent","parent","parent_count","parent_refine_count","pred","predicates","predicates","pretty","private","private","private","private","projection","projection","projection_ty","projections","ptr","rebind","recover","recover","refine_args","refine_count","refine_param_at","refine_params","refining","replace_bound_expr","replace_bound_exprs","replace_bound_exprs_with","replace_bound_vars","requires","requires","resume_ty","ret","ret","rustc","self_args","self_ty","self_ty","size","skip_binder","skip_binder","skip_binders","slice","sort","sort","sort","sort","sort","span","split","split","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","str","subst","super_visit_with","super_visit_with","super_visit_with","term","to_closure_sig","to_closure_sig","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_poly_fn_sig","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","to_string","trait_ref","transpose","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_map","try_map","try_super_fold_with","try_super_fold_with","try_super_fold_with","try_super_fold_with","tuple","tuple","tupled_args","tupled_upvars_ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uint","uint_invariants","uint_max","unblocked","unconstr","uninit","unit","unit","unit","unit","usize","value","value","value","value","variant","variants","vars","vars","vars","vars","vars","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","walk","with_sort","with_sorts","has_default","has_default","name","EVar","EVarCxId","EVarGen","EVarSol","EVarState","EVid","MAX","MAX_AS_U32","NEXT_CTXT_ID","Unified","Unsolved","UnsolvedEvar","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","as_any","as_u32","as_usize","backward_checked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","cx","cx","decode","decode","decode","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","encode","encode","encode","eq","eq","eq","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evar","evars","evars","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fix","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","forward_checked","fresh_in_cx","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_u32","from_u32_unchecked","from_usize","get","hash","hash","hash","id","index","index","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","iter","new","new","new_ctxt","partial_cmp","partial_cmp","partial_cmp","pretty","private","solve","steps_between","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unify","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Abs","Add","And","App","BinOp","BinaryOp","Bool","ConstDefId","Constant","Constant","Div","ESpan","EVar","EarlyBound","Eq","Expr","Expr","ExprKind","ExprS","Free","Ge","GlobalFunc","Gt","Hole","HoleKind","IfThenElse","Iff","Imp","Int","KVar","KVar","KVid","LateBound","Le","Loc","Local","Local","Lt","MAX","MAX","MAX_AS_U32","MAX_AS_U32","Mod","Mul","Name","Ne","Neg","Not","Or","Path","PathProj","Pred","Real","SpanData","Sub","Tuple","TupleProj","UnOp","UnaryOp","Var","Var","Var","abs","add","add","add","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","and","app","arc","args","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_tuple","as_u32","as_u32","as_usize","as_usize","at_base","backward_checked","backward_checked","base","base","binary_op","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","const_def_id","const_op","constant","constant_at","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","div","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","early_bvar","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_at","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","espan","eta_expand_abs","eta_expand_tuple","evar","expect_tuple","ff","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold_sort","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_bits","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_place","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","fvar","ge","global_func","gt","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hi","hole","impl_ops","implies","index","index","index","index","init","init","init","init","init","init","init","init","init","init","init","int_max","int_min","intern","intern_at","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_abs","is_atom","is_binary_op","is_trivially_true","is_true","is_tuple","ite","kind","kind","kvar","kvid","late_bvar","le","lo","loc","local","lt","mul","mul","ne","neg","new","new","new","new","new","new","not","nu","one","or","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","path_proj","pretty","private","private","projection","projection","scope","self_args","self_args","simplify","span","span","span","span","steps_between","steps_between","storage","storage","storage","sub","sub","super_visit_with","to_expr","to_expr","to_expr","to_loc","to_loc","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_path","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_var","try_fold_with","try_fold_with","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_super_fold_with","tt","tuple","tuple_proj","tuple_projs","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uint_max","unary_op","unit","var","visit_with","visit_with","visit_with","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_base","zero","AddSub","And","Cmp","Iff","Imp","MulDiv","Or","Precedence","as_any","borrow","borrow_mut","cmp","collect_and_apply","compare","compare","deref","deref_mut","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","from","from","from_cycle_error","init","into","into_query_param","is_associative","partial_cmp","precedence","to_predicate","to_result","try_from","try_into","type_id","vzip","BreakTy","Error","FallibleTypeFolder","TypeFoldable","TypeFolder","TypeSuperFoldable","TypeSuperVisitable","TypeVisitable","TypeVisitor","fold_binder","fold_bty","fold_expr","fold_region","fold_sort","fold_ty","fold_with","fvars","has_escaping_bvars","normalize","normalize_projections","opaque_refine_args","replace_evars","replace_holes","shift_in_escaping","shift_out_escaping","super_fold_with","super_visit_with","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_fold_with","try_super_fold_with","visit_binder","visit_bty","visit_expr","visit_fvar","visit_ty","visit_with","with_holes","BaseSpanner","Defns","Normalizer","app","at_base","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","default","defn_deps","defns","defs","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","espan","filterable","filterable","filterable","fold_expr","fold_expr","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","func_defn","init","init","init","into","into","into","into_query_param","into_query_param","into_query_param","new","new","new","normalize","sorted_defns","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_fold_binder","try_fold_binder","try_fold_bty","try_fold_bty","try_fold_expr","try_fold_expr","try_fold_region","try_fold_region","try_fold_sort","try_fold_sort","try_fold_ty","try_fold_ty","try_from","try_from","try_from","try_into","try_into","try_into","tuple_proj","type_id","type_id","type_id","vzip","vzip","vzip","Candidate","Normalizer","ParamEnv","TVarSubst","TraitDef","UserDefinedImpl","args","assemble_candidates_from_impls","assemble_candidates_from_param_env","assemble_candidates_from_predicates","assemble_candidates_from_trait_def","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","confirm_candidate","def_id","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","filterable","filterable","filterable","fmt","fmt","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","genv","infer_from_arg","infer_from_region","infer_from_ty","init","init","init","insert_early_bound_region","insert_param_ty","into","into","into","into_query_param","into_query_param","into_query_param","into_rustc_alias_kind","into_rustc_alias_ty","into_rustc_bound_region","into_rustc_bty","into_rustc_generic_arg","into_rustc_generic_args","into_rustc_region","into_rustc_ty","mk_subst","new","normalize_projection_ty","param_env","rustc_param_env","selcx","tcx","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_fold_ty","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","Refiner","adt_def","as_default","borrow","borrow_mut","collect_and_apply","default","deref","deref_mut","drop","filterable","from","from","from_cycle_error","generics","generics_of","genv","init","into","into_query_param","iter_with_generic_params","iter_with_generics_of","new","param","refine","refine_alias_kind","refine_alias_ty","refine_args_of","refine_binders","refine_bound_variables","refine_clause","refine_clauses","refine_default","refine_fn_trait_pred","refine_generic_arg","refine_generic_arg_raw","refine_generic_predicates","refine_generics","refine_poly_fn_sig","refine_poly_ty","refine_trait_ref","refine_ty","refine_variant_def","to_predicate","to_result","try_from","try_into","type_id","vzip","with_holes","BoundVarReplacer","BoundVarReplacerDelegate","EVarSubstFolder","FnMutDelegate","GenericsSubstFolder","RegionSubst","apply","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bty_for_param","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","current_index","current_index","delegate","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","evars","expr_for_param","exprs","filterable","filterable","filterable","filterable","filterable","fmt","fold_binder","fold_binder","fold_expr","fold_expr","fold_expr","fold_region","fold_region","fold_sort","fold_ty","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generics","infer_from_bty","infer_from_region","infer_from_ty","init","init","init","init","init","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","map","new","new","new","new","refine","region_for_param","regions","replace_expr","replace_expr","replace_region","replace_region","sort_for_param","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_fold_binder","try_fold_binder","try_fold_binder","try_fold_bty","try_fold_bty","try_fold_bty","try_fold_expr","try_fold_expr","try_fold_expr","try_fold_region","try_fold_region","try_fold_region","try_fold_sort","try_fold_sort","try_fold_sort","try_fold_ty","try_fold_ty","try_fold_ty","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","ty_for_param","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","lowering","mir","ty","LoweringCtxt","UnsupportedReason","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","descr","drop","drop","errors","filterable","filterable","fmt","from","from","from","from","from_cycle_error","from_cycle_error","init","init","into","into","into_diagnostic_arg","into_query_param","into_query_param","lower_adt_def","lower_aggregate_kind","lower_alias_kind","lower_assert_msg","lower_basic_block_data","lower_bin_op","lower_binder","lower_borrow_kind","lower_bound_region","lower_bound_vars","lower_cast_kind","lower_clause","lower_const","lower_constant","lower_fake_read_cause","lower_field","lower_fn_sig","lower_generic_arg","lower_generic_args","lower_generic_param_def","lower_generic_predicates","lower_generics","lower_item_bounds","lower_local_decl","lower_mir_body","lower_operand","lower_place","lower_pointer_coercion","lower_region","lower_rvalue","lower_statement","lower_terminator","lower_ty","lower_type_outlives","lower_variant","new","param_env","resolve_call","rustc_mir","selcx","sess","tcx","to_owned","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","UnsupportedGenericBound","UnsupportedLocalDecl","UnsupportedMir","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedGenericBound","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedLocalDecl","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedMir","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","filterable","filterable","filterable","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","kind","new","new","new","reason","reason","span","span","span","statement","terminator","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","ty","type_id","type_id","type_id","vzip","vzip","vzip","Add","Adt","Aggregate","AggregateKind","Arg","Array","AscribeUserType","Assert","AssertKind","Assign","BasicBlock","BasicBlockData","BinOp","BinaryOp","BitAnd","BitOr","Bivariant","Body","Bool","BorrowData","BorrowKind","BoundsCheck","Call","CallArgs","Cast","CastKind","Char","CheckedBinaryOp","Cleanup","Closure","Constant","Constant","Continue","Contravariant","Copy","Coroutine","CoroutineDrop","Covariant","Deref","Discriminant","Div","DivisionByZero","Downcast","Drop","Eq","FIRST_VARIANT","FakeRead","FakeReadCause","FalseEdge","FalseUnwind","Field","FieldIdx","Float","FloatToInt","ForLet","ForMatchedPlace","Ge","Goto","Gt","Index","Instance","Int","IntToFloat","IntToInt","Invariant","Le","Len","Local","LocalDecl","LocalDecls","LocalKind","Location","Lt","Move","Mul","Mut","MutToConstPointer","Ne","Neg","Nop","Not","Opaque","Operand","Overflow","Place","PlaceElem","PlaceMention","PlaceTy","Pointer","PointerCast","PtrToPtr","RETURN","RETURN_PLACE","Ref","Rem","RemainderByZero","Return","ReturnPointer","Rvalue","START_BLOCK","SetDiscriminant","Shared","Shl","Shr","SourceInfo","Statement","StatementKind","Str","Sub","SwitchInt","SwitchTargets","Temp","Terminate","Terminator","TerminatorKind","Tuple","Uint","UnOp","UnaryOp","Unit","Unreachable","Unreachable","Unsize","UnwindAction","UnwindResume","Use","Variance","VariantIdx","Yield","_marker","activation_location","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","args","args_iter","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_field","assigned_place","basic_blocks","behind_raw_ptr","block","body_with_facts","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_data","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrowed_place","calculate_borrows_out_of_scope_at_location","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","decode","decode","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dominators","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fake_predecessors","field_ty","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_ty","hash","hash","hash","impl_f","infcx","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_cleanup","is_join_point","is_nop","is_return","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","kind","kind","kind","local","local_decls","local_kind","lowered","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","mk_fake_predecessors","new","new","opt_bb_to_str","orig","private","private","private","private","projection","projection_ty","raw","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","region","region_inference_context","replicate_infer_ctxt","reserve_location","resume_local","rustc_body","scope","source_info","source_info","source_info","span","span","statement_index","statements","storage","targets","terminator","terminator_loc","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","ty","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","variant_index","vars_and_temps_iter","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","kind","args","cond","destination","discr","drop","expected","func","generic_args","imaginary_target","msg","place","real_target","real_target","resolved_call","resume","resume_arg","target","target","target","target","targets","unwind","unwind","unwind","value","Adt","AdtDef","AdtDefData","Alias","AliasKind","AliasTy","Array","Binder","Bool","BoundRegion","BoundRegionKind","BoundVar","BoundVariableKind","BrAnon","BrEnv","BrNamed","Char","Clause","ClauseKind","Closure","ClosureArgs","ClosureArgsParts","Const","Const","Const","Coroutine","CoroutineWitness","DebruijnIndex","EarlyBinder","EarlyBoundRegion","F32","F64","FieldDef","Float","FloatTy","FnPtr","FnSig","FreeRegion","GeneratorArgs","GeneratorArgsParts","GenericArg","GenericArgs","GenericParamDef","GenericParamDefKind","GenericPredicates","Generics","I128","I16","I32","I64","I8","Int","IntTy","Isize","Lifetime","Lifetime","Mut","Mutability","Never","Not","Opaque","OutlivesPredicate","Param","Param","ParamTy","PolyFnSig","Projection","Projection","ProjectionPredicate","RawPtr","ReEarlyBound","ReFree","ReLateBound","ReStatic","ReVar","Ref","Region","Region","RegionVid","ScalarInt","Slice","Str","Trait","TraitPredicate","TraitRef","Tuple","Ty","Ty","TyKind","TyS","Type","TypeOutlives","TypeOutlivesPredicate","U128","U16","U32","U64","U8","Uint","UintTy","Usize","Value","ValueConst","VariantDef","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","arc","args","args","args","args","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_closure","as_generator","as_ref","bind_with_vars","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bound_region","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closure_kind_ty","closure_sig_as_fn_ptr_ty","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","data","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","def_id","def_id","def_id","def_id","def_id","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","did","did","did","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expect_adt","expect_const","expect_lifetime","expect_type","fields","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","flags","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","index","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inputs","inputs_and_output","instantiate_identity","intern","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_box","is_box","is_enum","is_mut_ref","is_struct","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_union","kind","kind","kind","kind","kind","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","mk_adt","mk_alias","mk_array","mk_bool","mk_char","mk_closure","mk_coroutine","mk_float","mk_fn_ptr","mk_generator_witness","mk_int","mk_never","mk_param","mk_raw_ptr","mk_ref","mk_slice","mk_str","mk_tuple","mk_uint","mk_usize","name","name","name","name","name","new","new","new","non_enum_variant","orig","output","params","parent","parent","parent_args","parent_args","parent_count","predicates","private","private","private","projection_ty","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","region_to_string","resume_ty","return_ty","scope","self_ty","self_ty","size","skip_binder","skip_binder","split","split","storage","storage","storage","storage","storage","storage","storage","subst","subst","subst","subst","subst","subst","subst","subst","term","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","trait_ref","try_fold_with","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tuple_fields","tupled_upvars_ty","tupled_upvars_ty","tupled_upvars_ty","tupled_upvars_ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","upvar_tys","upvar_tys","val","var","variant","variants","variants","vars","visit_with","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","witness","yield_ty","has_default","has_default","Subst","subst"],"q":[[0,"flux_middle"],[23,"flux_middle::const_eval"],[28,"flux_middle::cstore"],[35,"flux_middle::fhir"],[2193,"flux_middle::fhir::GenericParamKind"],[2194,"flux_middle::fhir::RefineArg"],[2196,"flux_middle::fhir::Res"],[2199,"flux_middle::fhir::SortCtor"],[2200,"flux_middle::fhir::StructKind"],[2201,"flux_middle::fhir::lift"],[2264,"flux_middle::fhir::lift::errors"],[2290,"flux_middle::fhir::visit"],[2332,"flux_middle::global_env"],[2488,"flux_middle::intern"],[2699,"flux_middle::pretty"],[2858,"flux_middle::queries"],[2979,"flux_middle::queries::QueryErr"],[2982,"flux_middle::rty"],[5057,"flux_middle::rty::GenericParamDefKind"],[5059,"flux_middle::rty::SortCtor"],[5060,"flux_middle::rty::evars"],[5310,"flux_middle::rty::expr"],[5941,"flux_middle::rty::expr::pretty"],[5982,"flux_middle::rty::fold"],[6024,"flux_middle::rty::normalize"],[6112,"flux_middle::rty::projections"],[6206,"flux_middle::rty::refining"],[6256,"flux_middle::rty::subst"],[6411,"flux_middle::rustc"],[6414,"flux_middle::rustc::lowering"],[6503,"flux_middle::rustc::lowering::errors"],[6583,"flux_middle::rustc::mir"],[7722,"flux_middle::rustc::mir::BorrowKind"],[7723,"flux_middle::rustc::mir::TerminatorKind"],[7748,"flux_middle::rustc::ty"],[9401,"flux_middle::rustc::ty::GenericParamDefKind"],[9403,"flux_middle::rustc::ty::subst"],[9405,"rustc_middle::ty::context"],[9406,"rustc_middle::ty"],[9407,"core::option"],[9408,"rustc_span::def_id"],[9409,"rustc_span::def_id"],[9410,"rustc_middle::arena"],[9411,"core::iter::traits::collect"],[9412,"rustc_hir"],[9413,"core::any"],[9414,"core::cmp"],[9415,"alloc::vec"],[9416,"core::ops::function"],[9417,"core::borrow"],[9418,"rustc_serialize::serialize"],[9419,"rustc_type_ir::codec"],[9420,"rustc_serialize::serialize"],[9421,"rustc_query_system::dep_graph"],[9422,"core::fmt"],[9423,"core::fmt"],[9424,"rustc_hir::hir_id"],[9425,"rustc_query_system::query::job"],[9426,"rustc_span"],[9427,"core::hash"],[9428,"rustc_data_structures::unord"],[9429,"rustc_errors::diagnostic"],[9430,"rustc_middle::middle::resolve_bound_vars"],[9431,"core::convert"],[9432,"rustc_span::span_encoding"],[9433,"rustc_query_system::dep_graph::dep_node"],[9434,"alloc::string"],[9435,"rustc_data_structures::fingerprint"],[9436,"rustc_hir::def"],[9437,"core::any"],[9438,"rustc_hir::hir"],[9439,"rustc_hir::hir"],[9440,"rustc_hir::hir"],[9441,"rustc_errors::diagnostic_builder"],[9442,"rustc_middle::hir::map"],[9443,"alloc::boxed"],[9444,"core::marker"],[9445,"core::cmp"],[9446,"alloc::sync"],[9447,"rustc_hash"],[9448,"core::hash"],[9449,"core::cmp"],[9450,"hashbrown::map"],[9451,"dashmap::lock"],[9452,"core::ops::control_flow"],[9453,"toml::value"],[9454,"rustc_hash"],[9455,"core::hash"],[9456,"core::iter::traits::collect"],[9457,"rustc_hash"],[9458,"rustc_middle::ty::generic_args"],[9459,"rustc_middle::ty::sty"],[9460,"rustc_type_ir::ty_kind"],[9461,"rustc_middle::ty::sty"],[9462,"rustc_middle::ty"],[9463,"rustc_middle::mir::syntax"],[9464,"rustc_middle::mir::syntax"],[9465,"rustc_middle::mir::syntax"],[9466,"rustc_middle::mir::syntax"],[9467,"rustc_middle::mir::syntax"],[9468,"rustc_middle::mir::syntax"],[9469,"rustc_middle::mir::terminator"],[9470,"rustc_middle::ty"],[9471,"rustc_borrowck::dataflow"],[9472,"rustc_data_structures::fx"],[9473,"rustc_data_structures::graph::dominators"],[9474,"rustc_middle::mir"],[9475,"rustc_borrowck::region_infer"]],"d":["Raw content of Fluent resource for this crate, generated …","","","","","","","","","","","","","","","Flux High-Level Intermediate Repesentation","","Global Arc-based object interning infrastructure.","","","Defines how flux represents refinement types internally. …","This module contains simplified versions of some …","","","","","","","","","","","","","","","","","Sort constructor application (e.g. Set<int> or …","","","","","An implicitly scoped parameter declared with @a syntax","These are types of things that may be refined with indices …","","A type that parses as a BaseTy but was written without …","","","","","","","","","","","An implicitly scoped parameter declared with x: T syntax","","","Constrained types {T | p} are like existentials but …","","","User-defined functions with a body definition","","","","","Generate a fresh evar for the parameter and solve it via …","","","A sort that couldn’t be generated because of an error.","","A parameter declared in an explicit scope","","","","A unique identifier for a node in the AST. Like HirId it …","","","An item without a corresponding Rust definition, e.g., a …","","","","Owner version of FluxLocalDefId","","","","","","","","","","","","","","","","","A global function symbol (including possibly theory …","","","A lifetime hole created during desugaring.","","","","","","Sort inference variable generated for a Sort::Wildcard …","Inference mode for parameter at function calls","","","","","An ItemLocalId uniquely identifies something within a …","","","Generate a fresh kvar and let fixpoint infer it. This mode …","","","Our surface syntax doesn’t have lifetimes. To deal with …","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","A map between rust definitions and flux annotations in …","","","","","","","","","","","","","","","","","","","","The sort associated to a type variable","How the declared parameter in the surface syntax. This is …","","","","","An implicitly scoped parameter declared with #a syntax","A predicate that needs to hold","Not represented directly in the AST; referred to by name …","","","","","","","","","","","A record sort corresponds to the sort associated with a …","","","","Information about the refinement parameters associated …","","A resolved lifetime created during lifting.","","An item with a corresponding Rust definition, e.g., …","","","","","","","","","","","A Sort vvariable id","","","","","","","","Theory symbols “interpreted” by the SMT solver: Symbol …","","","","","","","","A type constraint on a location","","","","User-defined uninterpreted functions with no definition","","","","","User defined opaque sort","sort variable","","A function coming from a refinement parameter.","","The source-order index of a variant in a type.","","","","","A sort that needs to be inferred","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","example: vec![(x: StrRef(l))]","","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of early bound parameters","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","Creates a new index from a given usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a usize.","","","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","Index parameters indexed by their name and in the same …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","inputs and output in order","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the sort is Bool.","","","","Whether the sort is a function with return sort bool","","Returns true if the sort is Wildcard.","","","","","","","","","","","","“Lift” HIR types into FHIR types.","Whether the sig was lifted from a hir signature","Whether this alias was lifted from a hir alias","Whether this field was lifted from a hir field","Whether this variant was lifted from a hir variant","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","example: vec![(n: Int), (l: Loc)]","","","","","","","","","","","","","","","","","","","","","","","","example: vec![(0 <= n), (l: i32)]","","","","","","","","","","","","Tracks the mapping from bound var to generic def ids. e.g. …","Sorts of both early bound and index parameters. Early …","","","","","","","","","","","","","","","","","","","","","","replace all “sort-vars” (indexed 0…n-1) with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether this arg was used as a binder in the surface …","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","Returns the argument unchanged.","","","HACK(nilehmann) do not use this function. See lift_self_ty.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","HACK(nilehmann) this is used during annot check to allow …","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An interned string.","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","For now all sort constructors have equality if all the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Whether values of this sort can be compared for equality.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","An expression is an atom if it is “self-delimiting”, …","","Simple syntactic check to see if the expression is a …","Whether the expression is literally the constant true.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Simplify the expression by removing double negations, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","Contains the success value","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Lambda abstractions. They are purely syntactic and we don…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An anonymous region parameter for a given fn (&T)","Anonymous region for the implicit env pointer parameter to …","Named region parameters for functions (a in &’a T)","","","","","Represents the various closure traits in the language. This","","","","","","","","","","","","","","","This is a bit of a hack. We use this type internally to …","","","","","","","","","","","","","A hole used as a refinement argument or index. It will be …","","","","Equivalent to VariantIdx(0).","","","","","","","","","","","","","","","","","","","","","","","","","","","","A hole is an expression that must be inferred either …","The position where a hole appears. This determines how it …","","","","","","","","","","","","","","","","","","","","","In theory a kvar is just an unknown predicate that can use …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Option-like enum to explicitly mark that we don’t have …","","A: B","","","","","","","","","","","","A hole in predicate position (e.g., the predicate in a …","","","","","","","","","","","","","","","","","","The raw bytes of a simple value.","","","","","","SortVar are used for polymorphic sorts (Set, Map etc.) and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The source-order index of a variant in a type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of all arguments with the self arguments at the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The span for the (base) call-site for def-expanded spans","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterate and collect all refinement parameters in this item …","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This modules folows the implementation of folding in …","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See BigInt::int_max","See BigInt::int_min","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the sort is Bool.","Whether the type is a bool","","","","","","","","Whether the type is an int or a uint","","","Whether the sort is a function with return sort bool","","","","","","","See Expr::is_trivially_true","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Holds the refinement-arguments for opaque-types; empty for …","","","","Refining is the process of generating a refined version of …","","","","","","","","","","","The number of arguments consider to be self arguments.","This method work only with associated type projections …","","","","","","","","","","","","The top-level span information","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See BigInt::uint_max","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An existential varriable is identified by a context and an …","","","","","Existential variable id","Maximum value the index can take.","Maximum value the index can take, as a u32.","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Generates an evar guaranteed to be fresh in the provided …","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","","","","","","Extracts the value of this index as a usize.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Generates a context id guaranteed to be globally fresh. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Lambda abstractions. They are purely syntactic and we don…","","","","","","","","","","","","","","","","A hole used as a refinement argument or index. It will be …","","","","","","","A hole is an expression that must be inferred either …","The position where a hole appears. This determines how it …","","","","","In theory a kvar is just an unknown predicate that can use …","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","","","","","","","","","","A hole in predicate position (e.g., the predicate in a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of all arguments with the self arguments at the …","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","","","","","The span for the (base) call-site for def-expanded spans","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a usize.","","","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","An expression is an atom if it is “self-delimiting”, …","","Simple syntactic check to see if the expression is a …","Whether the expression is literally the constant true.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of arguments consider to be self arguments.","Simplify the expression by removing double negations, …","","","","The top-level span information","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the set of all free variables. For example, …","","Normalize expressions by applying beta reductions for …","","Returns the set of all opaque type aliases def ids","","Replaces all holes with the result of calling a closure. …","","","","","","","","","","","","","","","","","","","Turns each TyKind::Indexed into a TyKind::Exists with a …","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Returns","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Substitution for late bound variables","","Substitution for existential variables","","Substitution for generics, i.e., early bound types, …","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","We leave this as None if we only want to substitute the …","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A simplified version of rust mir.","A simplified version of rust types.","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Function argument.","","","","","","A node in the MIR control-flow graph.","","","","","","","","","","","","","","","","We only support opaque chars, so no data stored here for …","","Cleanups to be done.","","","","No action is to be taken. Continue unwinding.","","","","","","","","","","","","","Equivalent to VariantIdx(0).","","","","","","The source-order index of a field in a variant.","","","","","","","","","An Instance is the resolved call-target at a particular …","","","","","","","","","","Classifies locals into categories. See Body::local_kind.","Location represents the position of the start of the …","","","","","","","The - operator for negation","","The ! operator for logical inversion","General catch-all for constants of a given Ty","","","","","","","","","","","","","","","","Location of function’s return value.","","","","","","","Grouped information about the source code origin of a MIR …","","","We only support opaque string slices, so no data stored …","","","","User-declared variable binding or compiler-introduced …","Terminates the execution if unwind happens.","","","","","","","","","Triggers undefined behavior if unwind happens.","","Action to be taken when a stack unwind happens.","","","","The source-order index of a variant in a type.","","","Location where the borrow is activated.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Place to which the borrow was stored","","","The block that the location is within.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Place from which we are borrowing","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See mk_fake_predecessors","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","During borrow checking, rustc generates fresh region …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","What kind of borrow this is","the “root” of the place, e.g. _1 in *_1.f.g.h","","","","","","","","","","","","","The FalseEdge/imaginary_target edges mess up the …","","","","","","","","","path taken to “get” the place e.g. *.f.g.h in *_1.f.g.h…","","","","","","","","","","","","","","The region for which this borrow is live","","Replicate the InferCtxt used for mir typeck by generating …","Location where the borrow reservation starts. In many …","see (NOTE:YIELD)","","The source scope, keeping track of which bindings can be …","","","","","The source span for the AST pertaining to this MIR entity.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Downcast to a particular variant of an enum or a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An anonymous region parameter for a given fn (&T)","Anonymous region for the implicit env pointer parameter to …","Named region parameters for functions (a in &’a T)","","","","","","","","","","","","A De Bruijn index is a standard means of representing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A: B","","","","","","","","","","","","","","","","","A region (lifetime) variable ID.","The raw bytes of a simple value.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This method work only with associated type projections …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,411,411,411,411,47,192,192,56,60,43,39,0,54,0,36,39,0,0,60,56,412,56,62,0,412,0,54,60,0,39,0,52,64,0,91,192,60,55,0,192,56,39,54,0,47,0,0,0,412,44,45,0,0,0,0,0,0,0,56,0,0,0,192,0,0,0,0,0,0,0,61,192,39,41,0,60,192,192,39,56,0,67,412,56,62,0,0,0,55,95,192,0,36,51,0,60,56,0,0,192,18,20,21,18,20,21,0,30,38,192,192,108,43,0,0,0,192,237,39,38,237,108,99,39,0,192,56,0,0,48,0,0,54,87,0,52,67,39,0,0,91,39,56,62,47,56,39,0,0,0,0,41,49,44,45,52,52,30,43,48,0,0,0,0,0,36,412,0,0,192,0,62,64,95,0,99,39,0,0,0,87,36,51,0,64,412,0,60,56,30,56,60,61,0,0,0,0,0,0,56,18,20,21,22,25,38,38,41,41,43,43,44,44,45,45,46,46,18,18,412,412,52,52,54,54,55,55,20,20,62,62,63,63,21,21,64,64,38,38,41,41,43,43,44,44,45,45,46,46,18,18,412,412,52,52,54,54,55,55,20,20,62,62,63,63,21,21,64,64,83,90,33,76,30,43,44,45,46,18,412,52,55,20,30,56,57,58,21,64,32,34,18,20,21,18,20,21,18,20,21,120,413,33,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,96,94,94,97,103,414,36,37,38,32,39,40,41,42,43,44,45,46,18,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,64,36,37,38,32,39,40,41,42,43,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,64,43,18,20,21,66,66,66,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,43,43,18,18,20,20,21,21,22,22,22,70,69,18,55,20,30,56,57,58,21,13,64,89,37,100,102,13,22,56,22,22,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,52,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,13,25,13,18,55,20,30,56,57,58,21,13,64,86,22,22,43,44,45,46,18,52,55,20,30,56,57,58,21,64,43,44,45,46,18,412,52,55,20,30,56,57,58,21,64,43,43,43,43,43,44,44,44,44,44,45,45,45,45,45,46,46,46,46,46,18,18,18,18,18,412,412,412,412,412,52,52,52,52,52,55,55,55,55,55,20,20,20,20,20,30,30,30,30,30,56,56,56,56,56,57,57,57,57,57,58,58,58,58,58,21,21,21,21,21,64,64,64,64,64,51,90,76,22,61,53,59,13,13,102,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,412,22,83,86,87,88,89,36,37,90,91,92,93,94,95,96,38,97,25,98,99,100,101,102,103,104,32,41,42,67,69,44,45,46,18,47,34,49,33,50,51,52,53,54,55,20,30,30,56,56,57,57,58,58,59,61,62,63,21,13,106,64,76,22,22,104,22,22,18,20,21,83,83,86,86,87,87,66,66,70,70,88,88,89,89,36,36,37,37,90,90,91,91,92,92,93,93,94,94,95,95,96,96,38,38,97,97,22,22,25,25,98,98,99,99,100,100,101,101,102,102,103,103,104,104,32,32,39,39,40,40,41,41,42,42,43,43,43,67,67,69,69,44,44,44,44,45,45,45,46,46,18,18,18,18,47,47,412,412,34,34,34,48,48,49,49,33,33,50,50,51,51,52,52,53,53,54,54,55,55,20,20,20,20,30,30,56,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63,21,21,21,21,13,13,106,106,64,64,76,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,20,18,20,21,18,20,21,18,20,21,58,22,22,22,22,69,22,22,22,22,22,22,22,22,88,22,22,22,90,43,44,45,46,18,55,20,30,56,57,58,21,64,50,53,103,415,18,18,20,20,20,21,21,25,13,13,53,54,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,416,57,57,70,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,58,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,32,33,56,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,98,101,13,34,56,54,56,98,56,22,56,89,98,32,34,53,59,106,414,66,66,66,0,83,25,100,102,46,56,415,40,53,113,90,92,63,106,76,66,22,18,20,57,58,63,21,13,66,66,66,22,104,57,83,66,70,69,46,25,98,101,83,86,88,98,101,102,58,76,43,18,20,21,93,22,104,177,18,20,21,22,412,33,22,22,83,33,86,102,56,58,53,106,76,22,22,22,13,13,63,49,63,83,113,92,94,25,102,32,42,34,33,59,13,18,20,21,55,22,22,56,63,37,20,50,412,412,36,37,38,32,39,40,41,42,43,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,64,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,30,56,57,58,96,96,13,22,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,25,100,40,22,22,66,66,66,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,56,37,42,101,0,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,47,412,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,88,417,418,418,419,419,420,421,422,0,126,126,126,126,126,126,126,126,0,126,126,126,126,126,126,126,126,126,126,126,126,126,126,0,126,126,126,126,126,126,0,126,126,126,126,126,126,126,126,126,126,126,0,0,126,0,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,0,0,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,0,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,423,423,72,72,423,423,72,72,423,72,153,423,72,153,423,72,153,423,72,153,423,72,72,72,153,153,153,153,153,153,423,72,153,423,72,153,423,72,153,423,72,423,423,423,423,423,72,72,72,72,72,153,153,153,423,72,423,72,153,153,153,423,423,72,72,153,423,72,153,153,153,153,153,153,153,153,423,72,153,153,153,423,72,153,423,72,153,153,423,72,153,153,153,153,153,423,72,153,153,153,153,153,423,153,153,153,153,153,423,72,153,153,153,153,153,153,153,153,153,153,423,153,423,72,423,72,423,72,153,423,72,153,423,72,423,72,153,423,72,153,423,72,153,423,72,153,153,153,153,153,423,72,0,0,0,0,0,0,0,185,185,185,185,185,158,185,185,185,185,185,185,185,185,185,185,185,185,121,185,121,185,185,185,185,185,158,185,121,185,185,185,185,185,185,185,185,185,185,185,121,185,121,185,185,185,185,121,185,185,185,158,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,121,185,185,185,185,158,185,185,185,185,185,121,121,185,158,185,185,121,158,185,158,185,158,185,185,185,121,185,185,185,424,185,185,0,0,185,185,185,121,185,185,185,185,121,185,185,121,185,185,185,185,185,185,185,185,185,185,185,185,158,185,185,121,425,185,185,185,185,185,185,121,185,185,185,185,185,185,185,158,185,185,185,425,185,424,424,185,185,158,185,189,426,185,158,185,185,185,185,121,185,121,185,158,185,185,158,185,121,185,121,185,185,185,185,185,185,121,185,185,185,185,185,185,185,185,185,185,158,185,121,185,242,0,242,0,0,0,0,0,242,0,242,242,242,242,202,202,243,244,245,242,202,243,244,245,242,242,242,202,243,244,245,242,243,243,0,202,203,0,202,243,244,245,242,202,243,244,245,242,202,243,244,245,242,202,243,244,245,242,203,243,244,244,245,0,202,202,243,243,244,244,245,245,242,242,202,243,244,245,242,427,242,202,202,202,202,202,202,202,202,202,0,202,243,244,245,242,202,243,244,245,242,202,243,244,245,242,244,0,202,202,202,243,244,245,0,245,0,202,244,0,202,202,202,202,202,242,202,243,244,245,242,202,243,244,245,242,202,243,244,245,242,202,243,244,245,242,202,243,244,245,242,245,202,243,244,245,242,0,0,0,248,154,154,0,0,0,0,248,247,173,247,173,248,247,428,173,248,247,247,173,247,248,248,173,248,247,173,247,247,173,247,173,248,247,173,248,247,173,248,247,0,173,248,247,248,247,173,247,173,173,248,248,248,247,247,173,248,247,247,173,247,247,173,247,173,248,247,173,248,247,248,173,248,247,247,173,247,247,247,247,247,247,247,247,247,247,173,247,247,247,173,247,0,248,173,248,247,173,248,247,173,248,247,173,248,247,173,248,247,247,173,247,248,428,247,173,247,173,248,247,429,429,429,215,192,199,0,0,0,275,0,0,192,215,197,199,0,261,163,0,215,0,197,275,6,197,199,0,0,0,0,0,224,408,408,408,199,0,0,199,0,0,0,261,163,215,0,215,275,0,0,199,199,0,0,275,192,275,0,0,233,0,0,233,0,192,275,0,212,0,201,201,0,199,0,0,322,322,322,0,0,262,0,233,0,197,0,0,192,0,262,0,0,0,0,0,0,0,215,192,215,0,214,214,214,214,214,0,0,215,192,192,0,275,0,6,197,199,0,0,0,214,0,215,0,233,192,259,261,163,0,197,215,231,192,256,192,192,108,224,0,0,192,237,199,237,108,6,17,181,0,0,192,0,197,275,199,0,0,215,0,0,0,0,0,212,274,262,181,0,275,0,0,199,6,197,199,0,232,0,0,0,232,0,256,224,199,0,0,0,261,199,192,262,0,0,17,215,197,259,199,215,0,0,163,0,0,261,274,262,0,236,236,236,236,236,0,199,0,0,0,215,275,256,236,0,215,231,197,0,0,6,199,272,170,192,192,237,237,6,6,256,256,224,224,181,181,407,407,322,322,192,192,237,237,6,6,256,256,224,224,181,181,407,407,322,322,6,197,179,178,285,170,220,175,257,188,216,264,267,272,257,182,170,192,237,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,407,322,238,17,12,175,259,17,180,12,300,183,407,170,251,170,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,0,170,192,237,6,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,192,237,6,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,407,322,170,159,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,407,407,322,322,170,2,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,161,264,267,182,309,257,238,197,157,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,10,170,170,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,273,192,237,6,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,192,237,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,407,322,192,192,192,192,192,237,237,237,237,237,6,6,6,6,6,260,260,260,260,260,161,161,161,161,161,261,261,261,261,261,164,164,164,164,164,262,262,262,262,262,263,263,263,263,263,264,264,264,264,264,265,265,265,265,265,266,266,266,266,266,267,267,267,267,267,256,256,256,256,256,268,268,268,268,268,197,197,197,197,197,269,269,269,269,269,270,270,270,270,270,10,10,10,10,10,277,277,277,277,277,271,271,271,271,271,272,272,272,272,272,232,232,232,232,232,180,180,180,180,180,259,259,259,259,259,274,274,274,274,274,238,238,238,238,238,275,275,275,275,275,224,224,224,224,224,213,213,213,213,213,199,199,199,199,199,182,182,182,182,182,181,181,181,181,181,163,163,163,163,163,407,407,407,407,407,322,322,322,322,322,0,170,170,17,238,238,197,259,232,232,238,163,0,303,213,272,272,175,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,407,322,197,170,192,192,192,237,237,237,6,6,11,159,260,161,261,172,164,262,262,263,264,265,266,267,256,268,197,197,269,269,270,270,10,277,17,271,272,272,232,232,180,180,180,180,12,259,257,257,273,274,274,251,249,280,238,238,275,224,224,213,213,199,199,182,181,181,163,163,0,192,192,237,237,6,6,6,6,6,6,6,303,303,188,188,159,159,260,260,161,161,261,261,172,172,164,164,262,262,263,263,264,264,265,265,266,266,267,267,256,256,268,268,268,197,197,269,269,270,270,10,10,277,277,17,17,271,271,272,272,232,232,180,180,12,12,259,259,257,257,273,273,274,274,251,251,249,249,280,280,238,238,275,275,224,224,213,213,213,213,213,199,199,182,182,181,181,163,163,407,407,322,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,163,224,270,6,170,251,6,192,237,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,175,272,6,6,161,268,221,309,170,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,269,269,12,12,12,12,170,0,6,6,275,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,180,199,10,199,277,238,199,213,197,238,199,10,238,199,238,199,10,238,199,10,197,238,199,10,238,199,322,180,238,199,238,197,163,275,164,238,161,164,266,249,238,216,225,322,17,180,12,170,170,260,303,161,251,249,221,309,6,170,188,164,269,270,10,272,180,257,273,182,0,280,280,17,170,277,6,269,257,266,267,257,170,159,270,159,270,159,172,159,159,271,12,172,0,177,294,207,430,170,225,265,0,170,180,407,322,182,159,159,159,0,180,180,180,180,257,257,188,272,273,277,216,182,266,2,180,12,270,199,10,199,260,277,249,183,188,259,15,170,260,161,164,197,277,271,232,259,274,238,163,170,0,170,180,199,265,266,267,407,322,407,322,192,237,6,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,407,322,12,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,322,263,17,170,164,262,263,264,265,266,267,197,17,271,272,232,180,257,273,274,251,213,199,182,163,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,180,12,170,197,180,199,170,197,266,188,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,170,0,6,170,170,170,170,197,259,213,170,15,11,14,180,10,10,180,15,11,14,180,170,164,262,263,264,265,266,267,197,17,271,272,232,180,257,273,274,251,213,199,182,163,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,197,180,180,431,432,433,0,0,0,0,0,0,288,288,0,293,293,0,288,198,198,288,288,289,289,198,198,288,288,289,289,198,288,289,288,288,288,291,290,198,292,293,288,289,291,290,198,292,293,288,289,198,288,289,198,288,289,198,288,289,291,290,198,292,293,288,289,198,198,288,288,289,289,198,198,198,288,289,290,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,198,288,289,198,288,289,198,288,289,198,198,198,198,198,288,288,288,288,288,289,289,289,289,289,292,291,290,291,290,198,292,293,288,289,291,291,290,198,198,292,293,288,289,288,290,291,291,290,290,198,198,292,292,293,293,288,288,288,288,289,289,291,290,198,292,293,288,289,288,288,288,291,198,288,289,198,288,288,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,288,290,198,288,289,0,288,290,288,198,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,290,291,290,198,292,293,288,289,215,192,192,215,0,215,6,215,0,215,192,0,233,233,192,0,212,0,0,233,192,215,192,215,0,215,192,192,6,0,215,0,233,192,0,215,231,192,294,207,294,207,192,192,0,192,237,237,192,0,215,212,6,0,192,215,215,0,215,0,215,231,179,179,179,294,207,183,183,295,295,233,233,294,294,207,207,183,183,295,295,233,233,294,294,207,207,179,179,179,216,191,183,295,215,212,216,233,225,231,294,207,179,294,207,294,207,179,294,207,183,183,179,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,233,233,225,225,231,231,294,294,207,207,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,191,191,191,191,191,183,183,183,183,183,295,295,295,295,295,215,215,215,215,215,212,212,212,212,212,216,216,216,216,216,233,233,233,233,233,225,225,225,225,225,231,231,231,231,231,294,294,294,294,294,207,207,207,207,207,191,179,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,179,179,183,295,212,216,216,233,233,225,225,231,231,294,207,179,294,207,179,179,179,179,191,191,183,183,295,295,215,215,212,212,216,216,233,233,225,225,225,231,231,231,231,294,294,294,294,207,207,207,207,179,191,183,295,215,212,216,233,225,231,294,207,225,294,207,294,207,294,207,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,295,179,0,179,294,294,207,207,191,183,295,215,212,216,233,225,231,294,207,179,179,215,215,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,179,179,179,179,179,179,191,179,216,179,179,295,225,179,179,179,179,179,179,183,295,216,225,294,207,179,179,179,179,233,225,231,294,207,179,0,294,207,225,225,216,216,216,179,179,183,295,183,294,207,179,191,216,179,179,179,233,225,231,179,225,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,212,216,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,179,179,179,179,179,212,216,233,191,183,295,215,212,216,233,225,231,294,207,183,179,296,296,296,296,296,296,296,0,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,0,296,296,296,296,296,296,241,235,0,0,0,0,0,0,0,297,297,297,297,297,297,234,240,240,234,234,240,234,234,234,234,434,435,235,235,235,235,235,235,234,434,241,241,241,241,241,240,234,0,0,0,301,301,301,302,157,301,302,157,301,302,157,157,157,157,301,301,302,157,301,302,157,301,302,157,302,301,302,157,301,302,301,301,302,302,157,157,301,302,157,157,301,302,157,301,302,157,301,302,157,301,302,157,157,157,301,302,157,301,302,157,301,302,301,302,301,302,301,302,301,302,301,302,301,302,157,301,302,157,301,301,302,157,301,302,157,0,0,305,0,305,305,306,304,304,0,304,304,305,306,304,305,306,304,305,306,304,304,304,305,306,304,305,306,304,305,306,304,305,306,305,306,304,304,305,305,306,306,304,305,306,304,306,306,306,304,305,306,306,306,304,305,306,304,305,306,0,0,0,0,0,0,0,0,306,304,304,304,304,304,304,304,305,306,304,305,306,304,304,305,306,304,305,306,304,305,306,304,305,306,0,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,0,317,317,0,317,317,317,317,0,317,317,317,317,317,317,317,317,317,317,317,317,0,0,0,0,0,0,326,328,331,330,327,326,328,331,330,327,326,327,328,331,330,327,326,328,327,328,328,331,330,327,326,328,331,330,327,326,328,331,330,327,326,330,327,331,328,331,330,327,326,326,328,327,328,330,327,328,327,327,327,328,328,331,331,330,330,327,327,326,326,328,331,330,327,326,327,326,326,326,328,331,330,327,326,328,331,330,327,326,328,331,330,327,326,326,328,330,327,326,327,327,331,329,331,329,331,327,328,331,330,327,326,328,331,330,327,326,328,330,327,328,330,327,328,330,327,328,330,327,328,330,327,328,330,327,328,331,330,327,326,328,331,330,327,326,327,328,331,330,327,326,328,331,330,327,326,0,0,0,0,0,333,255,333,255,255,255,333,255,333,255,333,255,255,333,255,0,333,255,255,333,333,255,255,333,255,333,255,333,255,255,333,255,0,333,0,333,333,333,0,333,0,0,333,0,0,333,333,0,0,0,0,0,0,0,0,333,333,333,0,333,0,333,333,333,0,0,0,255,333,333,333,333,333,333,255,333,255,333,255,333,255,333,255,333,255,333,255,0,0,0,0,0,0,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,379,379,378,378,378,378,380,380,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,378,379,378,380,378,380,379,378,380,378,378,379,378,380,379,378,380,379,378,380,379,378,380,379,379,378,380,379,378,380,341,335,368,0,395,335,393,392,0,393,0,0,0,368,341,341,176,0,4,0,0,337,392,0,368,0,4,368,436,335,0,363,436,176,363,335,392,176,382,368,341,337,382,392,341,0,393,0,392,392,382,0,4,347,352,352,341,392,341,382,0,4,347,347,176,341,368,0,0,0,0,0,341,363,341,344,366,341,437,393,437,4,0,337,0,0,393,0,347,0,347,195,0,368,341,337,392,395,0,0,393,344,341,341,0,0,0,4,341,392,0,395,436,0,0,335,4,0,368,4,392,436,366,0,392,368,0,0,392,383,385,176,176,223,223,177,177,347,347,366,366,341,341,382,382,436,436,437,437,438,438,218,218,395,395,388,388,386,386,176,176,223,223,177,177,347,347,366,366,341,341,382,382,436,436,437,437,438,438,218,218,395,395,388,388,386,386,391,169,176,223,177,341,195,382,439,436,437,438,218,395,388,386,382,385,169,195,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,385,169,360,347,366,341,195,382,176,223,177,385,360,347,366,341,195,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,223,223,177,177,437,437,218,218,388,388,386,386,195,382,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,195,382,341,195,382,176,223,177,341,195,382,439,436,437,438,218,395,388,386,176,176,176,176,176,223,223,223,223,223,177,177,177,177,177,341,341,341,341,341,195,195,195,195,195,382,382,382,382,382,436,436,436,436,436,437,437,437,437,437,438,438,438,438,438,218,218,218,218,218,395,395,395,395,395,388,388,388,388,388,386,386,386,386,386,169,390,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,177,439,436,437,438,218,395,388,386,223,169,372,370,368,363,4,352,339,377,391,392,337,393,347,366,335,341,195,390,382,176,176,223,223,169,169,372,372,370,370,368,368,177,177,344,344,363,363,4,4,352,352,385,385,339,339,360,360,377,377,391,391,392,392,337,337,393,393,347,347,366,366,335,335,341,341,195,195,390,390,382,382,439,439,436,436,437,437,438,438,218,218,395,395,388,388,386,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,390,341,195,382,391,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,339,169,370,372,176,223,177,439,436,437,438,218,388,372,370,385,195,169,169,377,176,223,177,439,436,437,438,218,388,0,169,195,0,377,223,177,218,388,195,390,383,176,223,177,439,436,437,438,218,395,388,386,385,169,0,385,169,169,438,372,370,360,169,438,386,339,223,439,339,169,176,223,177,439,436,437,438,218,395,388,386,176,223,177,439,436,437,438,218,395,388,386,176,223,177,385,360,347,366,341,195,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,385,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,195,360,390,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,439,390,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,440,441,442,441,443,444,442,441,441,445,442,446,445,447,441,444,444,441,448,446,442,443,441,446,447,444,406,0,0,406,0,0,406,0,406,0,0,0,0,408,408,408,406,0,0,406,0,0,0,401,162,406,406,0,0,0,201,201,0,406,0,406,0,0,0,0,0,0,0,0,0,0,214,214,214,214,214,406,0,214,401,162,108,0,406,108,318,0,406,184,0,0,402,318,0,406,219,219,219,219,219,406,0,167,0,0,406,406,402,0,0,406,0,162,0,0,401,402,0,236,236,236,236,236,406,0,236,184,0,0,108,108,214,214,236,236,201,201,217,217,167,167,318,318,219,219,399,399,312,312,2,2,408,408,221,221,309,309,449,449,430,430,410,410,108,108,214,214,236,236,201,201,217,217,167,167,318,318,219,219,399,399,312,312,2,2,408,408,221,221,309,309,449,449,430,430,410,410,174,187,186,323,319,108,214,236,201,217,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,312,2,408,221,309,449,430,410,174,174,320,320,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,399,166,320,167,398,168,284,318,282,184,219,399,312,108,214,236,201,217,166,320,167,398,168,284,318,282,184,219,399,312,2,408,221,309,449,430,410,409,409,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,108,108,214,214,236,236,201,201,217,217,2,2,408,408,221,221,309,309,449,449,430,430,410,410,2,167,284,400,286,354,282,184,219,399,312,357,323,286,319,309,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,284,400,354,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,167,284,400,286,354,282,184,219,399,312,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,312,108,214,236,201,217,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,312,2,408,221,309,449,430,410,108,108,108,108,108,214,214,214,214,214,236,236,236,236,236,201,201,201,201,201,217,217,217,217,217,320,320,320,320,320,167,167,167,167,167,357,357,357,357,357,401,401,401,401,401,321,321,321,321,321,402,402,402,402,402,403,403,403,403,403,323,323,323,323,323,404,404,404,404,404,398,398,398,398,398,168,168,168,168,168,284,284,284,284,284,400,400,400,400,400,286,286,286,286,286,354,354,354,354,354,405,405,405,405,405,406,406,406,406,406,319,319,319,319,319,318,318,318,318,318,282,282,282,282,282,184,184,184,184,184,162,162,162,162,162,219,219,219,219,219,399,399,399,399,399,312,312,312,312,312,2,2,2,2,2,408,408,408,408,408,221,221,221,221,221,309,309,309,309,309,449,449,449,449,449,430,430,430,430,430,410,410,410,410,410,168,162,162,162,286,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,108,214,236,201,217,2,408,221,309,449,430,410,284,400,217,320,167,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,184,162,283,219,219,312,408,108,108,214,214,236,236,201,201,217,217,325,325,187,187,186,186,409,409,166,166,320,320,167,167,357,357,401,401,324,324,321,321,402,402,403,403,323,323,404,404,398,398,168,168,284,284,400,400,286,286,354,354,405,405,406,406,319,319,318,318,282,282,184,184,184,162,162,283,283,219,219,399,399,312,312,2,2,408,408,221,221,309,309,449,449,430,430,410,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,312,357,221,309,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,398,398,166,406,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,168,284,284,168,284,108,201,217,408,221,449,430,410,284,168,357,321,405,312,108,201,217,408,221,449,430,410,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,357,286,354,221,309,321,284,400,284,325,398,325,325,324,409,283,325,324,217,449,430,404,108,214,236,201,217,2,408,221,309,449,430,410,0,283,283,399,323,319,2,166,320,187,186,167,357,321,168,400,405,162,0,166,320,398,168,184,162,219,404,108,214,236,201,217,2,408,221,309,449,430,410,108,214,236,201,217,2,408,221,309,449,430,410,108,214,236,201,217,166,320,167,398,168,284,318,282,184,219,399,312,2,408,221,309,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,2,221,410,403,219,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,168,187,186,409,283,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,187,186,282,312,284,284,400,320,219,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,312,2,408,221,309,449,430,410,283,283,450,451,0,230],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2,3],[[5,[4]]]],[[1,2,3],[[5,[6]]]],[[1,2,3],[[5,[7]]]],[[1,2,3],[[5,[8]]]],[[1,2,3],[[5,[7]]]],0,0,[[-1,9],[[5,[10]]],[]],[[-1,9],[[5,[[12,[11]]]]],[]],[[-1,9],[[5,[13]]],[]],[[-1,9],[[5,[[12,[14]]]]],[]],[[-1,9],[[5,[[17,[[12,[[16,[15]]]]]]]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[18,19],18],[[20,19],20],[[21,19],21],[[22,23],24],[25,[[0,[26]]]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],0,0,0,0,[30,19],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[32,[[5,[33]]]],[34,[[5,[33]]]],[18,35],[20,35],[21,35],[18,19],[20,19],[21,19],[[18,19],[[5,[18]]]],[[20,19],[[5,[20]]]],[[21,19],[[5,[21]]]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[36,36],[37,37],[38,38],[32,32],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[45,45],[46,46],[18,18],[47,47],[34,34],[48,48],[49,49],[33,33],[50,50],[51,51],[52,52],[53,53],[54,54],[55,55],[20,20],[30,30],[56,56],[57,57],[58,58],[59,59],[60,60],[61,61],[62,62],[63,63],[21,21],[13,13],[64,64],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[43,43],65],[[18,18],65],[[20,20],65],[[21,21],65],[66,[[69,[[68,[67]]]]]],0,[66,[[70,[[68,[67]]]]]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[22,-1],[[5,[37]]],[[73,[72]]]],[22,[[0,[26]]]],0,0,0,[-1,18,74],[-1,55,74],[-1,20,74],[-1,30,75],[-1,56,75],[-1,57,75],[-1,58,75],[-1,21,74],[-1,13,75],[-1,64,75],0,0,0,0,0,[[],22],[56,55],[[22,-1],[[5,[76]]],[[73,[72]]]],[22,[[0,[26]]]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[52,77],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],0,0,[[13,[16,[56]]],[[68,[56]]]],[[18,-1],24,78],[[55,-1],24,78],[[20,-1],24,78],[[30,-1],24,79],[[56,-1],24,79],[[57,-1],24,79],[[58,-1],24,79],[[21,-1],24,78],[[13,-1],24,79],[[64,-1],24,79],0,[22,[[0,[26]]]],0,[[43,43],80],[[44,44],80],[[45,45],80],[[46,46],80],[[18,18],80],[[52,52],80],[[55,55],80],[[20,20],80],[[30,30],80],[[56,56],80],[[57,57],80],[[58,58],80],[[21,21],80],[[64,64],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[51,32],0,0,0,[61,46],0,0,[[13,72],[[5,[19]]]],[[13,72,[16,[56]]],[[5,[56]]]],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],0,[[83,84],85],[[86,84],85],[[87,84],85],[[88,84],85],[[89,84],85],[[36,84],85],[[37,84],85],[[90,84],85],[[91,84],85],[[92,84],85],[[93,84],85],[[94,84],85],[[95,84],85],[[96,84],85],[[38,84],85],[[97,84],85],[[25,84],85],[[98,84],85],[[99,84],85],[[100,84],85],[[101,84],85],[[102,84],85],[[103,84],85],[[104,84],85],[[32,84],85],[[41,84],85],[[42,84],85],[[67,84],85],[[[69,[-1]],84],85,105],[[44,84],85],[[45,84],85],[[46,84],85],[[18,84],85],[[47,84],85],[[34,84],85],[[49,84],85],[[33,84],85],[[50,84],85],[[51,84],85],[[52,84],85],[[53,84],85],[[54,84],85],[[55,84],85],[[20,84],85],[[30,84],85],[[30,84],85],[[56,84],85],[[56,84],85],[[57,84],85],[[57,84],85],[[58,84],85],[[58,84],85],[[59,84],85],[[61,84],85],[[62,84],85],[[63,84],85],[[21,84],85],[[13,84],85],[[106,84],85],[[64,84],85],[[76,84],85],[22,[[0,[26]]]],0,0,[22,[[0,[26]]]],0,[[18,19],[[5,[18]]]],[[20,19],[[5,[20]]]],[[21,19],[[5,[21]]]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[108,43],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[23,44],[45,44],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[109,45],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[19,18],[-1,-1,[]],[35,18],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[49,34],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[19,20],[-1,-1,[]],[35,20],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[58,56],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[35,21],[[[107,[-1]]],-1,[]],[-1,-1,[]],[19,21],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[35,20],[35,18],[35,20],[35,21],[35,18],[35,20],[35,21],[19,18],[19,20],[19,21],0,[[22,-1],[[5,[106]]],[[73,[72]]]],[22,[[0,[26]]]],0,0,[[[69,[-1]],46],[[5,[-1]]],[]],[[22,-1],101,[[73,[23]]]],[[22,9],[[5,[23]]]],[[22,-1],[[5,[91]]],[[73,[72]]]],[[22,23],[[0,[26]]]],[[22,23],83],[[22,23],[[5,[93]]]],[[22,23],[[5,[88]]]],[[22,23],[[5,[97]]]],[[88,23],89],[[22,1,23],[[5,[[16,[53]]]]]],[[22,-1],98,[[73,[23]]]],[[22,-1],25,[[73,[23]]]],0,[[43,-1],24,112],[[44,-1],24,112],[[45,-1],24,112],[[46,-1],24,112],[[18,-1],24,112],[[55,-1],24,112],[[20,-1],24,112],[[30,-1],24,112],[[56,-1],24,112],[[57,-1],24,112],[[58,-1],24,112],[[21,-1],24,112],[[64,-1],24,112],0,0,0,0,[18,19],[18,19],[20,19],[20,35],[20,19],[21,19],[21,19],0,0,[[13,[16,[56]]],[[68,[56]]]],[53,55],[[54,56],55],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],0,[57,[[16,[56]]]],0,[[[70,[-1]],46,-1],24,[]],[[22,37],24],[[22,72,76],24],[[22,23,101],24],[[22,9,23],24],[[22,23,[68,[113]]],24],[[22,23,83],24],[[22,72,106],24],[[22,23,93],24],[[22,23,88],24],[[22,[114,[23,97]]],24],[[22,90],24],[[22,23,13],24],[[22,92],24],[[22,23,98],24],[[22,72,72,19,[68,[56]],56],24],[22,24],[[22,23,25],24],[[58,[16,[56]]],57],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[32,115],[33,115],[56,115],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[13,9],80],[34,80],[56,80],[54,80],[56,80],[98,80],[56,80],[[22,23],80],[56,80],0,0,0,0,0,0,0,0,[66,[[69,[116]]]],0,[66,[[70,[116]]]],0,0,0,0,0,0,[[56,56],56],0,0,[53,21],0,0,0,0,0,0,[-1,66,[[117,[45]]]],[[],22],[19,18],[19,20],[[[68,[56]],56],57],[[19,[68,[56]],56],58],[[21,113],63],[19,21],[[-1,-2,-3,[68,[9]],118],13,[[117,[9]]],28,28],[66,[[69,[56]]]],0,[66,[[70,[56]]]],0,0,[57,56],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[43,43],[[5,[65]]]],[[18,18],[[5,[65]]]],[[20,20],[[5,[65]]]],[[21,21],[[5,[65]]]],0,0,0,0,0,0,0,[22,[[0,[26]]]],[[-1,119],[[5,[-2]]],[],[]],0,[[22,23],13],0,0,0,0,0,[56,56],[58,57],0,0,0,[[22,-1],[[5,[92]]],[[73,[72]]]],[22,120],0,0,0,0,[49,118],[63,118],0,0,0,0,0,0,0,0,0,0,0,0,[[18,18],[[5,[19]]]],[[20,20],[[5,[19]]]],[[21,21],[[5,[19]]]],[[],[[121,[[16,[55]]]]]],[22,[[0,[26]]]],0,[[56,[16,[56]]],56],[63,72],0,[[],77],0,[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],[96,9],0,[[-1,118],13,[[117,[9]]]],0,[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[124,[[107,[52]]]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],0,0,0,[22,[[0,[26]]]],0,[66,[[69,[32]]]],0,[66,[[70,[32]]]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[-1,-1],[[107,[-1]]],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[88,13],88],0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[19,-1,[]],[19,-1,[]],[19,24],[[126,-1],[[107,[-2,111]]],127,[]],[[126,77],[[107,[-1,111]]],[]],0,[[-1,77],[[81,[-2]]],[],[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[126,128],[[107,[[68,[51]],111]]]],[[],19],[[126,23,97],24],[-1,-2,[],[]],[-1,-2,[],[]],[[126,129],[[107,[42,111]]]],[[126,130],[[107,[102,111]]]],[[126,23],[[107,[102,111]]]],[[126,131],[[107,[100,111]]]],[[126,23],[[107,[100,111]]]],[[1,132,109],[[107,[[24,[88,104]],111]]]],[[126,133],[[107,[32,111]]]],[[126,134],[[107,[83,111]]]],[[126,[16,[135]]],[[107,[[68,[51]],111]]]],[[126,136],[[107,[95,111]]]],[[126,137],[[107,[89,111]]]],[[126,128],[[107,[93,111]]]],[[1,132,109],[[107,[88,111]]]],[126,[[107,[88,111]]]],[[126,128],[[107,[88,111]]]],[126,[[107,[[24,[88,93]],111]]]],[[126,138],[[107,[41,111]]]],[[126,139],[[107,[40,111]]]],[[126,140],[[107,[97,111]]]],[[126,141],[[107,[33,111]]]],[[126,[5,[142]],141],[[107,[32,111]]]],[[126,143],[[107,[96,111]]]],[126,[[107,[93,111]]]],[[126,144],[[107,[32,111]]]],[[1,109],13],[[1,132,109],[[107,[[5,[32]],111]]]],[[126,142],[[107,[32,111]]]],[[1,132,109],[[107,[[24,[88,93,25]],111]]]],[[126,[16,[145]]],[[107,[[68,[50]],111]]]],[126,103],[[126,146,128],103],[[126,147],[[107,[94,111]]]],[[1,132,109,[5,[[114,[23,97]]]]],126],0,0,0,0,[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],[[126,109],126],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],0,[19,-1,[]],[19,-1,[]],[19,24],[[-1,77],[[81,[-2]]],[],[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[-1,-2,[],[]],[[148,149],[[150,[-1]]],151],[-1,-2,[],[]],[[1,-1,77],148,[[117,[9]]]],0,0,[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],0,[[-1,34],24,[]],[[-1,87],24,[]],[[-1,101],24,[]],[[-1,59],24,[]],[[-1,100],24,[]],[[-1,86],24,[]],[[-1,83],24,[]],[[-1,57],24,[]],[[-1,51],24,[]],[[-1,63],24,[]],[[-1,41],24,[]],[[-1,62],24,[]],[[-1,58],24,[]],[[-1,49],24,[]],[[-1,47],24,[]],[[-1,53],24,[]],[[-1,56],24,[]],[[-1,98],24,[]],[[-1,32],24,[]],[[-1,50],24,[]],[[-1,102],24,[]],[[-1,103],24,[]],[[-1,34],24,152],[[-1,87],24,152],[[-1,101],24,152],[[-1,59],24,152],[[-1,100],24,152],[[-1,86],24,152],[[-1,83],24,152],[[-1,57],24,152],[[-1,51],24,152],[[-1,58],24,152],[[-1,49],24,152],[[-1,47],24,152],[[-1,53],24,152],[[-1,56],24,152],[[-1,98],24,152],[[-1,32],24,152],[[-1,50],24,152],[[-1,102],24,152],[[-1,103],24,152],0,0,0,[[153,-1],[[154,[10]]],[[117,[9]]]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[153,-1],[[154,[[155,[66]]]]],[[117,[44]]]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[153,-1],[[5,[37]]],[[73,[72]]]],[153,156],0,[[153,30,[16,[56]]],80],[153,[[154,[157]]]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[[153,9,[16,[56]]],[[68,[56]]]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[153,9,72],[[5,[19]]]],[[153,9,[158,[56]],72],[[5,[56]]]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[[153,-1],[[154,[[12,[11]]]]],[[117,[9]]]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[153,-1],[[5,[106]]],[[73,[72]]]],[153,[[0,[26]]]],[[153,-1],[[154,[159]]],[[117,[9]]]],[[153,23],89],[[153,56],80],[153,160],[[153,-1,[16,[56]]],[[68,[56]]],[[117,[9]]]],[[],19],[[],19],[[],19],[[153,159,161,162],[[154,[163]]]],[[153,159,161,162],[[154,[163]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[153,52],80],[[153,9],80],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[153,9],[[154,[[12,[[158,[164]]]]]]]],[[153,9],[[5,[9]]]],[[153,9],[[154,[[166,[165]]]]]],[[153,23],[[154,[[158,[167]]]]]],[[153,-1],[[154,[[166,[168]]]]],[[117,[9]]]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[153,22],0,[153,22],[[153,23],[[154,[[155,[169]]]]]],[[153,170,170],170],0,[[1,132,[171,[156]]],153],[[153,-1],[[154,[[12,[172]]]]],[[117,[9]]]],[153,173],[[153,23],[[154,[[0,[26]]]]]],0,[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[153,159,168],[[154,[170]]]],[[153,159,174],[[154,[175]]]],[[153,159,168],[[154,[170]]]],0,[[153,34],[[5,[56]]]],[[153,9],[[5,[56]]]],[[153,33],[[5,[56]]]],[[153,9,3],[[5,[56]]]],[[153,9],[[5,[56]]]],[[153,32],[[5,[56]]]],0,0,[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[153,9],[[154,[[12,[14]]]]]],[[153,9],[[16,[176]]]],[[153,9,177],[[154,[[17,[[12,[15]]]]]]]],[[153,9],[[154,[[17,[[12,[178]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[[[180,[179]]],179],[[181,182],170],[-1,179,28],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[[158,[179]]]]]],0,0,[[170,184],170],[-1,31,[]],[[[185,[[16,[162]]]]],186],[[[185,[[16,[162]]]]],187],[[[185,[[16,[163]]]]],188],[[[185,[-1]]],-1,[189,190]],[[[185,[191]]],[[16,[179]]]],[[[185,[191]],[5,[183]]],179],[[192,-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[170,170],[[],170],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],170],[[[185,[-1]]],[[185,[-1]]],[189,190]],[[-1,-2],24,[],[]],[[9,-1],170,[[117,[[158,[170]]]]]],[[[185,[-1]],[185,[-1]]],65,[193,189]],[[[158,[-1]],[158,[-1]]],65,193],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[9,[5,[183]]],179],[[192,6,6],[[5,[6]]]],[6,179],[[6,[5,[183]]],179],[[-1,170],170,[[117,[179]]]],[-1,[[185,[[16,[-2]]]]],74,[[194,[-1]]]],[-1,[[185,[-2]]],74,[[194,[-1]],189]],[[[185,[-1]]],[],[189,190]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[[10,195],170],[[10,175,170,177,[158,[170]]],170],[[[185,[-1]]],24,[189,190]],[19,24],[19,24],[[[185,[-1]]],24,[189,190]],[35,179],[[],[[158,[-1]]],[]],[[],[[158,[-1]]],[]],[[[185,[-2]],-1],24,78,[[196,[-1]],189]],[[[185,[[16,[-2]]]],-1],24,78,[[196,[-1]]]],[[[185,[-1]],[185,[-1]]],80,189],[[[185,[[16,[-1]]]],[185,[[16,[-1]]]]],80,[]],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[[185,[191]],[16,[197]]],[[180,[179]]]],[[[185,[191]],197],179],[198,179],[[[180,[170]]],170],[[199,179],170],[[[185,[191]]],[[16,[179]]]],[[],179],[[153,[68,[163]],159,-1],[[154,[24]]],200],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[201,170],[[[185,[-1]],84],85,[105,189,190]],[[[185,[-1]],202,84],85,[203,189]],[[[185,[-1]],84],85,[204,189,190]],[[[158,[170]],202,84],85],[[197,-1],179,200],[-1,-1,[]],[[[68,[-1]]],[[185,[[16,[-1]]]]],[]],[[[107,[-1]]],-1,[]],[[[16,[-1]]],[[185,[[16,[-1]]]]],205],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[206,[-1]]],[[158,[-1]]],[]],[[[206,[-1]]],[[158,[-1]]],[]],[[199,7],179],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[-1,[[158,[-2]]],28,[]],[[[16,[-1]]],[[158,[-1]]],205],[[[16,[-1]]],[[158,[-1]]],205],[[[68,[-1]]],[[158,[-1]]],[]],[[[68,[-1]]],[[158,[-1]]],[]],[207,179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[9,-1],170,[[117,[[158,[163]]]]]],[[[121,[-1]]],[[211,[[208,[-1]],24,[210,[209]]]]],[189,190]],[[72,64],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[[185,[-1]],-2],24,[189,190],112],0,[212,179],[[153,-1],[[154,[[185,[[16,[163]]]]]]],[[117,[9]]]],0,0,[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[199,-1],170,[[117,[213]]]],[[],19],[[],19],[214,170],[214,179],[214,179],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[[16,[-1]]]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[-1,-2,-3,[5,[183]]],179,[[117,[179]]],[[117,[179]]],[[117,[179]]]],[[[185,[191]]],215],[216,179],[[217,35],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[-2,-3],[[158,[-1]]],[],[[73,[[16,[-1]]]]],71],[[-2,-3],[[158,[-1]]],[],[[73,[[16,[-1]]]]],71],[[218,[5,[183]]],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],0,0,[[219,170,108],170],[170,170],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[[185,[191]]],179],[[],170],[-1,[[185,[-1]]],189],[[],[[121,[-1]]],190],[[[185,[191]]],179],[[],179],[[],179],[[-1,175,220],170,[[117,[9]]]],[-1,179,28],[221,170],[[[185,[-1]],[185,[-1]]],[[5,[65]]],[222,189]],[[[158,[-1]],[158,[-1]]],[[5,[65]]],222],[[179,223],179],[182,170],[[-1,-2],170,[[117,[224]]],[[117,[225]]]],0,[-1,[[24,[[228,[[227,[[208,[-1]],[226,[24]],[210,[209]]]]]],229]]],[189,190]],0,0,[[[185,[191]]],179],[-1,[[158,[-1]]],[]],[-1,[[158,[-1]]],[]],[[[185,[191]]],[[5,[183]]]],[[],[[121,[-1]]],[]],[[],[[121,[[16,[-1]]]]],[]],[[],170],[[[158,[-1]],[16,[162]]],[[158,[-1]]],230],[[[185,[191]]],[[5,[231]]]],[-1,-2,[],[]],[[[185,[191]]],[[5,[225]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[[185,[[16,[232]]]]],[[158,[197]]]],[[[158,[232]]],[[158,[197]]]],[-1,122,[]],[[[185,[191]]],[[5,[233]]]],[[[158,[-1]],-2],[[107,[[158,[-1]]]]],234,235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[],179],[-1,170,[[117,[[158,[170]]]]]],[-1,179,[[117,[[158,[179]]]]]],[[-1,35,[5,[183]]],179,[[117,[179]]]],[[-1,[16,[35]]],179,[[117,[179]]]],[-1,125,[]],[-1,125,[]],[236,170],[236,179],[[237,-1,[5,[183]]],179,[[117,[179]]]],[[[185,[238]]],170],[[[185,[238]]],[[24,[170,179]]]],[[],170],[[],170],[[],179],[[],170],[[233,[5,[183]]],179],[[[158,[-1]],-2],[[239,[24]]],240,241],[-1,-2,[],[]],[-1,-2,[],[]],[[],179],0,0,0,0,0,0,0,0,0,0,[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[242,242],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],0,0,[9,122],[1,202],[1,202],0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[19,24],[19,24],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,202,84],85,[]],[[[243,[-1]],84],85,203],[[[244,[-1]],202,84],85,26],[[[244,[-1]],84],85,26],[[[245,[-1]],202,84],85,203],0,[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[246,[[5,[-1]]],[]],[246,[[5,[242]]]],0,[[202,80],202],0,[[202,80],202],0,0,[[202,80],202],0,0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[202,242],202],0,[[202,246],24],[[202,-1],[[243,[-1]]],[]],[[77,-1],[[244,[-2]]],28,[]],[[-1,80],[[245,[-1]]],[]],0,0,[[84,-1,[5,[77]]],85,203],0,0,0,[[202,80],202],0,0,0,0,[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[247,153,9],[[154,[10]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[247,153,44],[[154,[[155,[66]]]]]],0,0,[248,248],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[],173],[[],247],[[247,153],[[154,[157]]]],0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[248,84],85],[[247,153,9],[[154,[[12,[11]]]]]],0,0,[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[111,248],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[247,153],[[250,[72,249]]]],0,0,[[247,153,9],[[154,[159]]]],0,0,[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[248,149],[[150,[111]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[247,153,9],[[154,[[12,[[158,[164]]]]]]]],0,0,[[247,153,9],[[154,[[166,[165]]]]]],0,[[247,153,23],[[154,[[158,[167]]]]]],0,[[247,153,9],[[154,[[166,[168]]]]]],0,[[247,153,23],[[154,[[155,[169]]]]]],0,[[247,153,9],[[154,[[12,[172]]]]]],0,0,0,[[247,153],[[154,[[16,[251]]]]]],0,0,[[[252,[[114,[-1,-2]]]],-1,-3],-2,[253,254],205,71],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[247,153,9],[[154,[[12,[14]]]]]],0,0,[[1,9,255],248],0,[[247,153,9],[[154,[[17,[[12,[178]]]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[10,-1],199,[[117,[175]]]],0,[[181,182],170],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[6,6],[[5,[6]]]],[[256,-1],197,[[117,[[158,[197]]]]]],0,0,0,0,0,0,[257,[[16,[170]]]],0,0,0,0,0,0,0,[[170,184],170],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[238,[[5,[199]]]],[[[17,[-1]]],17,258],[[[12,[-1]]],12,258],[175,188],[[[259,[-1]]],[[5,[-1]]],[]],[[[17,[-1]]],[[17,[-1]]],[]],[[[180,[-1]]],[[180,[-1]]],[]],[[[12,[-1]]],[[12,[-1]]],[]],0,0,0,[170,170],0,[[],170],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[175,[[24,[170,170]]]],[[],170],[192,192],[237,237],[6,6],[159,159],[260,260],[161,161],[261,261],[172,172],[164,164],[262,262],[263,263],[264,264],[265,265],[266,266],[267,267],[256,256],[268,268],[197,197],[269,269],[270,270],[10,10],[[[17,[-1]]],[[17,[-1]]],205],[271,271],[272,272],[232,232],[[[180,[-1]]],[[180,[-1]]],205],[[[12,[-1]]],[[12,[-1]]],205],[[[259,[-1]]],[[259,[-1]]],205],[257,257],[273,273],[274,274],[238,238],[275,275],[224,224],[213,213],[199,199],[182,182],[181,181],[163,163],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[9,-1],170,[[117,[[158,[170]]]]]],[[159,153,-1],[[154,[-3]]],200,[],[[276,[-2]]]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,170],170,[[117,[179]]]],0,[-1,256,75],[-1,268,75],[-1,197,75],[-1,269,75],[-1,270,75],[-1,10,75],[-1,277,75],[-1,[[17,[-2]]],75,[[194,[-1]]]],[-1,271,75],[-1,272,75],[-1,232,75],[-1,[[180,[-2]]],75,[[194,[-1]]]],[-1,[[12,[-2]]],75,[[194,[-1]]]],[-1,[[259,[-2]]],74,[[194,[-1]]]],[-1,257,75],[-1,273,75],[-1,274,75],[-1,238,75],[-1,275,75],[-1,224,75],[-1,213,75],[-1,199,75],[-1,182,75],[-1,181,75],[-1,163,75],0,0,0,0,0,[1,202],[1,202],[197,55],0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[10,9],[[10,195],170],[[10,175,170,177,[158,[170]]],170],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[256,-1],24,79],[[268,-1],24,79],[[197,-1],24,79],[[269,-1],24,79],[[270,-1],24,79],[[10,-1],24,79],[[277,-1],24,79],[[[17,[-2]],-1],24,79,[[196,[-1]]]],[[271,-1],24,79],[[272,-1],24,79],[[232,-1],24,79],[[[180,[-2]],-1],24,79,[[196,[-1]]]],[[[12,[-2]],-1],24,79,[[196,[-1]]]],[[[259,[-2]],-1],24,78,[[196,[-1]]]],[[257,-1],24,79],[[273,-1],24,79],[[274,-1],24,79],[[238,-1],24,79],[[275,-1],24,79],[[224,-1],24,79],[[213,-1],24,79],[[199,-1],24,79],[[182,-1],24,79],[[181,-1],24,79],[[163,-1],24,79],0,[[192,192],80],[[237,237],80],[[6,6],6],[[6,6],80],[[260,260],80],[[161,161],80],[[261,261],80],[[164,164],80],[[262,262],80],[[263,263],80],[[264,264],80],[[265,265],80],[[266,266],80],[[267,267],80],[[256,256],80],[[268,268],80],[[197,197],80],[[269,269],80],[[270,270],80],[[10,10],80],[[277,277],80],[[271,271],80],[[272,272],80],[[232,232],80],[[[180,[-1]],[180,[-1]]],80,278],[[[259,[-1]],[259,[-1]]],80,278],[[274,274],80],[[238,238],80],[[275,275],80],[[224,224],80],[[213,213],80],[[199,199],80],[[182,182],80],[[181,181],80],[[163,163],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,[[[180,[170]]],170],[[199,179],170],[[[17,[-1]],77],-1,[]],[238,[[24,[10,[16,[163]],213]]]],[238,[[24,[10,195]]]],[197,270],[[[259,[-1]]],-1,[]],[232,[[24,[197,55]]]],[232,197],[238,[[16,[170]]]],[163,170],0,0,0,[272,[[16,[170]]]],0,[[153,[68,[163]],159,-1],[[154,[24]]],200],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[197,[[68,[197]]]],[201,170],[[192,202,84],85],[[192,84],[[107,[24,279]]]],[[192,84],[[107,[24,279]]]],[[237,202,84],85],[[237,84],[[107,[24,279]]]],[[237,84],[[107,[24,279]]]],[[6,84],[[107,[24,279]]]],[[6,84],[[107,[24,279]]]],[[11,202,84],85],[[159,84],85],[[260,84],85],[[161,84],85],[[261,84],85],[[172,84],85],[[164,84],85],[[262,84],85],[[262,202,84],85],[[263,84],85],[[264,84],85],[[265,84],85],[[266,84],85],[[267,84],85],[[256,202,84],85],[[268,84],85],[[197,84],85],[[197,202,84],85],[[269,84],85],[[269,202,84],85],[[270,202,84],85],[[270,84],85],[[10,84],85],[[277,84],85],[[[17,[-1]],84],85,105],[[271,84],85],[[272,202,84],85],[[272,84],85],[[232,202,84],85],[[232,84],85],[[[180,[-1]],84],85,203],[[[180,[179]],202,84],85],[[[180,[-1]],202,84],85,203],[[[180,[273]],202,84],85],[[[12,[-1]],84],85,105],[[[259,[-1]],84],85,105],[[257,84],85],[[257,202,84],85],[[273,84],85],[[274,84],85],[[274,202,84],85],[[251,84],85],[[249,84],85],[[280,84],85],[[238,202,84],85],[[238,84],85],[[275,84],85],[[224,84],85],[[224,202,84],85],[[213,202,84],85],[[213,84],85],[[199,84],85],[[199,202,84],85],[[182,84],85],[[181,202,84],85],[[181,84],85],[[163,202,84],85],[[163,84],85],0,[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[80,6],[281,6],[8,6],[7,6],[19,6],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[19,268],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[282,213],[[[107,[-1]]],-1,[]],[[[24,[179,[259,[80]]]]],213],[179,213],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[161,163],[[219,108],224],0,[[6,6],[[5,[6]]]],[[9,-1],170,[[117,[[158,[163]]]]]],0,[[6,6],[[5,[6]]]],[[192,-1],24,112],[[237,-1],24,112],[[6,-1],24,112],[[260,-1],24,112],[[161,-1],24,112],[[261,-1],24,112],[[164,-1],24,112],[[262,-1],24,112],[[263,-1],24,112],[[264,-1],24,112],[[265,-1],24,112],[[266,-1],24,112],[[267,-1],24,112],[[256,-1],24,112],[[268,-1],24,112],[[197,-1],24,112],[[269,-1],24,112],[[270,-1],24,112],[[10,-1],24,112],[[277,-1],24,112],[[271,-1],24,112],[[272,-1],24,112],[[232,-1],24,112],[[[180,[-1]],-2],24,253,112],[[[259,[-1]],-2],24,253,112],[[274,-1],24,112],[[238,-1],24,112],[[275,-1],24,112],[[224,-1],24,112],[[213,-1],24,112],[[199,-1],24,112],[[182,-1],24,112],[[181,-1],24,112],[[163,-1],24,112],[[153,-1],[[154,[175]]],[[117,[9]]]],0,[[6,6],[[5,[6]]]],[[6,6],[[5,[6]]]],0,0,0,0,[[199,-1],170,[[117,[213]]]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[269,[[16,[197]]]],0,[[[12,[-1]],[16,[163]],[16,[179]]],-1,234],[[[12,[172]],153,[16,[179]]],[[154,[[68,[164]]]]]],[[[12,[-1]],[16,[179]]],-1,234],[[[12,[172]],153,[16,[179]],[68,[164]]],[[154,[24]]]],[214,170],[[214,80],[[16,[271]]]],[35,6],[35,6],[275,170],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[180,[170]]],170],[199,170],[10,[[16,[271]]]],[[199,80],[[16,[271]]]],0,[238,80],[199,80],0,[197,80],[238,80],[199,80],[10,80],[238,80],[199,80],[238,80],[199,80],[10,80],[238,80],[199,80],[10,80],[197,80],[238,80],[199,80],[10,80],[238,80],[199,80],[[-1,1,80],80,[]],[[[180,[179]]],80],[238,80],[199,80],[238,80],[197,80],[163,80],[275,80],[164,262],[238,275],0,0,0,0,0,0,0,[[-1,1,80],[[5,[-2]]],[],[]],[[[17,[-1]],-2],[[17,[-3]]],[],71,[]],[[[180,[-1]],-2],[[180,[-3]]],[],71,[]],[[[12,[-1]],-2],[[12,[-3]]],[],71,[]],[[219,170,108],170],[170,170],0,0,0,0,0,0,0,[[6,6],6],[[],170],[[[283,[163]]],188],[[-1,262],164,[[117,[[158,[232]]]]]],[[[68,[197]],197],269],[[19,269],270],[[284,197,[68,[271]],80],10],[[10,175,[158,[170]],179],272],[[-1,[158,[232]]],[[180,[-1]]],[]],[[-1,-2,[180,[273]]],257,[[117,[[158,[274]]]]],[[117,[[158,[170]]]]]],[[170,-1],273,[[117,[[158,[274]]]]]],[[9,-1,-2],182,[[117,[175]]],[[117,[220]]]],0,0,0,[[[17,[-1]],-2],[[107,[-1,-3]]],[],71,[]],[[-1,175,220],170,[[117,[9]]]],0,[[6,6],[[5,[6]]]],[269,197],[257,[[180,[273]]]],0,0,0,[221,170],[[159,19,153],[[154,[161]]]],[270,19],0,0,0,0,0,0,0,[[[12,[172]]],[[12,[[158,[164]]]]]],0,0,0,0,0,0,[182,170],0,0,0,[[-1,-2],170,[[117,[224]]],[[117,[225]]]],[[[180,[-1]],-2],[[180,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],0,[159,19],[[159,19,153],[[154,[260]]]],0,0,[[[180,[-1]],179],-1,234],[[[180,[-1]],[16,[179]]],-1,234],[[[180,[-1]],-2],-1,234,200],[[[180,[-1]],-2,-3],-1,234,200,200],[257,285],0,[188,170],[272,170],0,0,0,[182,170],0,0,[[[180,[-1]]],-1,[]],[[[12,[-1]]],-1,[]],[270,269],[170,199],[10,197],[199,197],0,0,0,0,[188,[[283,[163]]]],[[[259,[-1]]],[[0,[26]]],[]],[[],[[121,[[16,[15]]]]]],[[],[[121,[[16,[170]]]]]],[[],[[121,[[16,[260]]]]]],[[],[[121,[[16,[161]]]]]],[[],[[121,[[16,[164]]]]]],[[],[[121,[[16,[197]]]]]],[[],[[121,[277]]]],[[],[[121,[[16,[271]]]]]],[[],[[121,[[16,[232]]]]]],[[],[[121,[[16,[[259,[80]]]]]]]],[[],[[121,[[16,[274]]]]]],[[],[[121,[238]]]],[[],[[121,[[16,[163]]]]]],[[],170],0,[[170,-1],[[239,[24]]],241],[[[180,[-1]],-2],239,240,241],[[199,-1],[[239,[24]]],241],0,[[266,9,[158,[170]]],11],[267,11],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[12,[15]]],[[12,[11]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],0,[[[17,[[107,[-1,-2]]]]],[[107,[[17,[-1]],-2]]],[],[]],[[170,-1],[[107,[170]]],235],[[164,-1],[[107,[164]]],235],[[262,-1],[[107,[262]]],235],[[263,-1],[[107,[263]]],235],[[264,-1],[[107,[264]]],235],[[265,-1],[[107,[265]]],235],[[266,-1],[[107,[266]]],235],[[267,-1],[[107,[267]]],235],[[197,-1],[[107,[197]]],235],[[[17,[-1]],-2],[[107,[[17,[-1]]]]],234,235],[[271,-1],[[107,[271]]],235],[[272,-1],[[107,[272]]],235],[[232,-1],[[107,[232]]],235],[[[180,[-1]],-2],[[107,[[180,[-1]]]]],234,235],[[257,-1],[[107,[257]]],235],[[273,-1],[[107,[273]]],235],[[274,-1],[[107,[274]]],235],[[251,-1],[[107,[251]]],235],[[213,-1],[[107,[213]]],235],[[199,-1],[[107,[199]]],235],[[182,-1],[[107,[182]]],235],[[163,-1],[[107,[163]]],235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[[180,[-1]],-2],[[107,[[180,[-3]],-4]]],[],71,[],[]],[[[12,[-1]],-2],[[107,[[12,[-3]],-4]]],[],71,[],[]],[[170,-1],[[107,[170]]],235],[[197,-1],[[107,[197]]],235],[[[180,[-1]],-2],[[107,[[180,[-1]]]]],234,235],[[199,-1],[[107,[199]]],235],[-1,170,[[117,[[158,[170]]]]]],[-1,197,[[117,[[158,[197]]]]]],0,[188,170],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[236,170],[[236,80],[[16,[271]]]],[35,6],[170,170],[170,[[24,[170,179]]]],[[],170],[[],170],[[],197],[[],[[259,[-1]]],[]],[[],213],[[],170],0,0,0,0,[[10,177],286],[10,[[287,[177,286]]]],[[[180,[-1]]],[[158,[232]]],[]],0,0,0,0,[[170,-1],[[239,[24]]],241],[[164,-1],239,241],[[262,-1],239,241],[[263,-1],[[239,[24]]],241],[[264,-1],[[239,[24]]],241],[[265,-1],[[239,[24]]],241],[[266,-1],239,241],[[267,-1],[[239,[24]]],241],[[197,-1],239,241],[[[17,[-1]],-2],[[239,[24]]],240,241],[[271,-1],[[239,[24]]],241],[[272,-1],239,241],[[232,-1],239,241],[[[180,[-1]],-2],239,240,241],[[257,-1],[[239,[24]]],241],[[273,-1],[[239,[24]]],241],[[274,-1],[[239,[24]]],241],[[251,-1],[[239,[24]]],241],[[213,-1],[[239,[24]]],241],[[199,-1],[[239,[24]]],241],[[182,-1],[[239,[24]]],241],[[163,-1],[[239,[24]]],241],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[197,-1],24,200],[[-1,197],[[180,[-1]]],[]],[[-1,-2],[[180,[-1]]],[],28],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[288,19],288],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[288,35],[288,19],[[288,19],[[5,[288]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[198,198],[288,288],[289,289],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[198,198],65],[[288,288],65],[[289,289],65],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[198,289],0,[-1,198,74],[-1,288,74],[-1,289,74],[[],290],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[198,-1],24,78],[[288,-1],24,78],[[289,-1],24,78],[[198,198],80],[[288,288],80],[[289,289],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,0,0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[291,24],[[291,84],85],[[290,84],85],[[198,202,84],85],[[198,84],85],[[292,84],85],[[293,84],85],[[288,84],85],[[289,84],85],[[288,19],[[5,[288]]]],[[290,289],198],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[35,288],[19,288],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[35,288],[35,288],[19,288],[[291,198],[[5,[179]]]],[[198,-1],24,112],[[288,-1],24,112],[[289,-1],24,112],0,[288,19],[288,19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[291,[[0,[26]]]],[[],290],[19,288],[290,289],[[198,198],[[5,[65]]]],[[288,288],[[5,[65]]]],[[289,289],[[5,[65]]]],0,0,[290,[[107,[291,292]]]],[[288,288],[[5,[19]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[290,198,-1,80],24,[[117,[179]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[180,[179]]],179],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[294,19],294],[[207,19],207],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[-1,179,28],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[[158,[179]]]]]],0,0,[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[179,[[16,[179]]]],[294,35],[207,35],[294,19],[207,19],[[179,[5,[183]]],179],[[294,19],[[5,[294]]]],[[207,19],[[5,[207]]]],[183,[[5,[118]]]],0,[[192,-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[191,191],[183,183],[295,295],[215,215],[212,212],[216,216],[233,233],[225,225],[231,231],[294,294],[207,207],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[233,233],65],[[225,225],65],[[231,231],65],[[294,294],65],[[207,207],65],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[9,[5,[183]]],179],[[192,6,6],[[5,[6]]]],[6,179],[[6,[5,[183]]],179],[-1,191,75],[-1,183,75],[-1,295,75],[-1,215,75],[-1,212,75],[-1,216,75],[-1,233,74],[-1,225,74],[-1,231,74],[-1,294,74],[-1,207,74],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[35,179],[[191,-1],24,79],[[183,-1],24,79],[[295,-1],24,79],[[215,-1],24,79],[[212,-1],24,79],[[216,-1],24,79],[[233,-1],24,78],[[225,-1],24,78],[[231,-1],24,78],[[294,-1],24,78],[[207,-1],24,78],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[191,191],80],[[183,183],80],[[295,295],80],[[215,215],80],[[212,212],80],[[216,216],80],[[233,233],80],[[225,225],80],[[231,231],80],[[294,294],80],[[207,207],80],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,[[179,[16,[197]]],[[180,[179]]]],[[179,197],179],[198,179],[179,[[16,[179]]]],[[],179],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[179,202,84],85],[[179,84],85],[[183,84],85],[[295,84],85],[[212,84],85],[[216,84],85],[[216,202,84],85],[[233,84],85],[[233,202,84],85],[[225,202,84],85],[[225,84],85],[[231,84],85],[[231,202,84],85],[[294,84],85],[[207,84],85],[[197,-1],179,200],[[294,19],[[5,[294]]]],[[207,19],[[5,[207]]]],[179,179],[281,179],[225,179],[207,179],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[231,225],[[[107,[-1]]],-1,[]],[-1,-1,[]],[218,231],[207,231],[19,294],[[[107,[-1]]],-1,[]],[-1,-1,[]],[35,294],[35,207],[[[107,[-1]]],-1,[]],[19,207],[-1,-1,[]],[[199,7],179],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[195,[[5,[225]]]],[35,294],[35,207],[35,294],[35,207],[19,294],[19,207],[207,179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[72,64],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[191,-1],24,112],[[183,-1],24,112],[[295,-1],24,112],[[215,-1],24,112],[[212,-1],24,112],[[216,-1],24,112],[[233,-1],24,112],[[225,-1],24,112],[[231,-1],24,112],[[294,-1],24,112],[[207,-1],24,112],0,[212,179],0,[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[294,19],[294,19],[207,19],[207,19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[214,179],[214,179],[215,179],[[215,[5,[183]]],179],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[179,80],[179,80],[179,80],[179,80],[179,80],[179,80],[[-1,-2,-3,[5,[183]]],179,[[117,[179]]],[[117,[179]]],[[117,[179]]]],[179,215],0,[216,179],0,[[217,35],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],0,0,[[218,[5,[183]]],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[179,179],[118,183],[118,295],[[294,19,[68,[179]]],216],[[231,-1],225,[[117,[[158,[223]]]]]],[19,294],[19,207],[179,179],[[],179],[[],179],[-1,179,28],[[233,233],[[5,[65]]]],[[225,225],[[5,[65]]]],[[231,231],[[5,[65]]]],[[294,294],[[5,[65]]]],[[207,207],[[5,[65]]]],[[179,223],179],0,0,0,[225,[[16,[223]]]],0,[216,[[16,[179]]]],[216,[[16,[179]]]],0,[179,179],[179,[[5,[183]]]],[183,118],[295,118],0,[[294,294],[[5,[19]]]],[[207,207],[[5,[19]]]],[[],[[121,[[16,[179]]]]]],[[],[[121,[191]]]],[[],[[121,[[16,[216]]]]]],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[179,-1],[[239,[24]]],241],[233,179],[225,179],[231,179],[179,[[5,[231]]]],[225,[[5,[231]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[179,[[5,[225]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[179,[[5,[233]]]],[[179,-1],[[107,[179]]],235],[[212,-1],[[107,[212]]],235],[[216,-1],[[107,[216]]],235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[179,-1],[[107,[179]]],235],[[],179],[-1,179,[[117,[[158,[179]]]]]],[[-1,35,[5,[183]]],179,[[117,[179]]]],[[-1,[16,[35]]],179,[[117,[179]]]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[236,179],[[237,-1,[5,[183]]],179,[[117,[179]]]],[[],179],[[233,[5,[183]]],179],[[179,-1],[[239,[24]]],241],[[212,-1],[[239,[24]]],241],[[216,-1],[[239,[24]]],241],[[233,-1],[[239,[24]]],241],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[183,183],183],[[],179],0,0,0,0,0,0,0,0,[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[296,296],65],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[19,-1,[]],[19,-1,[]],[19,24],[[296,296],80],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,77],[[81,[-2]]],[],[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[296,80],[[296,296],[[5,[65]]]],[192,296],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,[[-1,[180,[-2]]],[[180,[-2]]],[],234],[[-1,199],199,[]],[[-1,179],179,[]],[[-1,219],219,[]],[[-1,197],197,[]],[[-1,170],170,[]],[[-1,-2],-1,[],297],[-1,[[298,[207]]],[]],[-1,80,[]],[[-1,157],-1,[]],[[-1,153,299,9,[16,[179]]],[[154,[-1]]],[]],[-1,300,[]],[[-1,291],-1,[]],[[-1,-2],-1,[],200],[[-1,35],-1,[]],[[-1,35],-1,[]],[[-1,-2],-1,[],297],[[-1,-2],[[239,[24]]],[],241],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,199],[[107,[199]]],[]],[[-1,179],[[107,[179]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,170],[[107,[170]]],[]],[[-1,-2],[[107,[-1]]],[],235],[[-1,-2],[[107,[-1]]],[],235],[[-1,[180,[-2]]],239,[],240],[[-1,199],239,[]],[[-1,179],239,[]],[[-1,207],239,[]],[[-1,170],239,[]],[[-1,-2],[[239,[24]]],[],241],[-1,-1,[]],0,0,0,[[301,179,[16,[179]],[5,[183]]],179],[[179,[5,[183]]],179],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[],157],[[157,[180,[179]]],[[298,[72]]]],0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[301,179],179],[[302,179],179],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[157,72],[[5,[303]]]],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[157,301],[183,302],[[[250,[72,303]]],[[107,[157,[68,[72]]]]]],[157,[[107,[157,[68,[72]]]]]],[157,[[107,[[68,[72]],[68,[72]]]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,199],[[107,[199]]],[]],[[-1,199],[[107,[199]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[301,179,35],179],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[[304,182,[68,[305]]],[[154,[24]]]],[[304,182,[68,[305]]],24],[[[16,[164]],182,[68,[305]]],24],[[304,182,[68,[305]]],[[154,[24]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[304,305,182],[[154,[170]]]],0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[305,84],85],[[306,84],85],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],0,[[306,307,163],24],[[306,308,219],24],[[306,3,170],24],[[],19],[[],19],[[],19],[[306,309,219],24],[[306,221,170],24],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[181,310],[[1,182],311],[312,313],[[1,199],3],[[1,163],307],[[1,[16,[163]]],314],[[1,219],308],[[1,170],3],[[1,315,3,170],[[68,[163]]]],[[153,299,9,[16,[179]]],[[154,[304]]]],[[304,182],[[154,[170]]]],0,[304,316],0,[304,1],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[304,170],[[107,[170]]]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[317,9],[[154,[10]]]],[317,317],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[153,159],317],[19,-1,[]],[19,-1,[]],[19,24],[[-1,77],[[81,[-2]]],[],[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],0,[[317,9],[[154,[159]]]],0,[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[[317,159,[16,[162]],-1],[[154,[175]]],200],[[317,9,[16,[162]],-1],[[154,[175]]],200],[[153,159],317],[[317,221],[[154,[161]]]],0,[318,181],[[317,318,319],[[154,[182]]]],[[317,9,318],[[154,[220]]]],[[317,[320,[-1]],-2],[[154,[[180,[-3]]]]],[],200,[]],[[[16,[167]]],[[158,[232]]]],[[317,[16,[321]],321],[[154,[[5,[164]]]]]],[[317,[16,[321]]],[[154,[[158,[164]]]]]],[199,[[180,[170]]]],[[317,[16,[321]],322,323],[[154,[262]]]],[[317,161,162],[[154,[163]]]],[[317,162],[[154,[163]]]],[[317,324],[[154,[172]]]],[[153,325],[[154,[159]]]],[[317,165],[[154,[11]]]],[[317,168],[[154,[14]]]],[[317,323],[[154,[264]]]],[[317,168],[[154,[170]]]],[[317,9,[16,[168]]],[[154,[15]]]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],[[153,159],317],0,0,0,0,0,0,[[326,-1],-1,234],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[327,221,213],170],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],0,0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[19,24],[19,24],0,[[327,35],179],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[326,84],85],[[[328,[-1]],[180,[-2]]],[[180,[-2]]],329,234],[[327,[180,[-1]]],[[180,[-1]]],234],[[[328,[-1]],179],179,329],[[330,179],179],[[327,179],179],[[[328,[-1]],219],219,329],[[327,219],219],[[327,197],197],[[327,170],170],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],0,[[326,199,168],24],[[326,219,219],24],[[326,170,168],24],[[],19],[[],19],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[328,[-1]]],[]],[291,330],[[[5,[[16,[163]]]],[16,[179]]],327],[[170,168],326],0,[[327,309],219],0,[[-1,35],179,[]],[[[331,[-1,-2]],35],179,200,200],[[-1,312],219,[]],[[[331,[-1,-2]],312],219,200,200],[[327,221],197],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,199],[[107,[199]]],[]],[[-1,199],[[107,[199]]],[]],[[-1,199],[[107,[199]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[327,221],170],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[255,255],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],0,[19,24],[19,24],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[255,84],85],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[255,115],[-1,-2,[],[]],[-1,-2,[],[]],[332,284],[[333,334],[[107,[335,255]]]],[310,[[107,[318,255]]]],[[333,336],[[5,[337]]]],[[333,338],[[107,[339,111]]]],[[333,340],[[107,[341,255]]]],[[[342,[-1]],-2],[[107,[[320,[-3]],255]]],[],200,[]],[[333,343],[[107,[344,255]]]],[313,[[107,[312,255]]]],[[[16,[345]]],[[107,[[158,[167]],255]]]],[[333,346],[[5,[347]]]],[[1,132,348,118],[[107,[321,111]]]],[[1,349],[[107,[184,255]]]],[[333,350],[[107,[4,255]]]],[[333,351],[[5,[352]]]],[353,354],[[1,355],[[107,[165,255]]]],[[1,307],[[107,[162,255]]]],[[1,314],[[107,[[158,[162]],255]]]],[356,[[107,[357,255]]]],[[1,132,358],[[107,[324,111]]]],[315,[[107,[325,255]]]],[[1,132,[16,[348]],118],[[107,[[158,[321]],111]]]],[[333,359],[[107,[360,111]]]],[[1,132,361],[[107,[169,111]]]],[[333,362],[[107,[363,255]]]],[364,[[107,[195,255]]]],[[333,365],[[5,[366]]]],[308,[[107,[219,255]]]],[[333,367],[[107,[368,255]]]],[[333,369],[[107,[370,111]]]],[[333,371],[[107,[372,111]]]],[[1,3],[[107,[168,255]]]],[[1,373],[[107,[374,255]]]],[375,286],[-1,255,376],0,[[333,9,314],[[107,[[24,[9,377]],255]]]],0,0,0,0,[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[371,378],[369,378],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[379,149],[[150,[-1]]],151],[[378,149],[[150,[-1]]],151],[[380,149],[[150,[-1]]],151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[359,255],379],[[118,77,255],378],[[118,-1],380,376],0,0,0,0,0,[[118,255],378],[[118,255],378],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],0,[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],0,[169,[[0,[381]]]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[382,[[5,[223]]]],0,0,[[195,153,383],[[154,[80]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[169,384],385],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[169,[[387,[386,[68,[384]]]]]],[360,360],[347,347],[366,366],[341,341],[195,195],[382,382],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[-1,195,74],[-1,382,74],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[169,[[389,[388]]]],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[195,-1],24,78],[[382,-1],24,78],[[341,341],80],[[195,195],80],[[382,382],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,[[390,153,223],[[154,[168]]]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[223,202,84],85],[[169,84],85],[[372,84],85],[[370,84],85],[[368,84],85],[[363,84],85],[[4,84],85],[[352,84],85],[[339,84],85],[[377,84],85],[[391,84],85],[[392,84],85],[[337,84],85],[[393,84],85],[[347,84],85],[[366,84],85],[[335,84],85],[[341,84],85],[[195,84],85],[[390,84],85],[[382,84],85],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[168,390],[[341,-1],24,112],[[195,-1],24,112],[[382,-1],24,112],0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[169,394],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[169,388],80],[370,80],[372,80],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],0,0,0,0,0,[[169,218],395],0,[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[[396,[388,339]]],[[396,[388,19]]]],[[[396,[388,339]],[396,[218,360]],361,299],169],[[218,[68,[382]]],195],[[[5,[388]]],122],0,0,0,0,0,0,[[390,153,382],[[154,[390]]]],0,[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],0,[169,397],[[1,361],299],0,[169,[[5,[218]]]],[169,394],0,0,0,0,[169,118],0,0,0,[[],[[121,[[16,[223]]]]]],0,0,[[169,388],386],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[195,153,383],[[154,[390]]]],0,0,[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],0,0,[169,[[0,[381]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],0,0,0,0,0,[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[174,186],[174,187],[[[320,[-1]]],[[320,[-1]]],[]],[[-1,-2],[[320,[-1]]],[],[[117,[[158,[167]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[166,[-1]]],[[166,[-1]]],205],[[[320,[-1]]],[[320,[-1]]],205],[167,167],[398,398],[168,168],[284,284],[318,318],[282,282],[184,184],[219,219],[399,399],[312,312],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],0,0,[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],0,[-1,167,75],[-1,284,75],[-1,400,75],[-1,286,75],[-1,354,75],[-1,282,74],[-1,184,75],[-1,219,75],[-1,399,75],[-1,312,75],0,0,0,0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[168,168],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[284,9],0,0,[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[167,-1],24,79],[[284,-1],24,79],[[400,-1],24,79],[[286,-1],24,79],[[354,-1],24,79],[[282,-1],24,78],[[184,-1],24,79],[[219,-1],24,79],[[399,-1],24,79],[[312,-1],24,79],[[[320,[-1]],[320,[-1]]],80,278],[[167,167],80],[[357,357],80],[[401,401],80],[[321,321],80],[[402,402],80],[[403,403],80],[[323,323],80],[[404,404],80],[[398,398],80],[[168,168],80],[[284,284],80],[[400,400],80],[[286,286],80],[[354,354],80],[[405,405],80],[[406,406],80],[[319,319],80],[[318,318],80],[[282,282],80],[[184,184],80],[[162,162],80],[[219,219],80],[[399,399],80],[[312,312],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[168,[[24,[284,174]]]],[162,184],[162,219],[162,168],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[284,407],0,[[217,202,84],85],[[[320,[-1]],84],85,105],[[167,84],85],[[324,84],85],[[321,84],85],[[402,84],85],[[403,84],85],[[323,84],85],[[404,84],85],[[398,84],85],[[168,84],85],[[284,84],85],[[400,84],85],[[286,84],85],[[354,84],85],[[405,84],85],[[406,84],85],[[319,84],85],[[318,84],85],[[282,84],85],[[184,202,84],85],[[184,84],85],[[162,84],85],[[[283,[-1]],84],85,105],[[219,202,84],85],[[219,84],85],[[312,84],85],[[408,202,84],85],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[19,184],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[[320,[-1]],-2],24,253,112],[[167,-1],24,112],[[357,-1],24,112],[[401,-1],24,112],[[321,-1],24,112],[[402,-1],24,112],[[403,-1],24,112],[[323,-1],24,112],[[404,-1],24,112],[[398,-1],24,112],[[168,-1],24,112],[[284,-1],24,112],[[400,-1],24,112],[[286,-1],24,112],[[354,-1],24,112],[[405,-1],24,112],[[406,-1],24,112],[[319,-1],24,112],[[318,-1],24,112],[[282,-1],24,112],[[184,-1],24,112],[[162,-1],24,112],[[219,-1],24,112],[[399,-1],24,112],[[312,-1],24,112],0,0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[398,[[16,[168]]]],0,[[[166,[-1]]],-1,[]],[406,168],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[168,80],[284,80],[284,80],[168,80],[284,80],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[284,80],[168,406],0,0,0,0,[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[284,-1],168,[[117,[174]]]],[[318,9,-1],168,[[117,[174]]]],[[168,184],168],[[],168],[[],168],[[9,-1],168,[[117,[174]]]],[[9,-1],168,[[117,[174]]]],[201,168],[165,168],[[9,174],168],[214,168],[[],168],[221,168],[[168,108],168],[[219,168,108],168],[168,168],[[],168],[-1,168,[[117,[[158,[168]]]]]],[236,168],[[],168],0,0,0,0,0,[402,321],[400,284],[[9,[396,[177,286]],407],400],[284,286],0,[398,168],0,[325,[[5,[9]]]],0,0,0,[325,19],0,0,0,0,0,[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[219,122],0,0,0,[323,168],[319,168],0,[[[166,[-1]]],-1,[]],[[[320,[-1]]],-1,[]],[187,[[283,[162]]]],[186,[[409,[162]]]],[[],[[121,[[16,[167]]]]]],[[],[[121,[[16,[357]]]]]],[[],[[121,[[16,[321]]]]]],[[],[[121,[[16,[168]]]]]],[[],[[121,[400]]]],[[],[[121,[405]]]],[[],[[121,[[16,[162]]]]]],0,[[[166,[168]],[16,[162]]],168],[[[320,[-1]],[16,[162]]],[[320,[-1]]],230],[[398,[16,[162]]],398],[[168,[16,[162]]],168],[[184,[16,[162]]],184],[[162,[16,[162]]],162],[[219,[16,[162]]],219],0,[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],0,[[219,-1],[[107,[219]]],235],[[[410,[-1,-2]],-3],[[107,[[410,[-1,-2]]]]],234,234,235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[168,[[158,[168]]]],[187,168],[186,168],0,0,[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[187,[[0,[26]]]],[186,[[158,[168]]]],0,0,[[284,177],286],[284,[[287,[177,286]]]],0,[[[320,[-1]]],[[158,[167]]],[]],[[219,-1],[[239,[24]]],241],[[[410,[-1,-2]],-3],[[239,[24]]],240,240,241],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[-1,[16,[162]]],-1,[]]],"c":[],"p":[[3,"TyCtxt",9405],[3,"ScalarInt",7748],[3,"Ty",9406],[4,"Constant",6583],[4,"Option",9407],[4,"Constant",2982],[15,"u128"],[15,"i128"],[3,"DefId",9408],[3,"AdtDef",2982],[6,"PolyFnSig",2982],[3,"EarlyBinder",2982],[3,"RefinedBy",35],[6,"PolyTy",2982],[6,"PolyVariant",2982],[15,"slice"],[4,"Opaqueness",2982],[3,"ItemLocalId",35],[15,"usize"],[3,"SortVid",35],[3,"Name",35],[3,"Map",35],[3,"LocalDefId",9408],[15,"tuple"],[3,"TyAlias",35],[8,"Iterator",9409],[3,"Arena",9410],[8,"IntoIterator",9411],[3,"Arena",9412],[4,"SortCtor",35],[8,"Any",9413],[3,"Ty",35],[3,"Path",35],[3,"BaseTy",35],[15,"u32"],[4,"GenericParamKind",35],[3,"ConstInfo",35],[4,"TraitBoundModifier",35],[4,"TyKind",35],[3,"MutTy",35],[4,"Lifetime",35],[3,"ArrayLen",35],[4,"WeakKind",35],[4,"FluxLocalDefId",35],[4,"FluxOwnerId",35],[3,"FhirId",35],[4,"RefineArg",35],[4,"BaseTyKind",35],[4,"QPath",35],[3,"TypeBinding",35],[4,"GenericArg",35],[4,"Res",35],[3,"RefineParam",35],[4,"ParamKind",35],[4,"InferMode",35],[4,"Sort",35],[3,"FuncSort",35],[3,"PolyFuncSort",35],[3,"Expr",35],[4,"ExprKind",35],[4,"Func",35],[4,"Lit",35],[3,"Ident",35],[4,"FuncKind",35],[4,"Ordering",9414],[3,"WfckResults",35],[4,"Coercion",35],[3,"Vec",9415],[3,"LocalTableInContext",35],[3,"LocalTableInContextMut",35],[8,"FnOnce",9416],[3,"Symbol",2332],[8,"Borrow",9417],[8,"Decoder",9418],[8,"TyDecoder",9419],[3,"Defn",35],[15,"str"],[8,"Encoder",9418],[8,"TyEncoder",9419],[15,"bool"],[3,"RequestFilterDataProvider",9420],[4,"FingerprintStyle",9421],[3,"FnSig",35],[3,"Formatter",9422],[6,"Result",9422],[3,"FnOutput",35],[4,"Constraint",35],[3,"Generics",35],[3,"GenericParam",35],[3,"Qualifier",35],[4,"FluxItem",35],[3,"SortDecl",35],[3,"GenericPredicates",35],[3,"WhereBoundPredicate",35],[4,"GenericBound",35],[3,"PolyTraitRef",35],[3,"OpaqueTy",35],[3,"StructDef",35],[4,"StructKind",35],[3,"FieldDef",35],[3,"EnumDef",35],[3,"VariantDef",35],[3,"VariantRet",35],[3,"FnInfo",35],[8,"Debug",9422],[3,"FuncDecl",35],[4,"Result",9423],[4,"Mutability",7748],[3,"OwnerId",9424],[3,"QueryInfo",9425],[3,"ErrorGuaranteed",9426],[8,"Hasher",9427],[6,"SurfaceIdent",35],[3,"UnordMap",9428],[4,"DiagnosticArgValue",9429],[4,"ResolvedArg",9430],[8,"Into",9431],[3,"Span",9432],[3,"DepNode",9433],[6,"SortDecls",35],[3,"InternStorage",2488],[3,"String",9434],[3,"Fingerprint",9435],[4,"Res",9436],[3,"TypeId",9413],[3,"LiftCtxt",2201],[8,"IntoDiagnostic",9437],[3,"Generics",9438],[4,"ArrayLen",9438],[3,"Variant",9438],[3,"FieldDef",9438],[3,"FluxSession",9439],[4,"FnRetTy",9438],[3,"FnSig",9438],[4,"GenericArg",9438],[4,"GenericBound",9438],[3,"GenericParam",9438],[3,"Lifetime",9438],[3,"MutTy",9438],[3,"ItemId",9438],[3,"Path",9438],[3,"Ty",9438],[3,"PolyTraitRef",9438],[4,"QPath",9438],[3,"TypeBinding",9438],[3,"Item",9438],[4,"WherePredicate",9438],[3,"UnsupportedHir",2264],[3,"Handler",9440],[3,"DiagnosticBuilder",9437],[8,"EmissionGuarantee",9437],[8,"Visitor",2290],[3,"GlobalEnv",2332],[6,"QueryResult",2858],[3,"Rc",9441],[6,"CrateStoreDyn",28],[3,"Defns",6024],[6,"List",2488],[3,"Generics",2982],[3,"Map",9442],[3,"GenericParamDef",2982],[4,"GenericArg",7748],[4,"GenericArg",2982],[3,"Clause",2982],[6,"PolyFnSig",7748],[3,"EarlyBinder",7748],[4,"BoundVariableKind",7748],[3,"Ty",7748],[3,"Body",6583],[6,"Ty",2982],[3,"Box",9443],[3,"GenericPredicates",2982],[3,"Providers",2858],[6,"GenericArgs",7748],[6,"GenericArgs",2982],[4,"Variance",6583],[3,"VariantIdx",6583],[6,"PolyVariants",2982],[6,"Expr",5310],[3,"Binder",2982],[4,"AliasKind",2982],[3,"AliasTy",2982],[3,"ESpan",5310],[4,"Const",7748],[3,"Interned",2488],[3,"ClosureArgs",7748],[3,"GeneratorArgs",7748],[3,"GeneratorArgs",2982],[8,"Internable",2488],[8,"Sized",9444],[3,"ExprS",5310],[4,"BinOp",2982],[8,"Ord",9414],[8,"Decodable",9418],[3,"Place",6583],[8,"Encodable",9418],[4,"Sort",2982],[3,"EVar",5060],[4,"BaseTy",2982],[8,"FnMut",9416],[4,"FloatTy",7748],[3,"PPrintCx",2699],[8,"Pretty",2699],[8,"Display",9422],[8,"Clone",9445],[15,"array"],[3,"Name",5310],[3,"Arc",9446],[3,"FxHasher",9447],[3,"BuildHasherDefault",9427],[3,"DashMap",9448],[4,"HoleKind",5310],[3,"Index",2982],[4,"IntTy",7748],[4,"ExprKind",5310],[3,"KVar",5310],[3,"DebruijnIndex",7748],[3,"Local",6583],[4,"Region",7748],[6,"RefineArgs",2982],[3,"ParamTy",7748],[8,"PartialOrd",9414],[3,"FieldIdx",6583],[4,"PtrKind",2982],[3,"Path",5310],[3,"SharedValue",9449],[3,"HashMap",9450],[6,"RwLockWriteGuard",9451],[15,"u64"],[8,"Subst",9403],[4,"Loc",5310],[4,"BoundVariableKind",2982],[4,"Var",5310],[8,"TypeFoldable",5982],[8,"FallibleTypeFolder",5982],[4,"UintTy",7748],[4,"UnOp",2982],[3,"TyS",2982],[4,"ControlFlow",9452],[8,"TypeVisitable",5982],[8,"TypeVisitor",5982],[4,"KVarArgs",2699],[3,"WithCx",2699],[3,"Join",2699],[3,"Parens",2699],[4,"Value",9453],[3,"Queries",2858],[4,"QueryErr",2858],[3,"FuncDecl",2982],[6,"FxHashMap",9447],[3,"Qualifier",2982],[3,"RefCell",9454],[8,"Hash",9427],[8,"Eq",9414],[3,"UnsupportedReason",6414],[4,"SortCtor",2982],[3,"FnSig",2982],[8,"Deref",9455],[4,"TupleTree",2982],[3,"RefineParam",2982],[4,"GenericParamDefKind",2982],[4,"ClauseKind",2982],[3,"TraitPredicate",2982],[3,"TraitRef",2982],[3,"ProjectionPredicate",2982],[3,"FnTraitPredicate",2982],[3,"GeneratorObligPredicate",2982],[3,"SortVar",2982],[3,"FuncSort",2982],[3,"PolyFuncSort",2982],[3,"Invariant",2982],[3,"VariantSig",2982],[3,"FnOutput",2982],[4,"Constraint",2982],[4,"TyKind",2982],[8,"FromIterator",9411],[3,"AdtDefData",2982],[8,"PartialEq",9414],[3,"Error",9422],[3,"ClosureOblig",2982],[15,"i32"],[3,"ValueConst",7748],[3,"GeneratorArgsParts",7748],[3,"AdtDef",7748],[6,"Constraints",2982],[3,"VariantDef",7748],[3,"IndexSlice",9456],[3,"EVid",5060],[3,"EVarCxId",5060],[3,"EVarGen",5060],[3,"EVarSol",5060],[3,"UnsolvedEvar",5060],[4,"EVarState",5060],[3,"KVid",5310],[3,"SpanData",5310],[4,"Precedence",5941],[8,"TypeFolder",5982],[6,"FxHashSet",9447],[3,"InferCtxt",9457],[6,"OpaqueArgsMap",2982],[3,"Normalizer",6024],[3,"BaseSpanner",6024],[3,"Defn",2982],[3,"Normalizer",6112],[4,"Candidate",6112],[3,"TVarSubst",6112],[3,"GenericArg",9458],[3,"Region",9459],[3,"EarlyBoundRegion",7748],[4,"AliasKind",9460],[3,"AliasTy",9459],[3,"BoundRegion",7748],[3,"BoundRegion",9459],[6,"GenericArgsRef",9458],[3,"Generics",9461],[3,"ParamEnv",9406],[3,"Refiner",6206],[4,"AliasKind",7748],[3,"AliasTy",7748],[3,"Binder",7748],[3,"Clause",7748],[4,"ClosureKind",2982],[3,"TraitRef",7748],[3,"GenericPredicates",7748],[3,"Generics",7748],[3,"RegionSubst",6256],[3,"GenericsSubstFolder",6256],[3,"BoundVarReplacer",6256],[8,"BoundVarReplacerDelegate",6256],[3,"EVarSubstFolder",6256],[3,"FnMutDelegate",6256],[3,"AdtDef",9462],[3,"LoweringCtxt",6414],[4,"AggregateKind",9463],[4,"AggregateKind",6583],[6,"AssertMessage",9463],[4,"AssertKind",6583],[3,"BasicBlockData",9464],[3,"BasicBlockData",6583],[4,"BinOp",9463],[4,"BinOp",6583],[3,"Binder",9459],[4,"BorrowKind",9463],[4,"BorrowKind",6583],[4,"BoundVariableKind",9459],[4,"CastKind",9463],[4,"CastKind",6583],[3,"Clause",9406],[3,"Const",9465],[3,"ConstOperand",9463],[4,"FakeReadCause",9463],[4,"FakeReadCause",6583],[3,"FieldDef",9406],[3,"FieldDef",7748],[6,"PolyFnSig",9459],[3,"GenericParamDef",9461],[3,"GenericParamDef",7748],[3,"GenericPredicates",9461],[3,"LocalDecl",9464],[3,"LocalDecl",6583],[3,"BodyWithBorrowckFacts",9466],[4,"Operand",9463],[4,"Operand",6583],[3,"Place",9463],[4,"PointerCoercion",9467],[4,"PointerCast",6583],[4,"Rvalue",9463],[4,"Rvalue",6583],[3,"Statement",9468],[3,"Statement",6583],[3,"Terminator",9469],[3,"Terminator",6583],[6,"TypeOutlivesPredicate",9406],[6,"TypeOutlivesPredicate",7748],[3,"VariantDef",9406],[8,"ToString",9434],[3,"CallArgs",6583],[3,"UnsupportedMir",6503],[3,"UnsupportedLocalDecl",6503],[3,"UnsupportedGenericBound",6503],[8,"ExactSizeIterator",9470],[4,"PlaceElem",6583],[6,"LocalDecls",6583],[3,"BorrowIndex",9471],[3,"BorrowData",6583],[3,"Location",6583],[6,"FxIndexMap",9472],[3,"BasicBlock",6583],[3,"Dominators",9473],[3,"PlaceTy",6583],[3,"Instance",6583],[4,"TerminatorKind",6583],[4,"StatementKind",6583],[3,"Body",9464],[4,"LocalKind",6583],[3,"IndexVec",9474],[3,"RegionInferenceContext",9475],[3,"FnSig",7748],[3,"FreeRegion",7748],[3,"AdtDefData",7748],[4,"GenericParamDefKind",7748],[4,"ClauseKind",7748],[3,"TraitPredicate",7748],[3,"ProjectionPredicate",7748],[3,"TyS",7748],[4,"TyKind",7748],[3,"AdtFlags",2982],[4,"BoundRegionKind",7748],[3,"ClosureArgsParts",7748],[3,"OutlivesPredicate",7748],[8,"CrateStore",28],[4,"PrimTy",35],[6,"ItemLocalMap",35],[6,"GenericBounds",35],[6,"Cache",35],[6,"ItemPredicates",35],[13,"Type",2193],[13,"Expr",2194],[13,"SelfTyAlias",2196],[13,"SelfTyParam",2196],[13,"User",2199],[13,"Transparent",2200],[3,"Ident",2332],[6,"InternMap",2488],[6,"Guard",2488],[8,"SliceInternable",2488],[8,"FromOpt",2699],[6,"Cache",2858],[13,"UnsupportedType",2979],[3,"BoundVar",7748],[13,"Type",5057],[13,"Const",5057],[13,"User",5059],[8,"TypeSuperFoldable",5982],[8,"TypeSuperVisitable",5982],[4,"UnwindAction",6583],[4,"UnOp",6583],[3,"SourceInfo",6583],[3,"SwitchTargets",6583],[13,"Mut",7722],[13,"Call",7723],[13,"Assert",7723],[13,"SwitchInt",7723],[13,"Yield",7723],[13,"FalseEdge",7723],[13,"Drop",7723],[13,"FalseUnwind",7723],[13,"Goto",7723],[3,"RegionVid",7748],[13,"Type",9401],[13,"Const",9401]],"b":[[1093,"impl-Debug-for-SortCtor"],[1094,"impl-Display-for-SortCtor"],[1095,"impl-Display-for-Sort"],[1096,"impl-Debug-for-Sort"],[1097,"impl-Display-for-FuncSort"],[1098,"impl-Debug-for-FuncSort"],[1099,"impl-Debug-for-PolyFuncSort"],[1100,"impl-Display-for-PolyFuncSort"],[1189,"impl-From%3CLocalDefId%3E-for-FluxLocalDefId"],[1190,"impl-From%3CFluxOwnerId%3E-for-FluxLocalDefId"],[1199,"impl-From%3Cusize%3E-for-ItemLocalId"],[1201,"impl-From%3Cu32%3E-for-ItemLocalId"],[1228,"impl-From%3Cusize%3E-for-SortVid"],[1230,"impl-From%3Cu32%3E-for-SortVid"],[1250,"impl-From%3Cu32%3E-for-Name"],[1253,"impl-From%3Cusize%3E-for-Name"],[1374,"impl-ItemLocalId"],[1375,"impl-Idx-for-ItemLocalId"],[1376,"impl-Idx-for-SortVid"],[1377,"impl-UnifyKey-for-SortVid"],[1378,"impl-SortVid"],[1379,"impl-Idx-for-Name"],[1380,"impl-Name"],[2504,"impl-Interned%3C%5BGenericArg%5D%3E"],[2505,"impl-Interned%3C%5BGenericArg%5D%3E"],[2531,"impl-Decodable%3CD%3E-for-Interned%3C%5BT%5D%3E"],[2532,"impl-Decodable%3CD%3E-for-Interned%3CT%3E"],[2547,"impl-Encodable%3CE%3E-for-Interned%3CT%3E"],[2548,"impl-Encodable%3CE%3E-for-Interned%3C%5BT%5D%3E"],[2549,"impl-PartialEq-for-Interned%3CT%3E"],[2550,"impl-PartialEq-for-Interned%3C%5BT%5D%3E"],[2551,"impl-Interned%3CExprS%3E"],[2570,"impl-Debug-for-Interned%3CT%3E"],[2571,"impl-Pretty-for-Interned%3CT%3E"],[2572,"impl-Display-for-Interned%3CT%3E"],[2576,"impl-From%3CVec%3CT%3E%3E-for-Interned%3C%5BT%5D%3E"],[2578,"impl-From%3C%26%5BT%5D%3E-for-Interned%3C%5BT%5D%3E"],[2679,"impl-Interned%3CTyS%3E"],[2680,"impl-Interned%3CExprS%3E"],[2691,"impl-Interned%3CTyS%3E"],[2692,"impl-Interned%3CExprS%3E"],[2759,"impl-Pretty-for-Join%3C\'_,+I%3E"],[2760,"impl-Debug-for-Join%3C\'_,+I%3E"],[3750,"impl-Constant"],[3751,"impl-PartialEq-for-Constant"],[4068,"impl-Pretty-for-BinOp"],[4069,"impl-Debug-for-BinOp"],[4070,"impl-Display-for-BinOp"],[4071,"impl-Pretty-for-UnOp"],[4072,"impl-Debug-for-UnOp"],[4073,"impl-Display-for-UnOp"],[4074,"impl-Debug-for-Constant"],[4075,"impl-Display-for-Constant"],[4083,"impl-Debug-for-ClauseKind"],[4084,"impl-Pretty-for-ClauseKind"],[4092,"impl-Debug-for-Sort"],[4093,"impl-Pretty-for-Sort"],[4094,"impl-Debug-for-FuncSort"],[4095,"impl-Pretty-for-FuncSort"],[4096,"impl-Pretty-for-PolyFuncSort"],[4097,"impl-Debug-for-PolyFuncSort"],[4102,"impl-Pretty-for-VariantSig"],[4103,"impl-Debug-for-VariantSig"],[4104,"impl-Pretty-for-BoundVariableKind"],[4105,"impl-Debug-for-BoundVariableKind"],[4106,"impl-Debug-for-Binder%3CT%3E"],[4107,"impl-Pretty-for-Binder%3CInterned%3CExprS%3E%3E"],[4108,"impl-Pretty-for-Binder%3CT%3E"],[4109,"impl-Pretty-for-Binder%3CFnOutput%3E"],[4112,"impl-Debug-for-FnSig"],[4113,"impl-Pretty-for-FnSig"],[4115,"impl-Debug-for-Constraint"],[4116,"impl-Pretty-for-Constraint"],[4120,"impl-Pretty-for-TyS"],[4121,"impl-Debug-for-TyS"],[4123,"impl-Debug-for-PtrKind"],[4124,"impl-Pretty-for-PtrKind"],[4125,"impl-Pretty-for-Index"],[4126,"impl-Debug-for-Index"],[4127,"impl-Debug-for-BaseTy"],[4128,"impl-Pretty-for-BaseTy"],[4130,"impl-Pretty-for-AliasKind"],[4131,"impl-Debug-for-AliasKind"],[4132,"impl-Pretty-for-GenericArg"],[4133,"impl-Debug-for-GenericArg"],[4140,"impl-From%3Cbool%3E-for-Constant"],[4141,"impl-From%3Ci32%3E-for-Constant"],[4142,"impl-From%3Ci128%3E-for-Constant"],[4143,"impl-From%3Cu128%3E-for-Constant"],[4144,"impl-From%3Cusize%3E-for-Constant"],[4221,"impl-From%3CValueConst%3E-for-Index"],[4223,"impl-From%3C(Interned%3CExprS%3E,+TupleTree%3Cbool%3E)%3E-for-Index"],[4224,"impl-From%3CInterned%3CExprS%3E%3E-for-Index"],[4385,"impl-EarlyBinder%3CGenericPredicates%3E"],[4386,"impl-EarlyBinder%3CT%3E"],[5191,"impl-Pretty-for-EVar"],[5192,"impl-Debug-for-EVar"],[5211,"impl-From%3Cu32%3E-for-EVid"],[5212,"impl-From%3Cusize%3E-for-EVid"],[5230,"impl-EVid"],[5231,"impl-Idx-for-EVid"],[5373,"impl-Add%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5374,"impl-Add%3CRhs%3E-for-Interned%3CExprS%3E"],[5530,"impl-Div%3CRhs%3E-for-Interned%3CExprS%3E"],[5531,"impl-Div%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5651,"impl-Pretty-for-Interned%3CExprS%3E"],[5652,"impl-Debug-for-Interned%3CExprS%3E"],[5656,"impl-Debug-for-KVar"],[5657,"impl-Pretty-for-KVar"],[5658,"impl-Debug-for-Var"],[5659,"impl-Pretty-for-Var"],[5660,"impl-Pretty-for-Path"],[5661,"impl-Debug-for-Path"],[5662,"impl-Debug-for-Loc"],[5663,"impl-Pretty-for-Loc"],[5669,"impl-From%3C%26Interned%3CExprS%3E%3E-for-Interned%3CExprS%3E"],[5670,"impl-From%3Ci32%3E-for-Interned%3CExprS%3E"],[5671,"impl-From%3CPath%3E-for-Interned%3CExprS%3E"],[5672,"impl-From%3CName%3E-for-Interned%3CExprS%3E"],[5692,"impl-From%3CLocal%3E-for-Loc"],[5693,"impl-From%3CName%3E-for-Loc"],[5694,"impl-From%3Cusize%3E-for-KVid"],[5697,"impl-From%3Cu32%3E-for-KVid"],[5698,"impl-From%3Cu32%3E-for-Name"],[5700,"impl-From%3Cusize%3E-for-Name"],[5740,"impl-KVid"],[5741,"impl-Idx-for-KVid"],[5742,"impl-Idx-for-Name"],[5743,"impl-Name"],[5798,"impl-Mul%3CRhs%3E-for-Interned%3CExprS%3E"],[5799,"impl-Mul%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5836,"impl-Sub%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5837,"impl-Sub%3CRhs%3E-for-Interned%3CExprS%3E"],[6532,"impl-From%3C%26Terminator%3C\'tcx%3E%3E-for-UnsupportedMir"],[6533,"impl-From%3C%26Statement%3C\'tcx%3E%3E-for-UnsupportedMir"],[8653,"impl-Pretty-for-Const"],[8654,"impl-Debug-for-Const"],[8657,"impl-Pretty-for-Region"],[8658,"impl-Debug-for-Region"]]},\ -"flux_refineck":{"doc":"Refinement type checking","t":"DHOOFFMAAAAAAAAFFMAADDENINNDDDLLLLMMMFFLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLMLLLLLKLLLLLLLLLLMKLLLMLLLLLLLLLLLLLLLLLLLKLLALLLLLLLLLLLLLLLLLLLLLLLLLMMLMLLLLLLLFFLLLLLLLLLLLLLLMMMMMMLLLMFLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFMLLLLLLEDNNQNNILLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLKKNNNDENNNDIDNNNNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLMLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLMMFFLLLLLMLLLLMALLMMMMMMMLMMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDRRRRRRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGNNDGDDDDDEDGESSGNDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLLMMMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLAFMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLMMLLLLLMLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLMMMLMMMMMLLLLLLMLLLLMLFLMMFMMLFMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLNDDNDSSSSSSELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNNGNGGNDNNGNNNNNGNNNNDGNENGNNNEEGNNNNNLLLLMMLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLMMMMLMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNGNEDNGENDNNLFLLLLLLMMMMLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLMALMLLLLLLLLLLLLLLLLLLLLLLLLLLNNNDDNDNDNISNNEEENNNFLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMFLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLKLLLMKLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLDDSSSSDNDDEDNGDESNNDMLLFLLLLLLLLMLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLMMLLMMMMMLLLLMLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLFFADRLLLLLLLLLLLLLLMLLLLLLDDLMLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLLLLLLLLLMLLLLLLLLLLLLENNNNNNDEDDDDDDDNDDNLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLMFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLMAMMMLLLMLLLLLMMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLMFFFFNNNEEDDNMLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLMLMAMLLLLLLLLLLLLLLLLLLLLLLLLLHGHMFFFFFFHGHMFFFDDDDDLLLLMMMLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLMAALLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLWWDNGDNQQENIIDDNDDDNDLMLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLFLFFKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMMLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMLLMKMLLLMLLLMLLLMAKMMLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLKLLLLLLLLLLLLLLLL","n":["CheckerConfig","DEFAULT_LOCALE_RESOURCE","_define_btys","_sig","call_error","check_fn","check_overflow","checker","constraint_gen","errors","fixpoint_encoding","ghost_statements","invariants","queue","refine_tree","report_errors","ret_error","scrape_quals","sigs","type_env","Checker","CheckerConfig","Guard","Match","Mode","None","Pred","RefineMode","ShapeMode","ShapeResult","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","bb_envs","bb_envs","body","bool_int_cast","bool_uint_cast","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_aggregate_operands","check_assert","check_assign_ty","check_basic_block","check_binary_op","check_call","check_cast","check_closure_obligs","check_constant","check_ghost_statement","check_ghost_statements_at","check_goto","check_goto_join_point","check_goto_join_point","check_goto_join_point","check_if","check_len","check_match","check_oblig_fn_trait_pred","check_oblig_generator_pred","check_operand","check_operands","check_overflow","check_rvalue","check_statement","check_successors","check_terminator","check_unary_op","clear","clear","clear","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","config","constr_gen","constr_gen","constr_gen","constr_gen","def_id","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dominators","drop","drop","drop","drop","drop","drop","enter_basic_block","enter_basic_block","enter_basic_block","errors","filterable","filterable","filterable","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generics","genv","ghost_stmts","ghost_stmts","init","init","init","init","init","init","init","int_bit_width","int_int_cast","into","into","into","into","into","into","into_bb_envs","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_exit_block","kvars","mode","output","queue","refparams","resume_ty","run","run_in_refine_mode","run_in_shape_mode","scrape_quals","snapshot_at_dominator","snapshot_at_dominator","snapshots","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","uint_bit_width","uint_int_cast","uint_uint_cast","visited","vzip","vzip","vzip","vzip","vzip","vzip","CheckerErrKind","CheckerError","Inference","InvalidGenericArg","Ok","OpaqueStruct","Query","ResultExt","borrow","borrow","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","filterable","filterable","fmt","from","from","from","from","from","from","from_cycle_error","from_cycle_error","init","init","into","into","into_diagnostic","into_query_param","into_query_param","kind","opaque_struct","span","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","with_span","with_src_info","Assert","Assign","Call","ConstrGen","ConstrReason","Div","Fold","Goto","InferCtxt","KVarGen","Obligations","Other","Overflow","Rem","Ret","Tag","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bty_subtyping","check_constraint","check_constructor","check_fn_call","check_generic_args","check_mk_array","check_pred","check_pred","check_ret","check_type_constr","clone","clone","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","def_id","def_id","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","dst_span","eq","eq","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evar_gen","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fresh","fresh","fresh_evars","fresh_infer_var","fresh_infer_var_for_hole","fresh_kvar","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generic_arg_subtyping","genv","genv","hash","hash","idx_subtyping","infcx","init","init","init","init","init","insert_obligations","instantiate_generic_args","instantiate_refine_args","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kvar_gen","kvar_gen","mk_generator_obligations","mk_obligations","new","new","new","new","obligations","obligs","opaque_subtyping","pack_closure_operands","pop_scope","pred_subtyping","predicates","pretty","project_bty","push_scope","reason","refparams","refparams","region_infcx","region_infcx","scopes","snapshot","solve","span","src_span","subtyping","subtyping","tag","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unify_exprs","vzip","vzip","vzip","vzip","vzip","with_dst","AssertError","AssignError","CallSpanNote","ConditionSpanNote","DivError","FoldError","GotoError","OverflowError","RefineError","RemError","UnknownError","_DERIVE_rustc_errors_AddToDiagnostic_FOR_CallSpanNote","_DERIVE_rustc_errors_AddToDiagnostic_FOR_ConditionSpanNote","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_AssertError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_AssignError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DivError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_FoldError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_GotoError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_OverflowError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RefineError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RemError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnknownError","add_to_diagnostic_with","add_to_diagnostic_with","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","call","call_span_note","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","cond","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","msg","new","ret","span","span","span","span","span","span","span","span","span","span","span","span_note","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Bindings","Conj","Const","ConstInfo","ConstMap","Env","ExprCtxt","FixpointCtxt","FixpointKVar","KVarDecl","KVarEncoding","KVarStore","KVidMap","Key","MAX","MAX_AS_U32","PredSpans","Single","TagIdx","Uif","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","as_expr_cx","as_u32","as_usize","assume_const_val","backward_checked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buf","buf","check","clone","clone","clone","clone_into","clone_into","clone_into","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","comments","compare","compare","const_map","const_map","core","dbg_span","decode","def_id","def_span","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encoding","env","env","eq","eq","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expr_to_fixpoint","exprs_to_fixpoint","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fixpoint","fixpoint_const_map","fixpoint_kvars","fmt","fmt","forward_checked","fresh","fresh_inner","fresh_name","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_str","from_u32","from_u32_unchecked","from_usize","func_sort_to_fixpoint","func_to_fixpoint","fvars","genv","get","get_fvar","get_late_bvar","hash","hash","hash_builder","imm","index","index","init","init","init","init","init","init","init","init","init","init","inner","insert_fvar_map","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kvar_to_fixpoint","kvars","kvars","kvid_map","last_layer","layers","len","len","local_var_gen","name","new","new","new","new","new","new","orig","partial_cmp","populate_kvid_map","pred_to_fixpoint","pred_to_fixpoint_internal","private","push_layer_with_fresh_names","qualifier_to_fixpoint","remove_fvar_map","self_args","sort","sort_to_fixpoint","sorts","sorts","steps_between","stitch","sym","tag_idx","tags","tags_inv","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tuple_to_fixpoint","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","val","var_to_fixpoint","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_name_map","Global","GlobalVar","KVid","Local","LocalVar","MAX","MAX","MAX","MAX_AS_U32","MAX_AS_U32","MAX_AS_U32","Var","add","add","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","as_any","as_u32","as_u32","as_u32","as_usize","as_usize","as_usize","backward_checked","backward_checked","backward_checked","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","decode","decode","decode","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","encode","encode","encode","eq","eq","eq","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","filterable","filterable","fixpoint_generated","fmt","fmt","fmt","fmt","fmt","fmt","forward_checked","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_u32","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","from_usize","hash","hash","hash","hash","index","index","index","index","index","index","init","init","init","init","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","new","new","new","partial_cmp","partial_cmp","partial_cmp","private","private","private","steps_between","steps_between","steps_between","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","And","App","App","BinaryOp","BitVec","Bool","Conj","ConstInfo","Constant","Constraint","Expr","Expr","FixpointTypes","ForAll","Fst","Func","Func","Guard","IfThenElse","Int","Itf","KVar","KVar","Map","Pair","Pair","PolyFuncSort","Pred","Pred","Proj","Proj","Qualifier","Real","Set","Snd","Sort","SortCtor","Task","UnaryOp","Unit","Unit","Var","Var","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","args","body","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","comment","comments","constants","constraint","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","fsort","global","hash","hash","hash","hash","init","init","init","init","init","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kvars","kvid","name","name","new","orig","params","qualifiers","scrape_quals","sort","sorts","sorts","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","Edge","EdgeMap","Fold","GhostStatement","GhostStatements","Location","LocationMap","Point","PtrToBorrow","StatementsAt","Unblock","Unfold","add_unblocks","all_nested_bodies","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","as_any","at","at_edge","at_location","base","base","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compute_ghost_statements","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","extend_at","filterable","filterable","filterable","filterable","fmt","fmt","fold_unfold","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","hash","init","init","init","init","insert","insert_at","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","new","point","points_to","statements_at","stmts","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","write_mir","Closure","Deref","Downcast","Elaboration","Env","Fold","FoldUnfoldAnalysis","Generator","Infer","Len","Mode","NAME","None","Other","PlaceNode","ProjKind","ProjResult","Tuple","Ty","Unfold","add_ghost_statements","basic_block","bb_envs","body","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_fold_unfolds","collect_fold_unfolds_at_goto","collect_folds_at_ret","collect_folds_at_ret","collect_unfolds","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","discriminants","downcast","downcast","downcast","downcast_struct","drop","drop","drop","drop","drop","drop","drop","field","fields","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fold","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","genv","goto","goto_join_point","goto_join_point","goto_join_point","init","init","init","init","init","init","init","insert_at","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","join","join","location","map","mode","new","new","operand","projection","projection","projection","projection","queue","ret","ret","ret","run","statement","stmts","terminator","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unfold","visited","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Children","CollectPointerToBorrows","MAX","MAX","MAX_AS_U32","MAX_AS_U32","Map","Place","PlaceIndex","PlaceInfo","PlaceOrValue","PointsToAnalysis","Reachable","Results","State","StateData","TOP","Unreachable","Value","ValueIndex","_marker","add","add","add_ghost_statements","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","analysis","apply","apply_call_return_effect","apply_statement_effect","apply_switch_int_edge_effects","apply_terminator_effect","as_any","as_any","as_any","as_any","as_u32","as_u32","as_usize","as_usize","assign","backward_checked","backward_checked","before_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_value","cache_preorder_invoke","children","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","debug_with_context","debug_with_context_rec","decode","decode","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","entry_sets","eq","eq","eq","eq","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","excluded_locals","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","find","first_child","flood","flood_with","fmt","fmt","fmt","fmt","fmt","fmt","fmt_diff_with","fmt_with","fn_sig","for_each_aliasing_place","for_each_tracked_place","for_each_tracked_place_rec","for_each_value_inside","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","get","get_idx","get_tracked_idx","handle_assign","handle_call_return","handle_operand","handle_ref","handle_statement","handle_terminator","hash","hash","index","index","index","index","init","init","init","init","init","init","init","init","init","init","initialize_start_block","inner_values","inner_values_buffer","insert_idx","insert_place_idx","insert_ptr_to_borrows_at","insert_value_idx","into","into","into","into","into","into","into","into","into","into","into_iter","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","join","locals","map","map","map","new","new","new","new","new","new","new","next","next","next_sibling","partial_cmp","partial_cmp","places","private","private","proj_elem","projections","register","register_children","steps_between","steps_between","stmts","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","tracked_places","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value_count","value_index","values","visit_block_end","visit_statement_after_primary_effect","visit_statement_before_primary_effect","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","check_invariant","check_invariants","errors","Invalid","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_Invalid","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","filterable","from","from","from_cycle_error","init","into","into_diagnostic","into_query_param","span","to_predicate","to_result","try_from","try_into","type_id","vzip","Item","WorkQueue","as_any","bb","borrow","borrow","borrow_mut","borrow_mut","cmp","collect_and_apply","collect_and_apply","compare","compare","deref","deref","deref_mut","deref_mut","dominators","dominators","drop","drop","empty","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","heap","init","init","insert","into","into","into_query_param","into_query_param","partial_cmp","pop","set","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","AssumeInvariants","Comment","Conj","ForAll","Guard","Head","No","Node","NodeKind","NodePtr","ParentsIter","RefineCtxt","RefineSubtree","RefineTree","Scope","Snapshot","True","Unpacker","WeakNodePtr","Yes","as_any","as_subtree","as_subtree","assume_invariants","assume_invariants","assume_pred","bindings","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","branch","check_impl","check_pred","children","children_to_fixpoint","clear_children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","contains","contains_all","define_var","define_vars","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downgrade","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold_bty","fold_ty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","has_free_vars","in_mut_ref","index","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into_fixpoint","into_iter","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_forall","is_head","is_leaf","iter","kind","name_gen","nbindings","new","new","new","next","next_name_idx","parent","pretty","ptr","ptr","ptr","push_comment","push_guard","push_node","rcx","refine_ctxt_at","refine_ctxt_at_root","refine_ctxt_at_root","replace_evars","replace_evars","root","root","scope","scope","shallow","shallow","simplify","simplify","snapshot","subtree_at","to_fixpoint","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","tree","tree","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unpack","unpack","unpack_exists","unpack_exists","unpack_inside_mut_ref","unpack_inside_mut_ref","unpacker","upgrade","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","yes","check_overflow","bindings_chain","flatten_conjs","fmt_children","preds_chain","Exists","Indexed","None","Output","Pre","Sig","SigTable","Some","args","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","extend","filterable","filterable","filterable","filterable","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","get","get_bin_op_sig","get_un_op_sig","init","init","init","init","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","map","new","out","overflow","pre","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_ty","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","BIN_OPS","E","UN_OPS","arc","mk_bool_bin_ops","mk_neg","mk_not","mk_shift_ops","mk_signed_bin_ops","mk_unsigned_bin_ops","BIN_OPS","E","UN_OPS","arc","mk_neg","mk_signed_bin_ops","mk_unsigned_bin_ops","BasicBlockEnv","BasicBlockEnvData","BasicBlockEnvShape","Generalizer","TypeEnv","alloc","alloc_universal_loc","alloc_with_ty","assign","bindings","bindings","bindings","block_with","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_goto","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","constrs","data","default","default_cx","default_cx","default_cx","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","drop","drop","drop","drop","drop","enter","enter","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fold","fold_bty","fold_ty","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generalize","get","init","init","init","init","init","into","into","into","into","into","into_bb_env","into_infer","into_parts","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","join","join_bty","join_generic_arg","join_idx","join_ty","local_decls","lookup_place","move_place","new","new","new","pack_bty","pack_generic_arg","pack_ty","preds","pretty","projection","ptr_to_borrow","replace_evars","scope","scope","scope","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unblock","unfold","unpack","update","update_path","vars","visit_with","vzip","vzip","vzip","vzip","vzip","","","Binding","Box","CheckerResult","Cursor","Err","Error","Iter","LocKind","Local","LookupKey","LookupMode","LookupResult","NoUnfold","Ok","PlacesTree","Unfold","Unfolder","Universal","Updater","as_any","bindings","block_with","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","change_root","change_root","checker_conf","clone","clone","clone","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","cursor","cursor","cursor","default","default_cx","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast_enum","downcast_struct","downcast_struct","downcast_struct","downcast_struct","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","field","field","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","flatten","fmap_mut","fmt","fmt","fmt","fmt","fold","fold","fold_field_at","fold_ty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","genv","get","get_loc","get_loc_mut","has_work","in_ref","index","init","init","init","init","init","init","init","init","init","insert","insertions","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_strg","iter","iter_flatten","kind","loc","loc","lookup","lookup_inner","lookup_unfolding","map","new","new","new","new_ty","next","path","paths","pos","pretty","proj","proj","rcx","remove","reset","run","should_continue","struct_variant","to_owned","to_owned","to_owned","to_path","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_fmap_mut","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_fold_ty","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unblock","unfold","unfold","unfold_box","unpack","unpack","unpack","unpack","unpack_for_downcast","update","update","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"flux_refineck"],[20,"flux_refineck::checker"],[225,"flux_refineck::checker::errors"],[280,"flux_refineck::constraint_gen"],[487,"flux_refineck::errors"],[747,"flux_refineck::fixpoint_encoding"],[1088,"flux_refineck::fixpoint_encoding::fixpoint"],[1306,"flux_refineck::fixpoint_encoding::fixpoint::fixpoint_generated"],[1490,"flux_refineck::ghost_statements"],[1614,"flux_refineck::ghost_statements::fold_unfold"],[1822,"flux_refineck::ghost_statements::points_to"],[2207,"flux_refineck::invariants"],[2210,"flux_refineck::invariants::errors"],[2233,"flux_refineck::queue"],[2293,"flux_refineck::refine_tree"],[2640,"flux_refineck::refine_tree::AssumeInvariants"],[2641,"flux_refineck::refine_tree::pretty"],[2645,"flux_refineck::sigs"],[2741,"flux_refineck::sigs::default"],[2751,"flux_refineck::sigs::overflow"],[2758,"flux_refineck::type_env"],[2930,"flux_refineck::type_env::projection"],[3230,"flux_middle::global_env"],[3231,"rustc_span::span_encoding"],[3232,"flux_middle::rty::expr"],[3233,"core::option"],[3234,"rustc_span"],[3235,"flux_common::cache"],[3236,"rustc_span::def_id"],[3237,"core::result"],[3238,"alloc::vec"],[3239,"rustc_middle::arena"],[3240,"core::iter::traits::collect"],[3241,"rustc_hir"],[3242,"flux_middle::rty::expr"],[3243,"flux_middle::rty"],[3244,"rustc_type_ir::ty_kind"],[3245,"flux_middle::rty"],[3246,"flux_middle::rustc::mir"],[3247,"rustc_middle::mir"],[3248,"flux_middle::rustc::mir"],[3249,"flux_middle::rty"],[3250,"core::ops::function"],[3251,"rustc_infer::infer"],[3252,"core::convert"],[3253,"rustc_data_structures::graph::dominators"],[3254,"icu_provider_adapters::filter"],[3255,"core::fmt"],[3256,"core::fmt"],[3257,"flux_middle::rustc::mir"],[3258,"rustc_data_structures::unord"],[3259,"flux_middle::intern"],[3260,"rustc_middle::ty::context"],[3261,"core::any"],[3262,"flux_middle::queries"],[3263,"flux_middle::rty::evars"],[3264,"rustc_errors"],[3265,"rustc_errors::diagnostic_builder"],[3266,"core::any"],[3267,"flux_middle::rty"],[3268,"flux_middle::rty::expr"],[3269,"core::hash"],[3270,"flux_middle::rty"],[3271,"core::ops::function"],[3272,"core::marker"],[3273,"flux_fixpoint::constraint"],[3274,"flux_fixpoint::constraint"],[3275,"rustc_serialize::serialize"],[3276,"flux_middle::rty"],[3277,"flux_middle::rty::expr"],[3278,"std::io"],[3279,"flux_middle::rustc::ty"],[3280,"rustc_target::abi"],[3281,"rustc_middle::mir::statement"],[3282,"rustc_middle::mir"],[3283,"rustc_middle::mir::terminator"],[3284,"rustc_middle::mir"],[3285,"flux_middle::rty::expr"],[3286,"core::ops::function"],[3287,"alloc::collections::vec_deque"],[3288,"rustc_mir_dataflow::framework::engine"],[3289,"rustc_middle::mir"],[3290,"flux_common::index"],[3291,"alloc::string"],[3292,"flux_middle::rty::fold"]],"d":["","Raw content of Fluent resource for this crate, generated …","","","","","","","","","Encoding of the refinement tree into a fixpoint constraint.","Ghost statements are statements that are not part of the …","","","","","","","","","","","A Guard describes extra “control” information that …","The corresponding place was found to be of a particular …","","No extra information holds, e.g., for a plain goto.","A predicate that can be assumed, e.g., in the branches of …","","","The result of running the shape phase.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This checks obligations related to closures & generators; …","","","","","","","","","","","","","","","","","","","For check_terminator, the output Vec<BasicBlock, Guard> …","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","LocalDefId of the function-like item being checked.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Generics of the function being checked.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Exprs used to instantiate EarlyBinders for signature of …","The type used for the resume argument of a generator.","","","","","","","A snapshot of the refinement context at the end of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Snapshot of the refinement subtree where the obligations …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An alias for additional bindings introduced when ANF-ing …","Generate a conjunction of kvars, one per argument in …","","","","Environment used to map rty::Var into [fixpoint::Name]. …","","","","","How an rty::KVar is encoded in the fixpoint constraint","","","","Maximum value the index can take.","Maximum value the index can take, as a u32.","An alias for a list of predicate (conjuncts) and their …","Generate a single kvar appending the self arguments and …","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","Used to report bugs","","DefId of the item being checked. This could be a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Generate a fresh kvar under several layers of binders. The …","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","","","","","","","","","","","","","Extracts the value of this index as a usize.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Layers of late bound variables","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","","","","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","Creates a new index from a given usize.","","","","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","interpreted (theory) function","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","This module implements a points-to analysis for mutable …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","Partial mapping from [Place] to PlaceIndex, where some …","","This index uniquely identifies a place.","This is the information tracked for every PlaceIndex and …","Used as the result for r-value.","This implement a points to analysis for mutable references …","","","The dataflow state for an instance of [ValueAnalysis].","See State.","","","","This index uniquely identifies a tracked place and …","","","","","","","","","","","","","","Applies a single projection element, yielding the …","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","Helper method to interpret target = result.","","","","","","","","","","","","","","","","","","","","","","","","","Precompute the list of values inside root and store it …","Iterate over all direct children.","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns all locals with projections that have their …","","","","","","","","","","","Locates the given place, if it exists in the tree.","The left-most child.","","","","","","","","","","","","Invoke a function on the given place and all places that …","","","Invoke a function on each value in the given place and all …","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","Retrieve the value stored for a place, or ⊤ if it is not …","Retrieve the value stored for a place index, or ⊤ if it …","Retrieve the value stored for a place index if tracked","","","","","","The effect of a successful function call return should not …","","","","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","Low-level method that assigns to a place. This does …","Copies source to target, including all tracked places …","","Low-level method that assigns a value to a place. This …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Returns a map that only tracks places whose type has …","","","","","","Index of the sibling to the right of this node.","","","","","","The projection used to go from parent to this node (only …","","Register all non-excluded places that have scalar layout.","Potentially register the (local, projection) place and its …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","We store a ValueIndex if and only if the placed is tracked …","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A refinement context tracks all the refinement parameters …","A reference to a subtree rooted at a particular node in a …","A refinement tree tracks the “tree-like structure” of …","A ist of refinement variables and their sorts.","A snapshot of a RefineCtxt at a particular point during …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","Defines a fresh refinement variable with the given sort. …","Given a sort that may contain nested tuples, it destructs …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Whether t has any free variables not in this scope","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns true if the node kind is ForAll.","Returns true if the node kind is Head.","","","","","Number of bindings between the root and this node’s …","","","","","","","","","","","","","","","","","","","","","","","Returns the scope at the snapshot if it is still valid or …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","We keep a reference to the underlying RefineTree to prove …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This set of signatures does not check for overflow. They …","","","","","","","This set of signatures checks for overflow and underflow. …","","","","","","","","","","","","","","","","","","","When checking a borrow in the right hand side of an …","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","join(self, genv, other) consumes the bindings in other, to …","","","","","","","","","","","","","","","","","Converts a pointer ptr(mut, l) to a borrow &mut T for a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","","","","","","","","","Contains the success value","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","In contrast (w.r.t. struct) downcast on enum works as …","downcast on struct works as follows Given a struct …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,31,0,31,31,0,0,0,8,8,8,8,46,47,21,0,0,21,46,47,72,31,8,21,46,47,72,31,8,21,21,21,21,21,21,21,21,21,21,21,21,28,46,47,21,21,21,21,21,21,21,8,21,21,21,21,21,28,46,47,8,8,21,46,47,72,31,8,21,28,21,46,47,21,21,46,47,72,31,8,21,46,47,72,31,8,21,21,46,47,72,31,8,28,46,47,0,21,46,47,72,31,8,8,21,21,46,46,47,47,72,72,31,31,8,8,21,46,47,72,31,8,21,21,21,21,21,21,46,47,72,31,8,0,0,21,46,47,72,31,8,72,21,46,47,72,31,8,21,47,21,21,21,21,21,21,21,21,8,0,21,21,8,21,46,47,72,31,8,21,46,47,72,31,8,21,46,47,72,31,8,21,46,47,72,31,8,21,46,47,72,31,8,0,0,0,21,21,46,47,72,31,8,0,0,83,83,259,83,83,0,27,83,27,83,27,83,27,83,27,83,27,83,27,83,83,27,27,83,83,83,83,27,83,27,83,27,83,27,27,83,27,27,27,27,83,27,83,27,83,27,83,27,83,27,83,259,259,95,95,95,0,0,95,95,95,0,0,0,95,95,95,95,0,11,11,95,95,11,11,95,95,11,95,59,42,89,11,95,59,42,89,11,95,89,89,59,59,59,59,59,89,59,89,11,95,11,95,59,42,89,11,95,59,89,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,11,11,95,11,95,11,11,11,11,11,95,95,95,95,95,89,59,42,89,11,95,11,11,95,100,100,89,89,89,89,59,59,42,42,89,89,11,11,95,95,59,42,89,11,95,89,59,89,11,95,89,59,59,42,89,11,95,89,89,89,59,42,89,11,95,59,42,89,11,95,59,89,0,0,59,42,89,11,89,89,89,59,89,89,42,0,89,89,11,59,89,59,89,89,42,89,59,11,59,89,89,11,95,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,89,59,42,89,11,95,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,113,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,114,114,115,117,110,113,114,118,119,120,121,122,123,114,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,115,117,117,110,110,113,113,114,114,118,118,119,119,120,120,121,121,122,122,123,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,120,114,114,115,117,110,113,114,118,119,120,121,122,123,114,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,0,99,140,0,0,0,0,0,0,0,0,0,0,0,124,124,0,99,0,140,124,124,124,99,99,124,124,99,99,124,140,125,124,124,125,124,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,260,261,125,124,136,99,124,136,99,124,125,156,145,126,142,124,73,136,99,140,125,124,124,125,126,262,126,124,125,125,73,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,124,136,125,126,124,140,124,140,124,124,124,124,124,140,140,140,140,140,126,126,125,156,145,126,142,124,73,136,99,140,0,0,125,124,124,124,73,73,145,125,125,156,156,145,145,126,126,142,142,124,124,124,124,73,73,136,136,99,99,140,140,125,156,145,126,142,124,73,136,99,140,124,124,124,124,0,126,145,125,73,145,145,124,140,262,125,124,124,125,156,145,126,142,124,73,136,99,140,263,145,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,125,125,73,125,145,145,260,261,145,142,125,156,145,126,124,73,156,124,125,125,125,124,145,0,145,136,142,0,156,136,124,0,142,125,125,125,124,136,99,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,124,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,126,125,156,145,126,142,124,73,136,99,140,142,126,125,156,145,126,142,124,73,136,99,140,125,163,0,0,163,0,162,146,133,162,146,133,0,162,146,133,162,162,146,146,133,133,163,163,162,162,146,146,133,133,163,163,162,146,133,162,146,133,162,146,133,162,146,133,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,162,146,133,163,162,162,146,146,133,133,162,146,133,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,162,146,133,162,146,133,162,162,162,162,162,146,146,146,146,146,133,133,133,133,133,162,146,133,163,0,162,162,146,133,163,163,162,146,133,162,162,162,162,146,146,146,146,133,133,133,133,163,163,163,163,162,146,133,163,162,146,133,162,146,133,162,146,133,162,146,133,163,162,162,146,146,133,133,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,162,146,133,162,146,133,162,146,133,162,146,133,163,162,146,133,163,162,146,133,163,162,163,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,163,264,153,265,265,153,153,266,0,265,0,0,264,0,266,165,0,153,266,265,153,267,0,264,164,153,265,0,0,266,0,265,0,153,164,165,0,0,0,265,153,265,265,267,165,165,165,165,268,268,153,164,148,165,131,153,164,148,165,131,153,164,148,165,153,164,148,165,153,164,148,165,131,269,270,270,270,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,153,164,148,153,153,164,164,148,148,165,165,131,131,153,164,148,165,131,148,268,153,164,148,165,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,270,269,271,268,148,271,148,270,270,271,269,270,153,164,148,165,153,164,148,165,131,153,164,148,165,131,153,164,148,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,45,0,44,0,0,45,0,0,44,0,44,44,68,0,45,45,45,45,45,68,68,68,272,273,68,44,167,45,68,44,167,45,45,45,68,44,167,45,0,68,44,167,45,68,44,167,45,68,44,167,45,45,45,45,45,45,45,45,68,68,44,167,45,44,45,0,68,68,44,44,167,167,45,45,68,44,167,45,45,68,44,167,45,167,68,68,44,167,45,68,44,167,45,68,167,0,68,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,173,173,173,0,0,178,0,173,0,181,0,172,178,181,0,0,0,173,173,178,0,170,170,170,170,179,180,181,171,178,173,170,179,180,181,171,178,173,171,173,171,173,170,179,180,181,171,178,173,173,171,171,173,173,170,179,180,181,171,178,173,173,170,179,180,181,171,178,173,170,0,171,173,0,170,179,180,181,171,178,173,173,173,170,179,180,181,171,178,173,171,178,173,173,170,170,179,179,180,180,181,181,171,171,178,178,173,173,170,179,180,181,171,178,173,170,170,172,179,180,170,179,180,181,171,178,173,180,170,179,180,181,171,178,173,170,179,180,181,171,178,173,171,173,170,171,170,170,171,170,172,179,180,171,170,172,179,180,170,170,180,170,171,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,171,170,170,179,180,181,171,178,173,0,0,182,183,182,183,0,196,0,0,0,0,197,0,0,0,196,197,196,0,274,182,183,0,182,182,183,183,182,182,183,183,274,185,186,186,186,186,182,183,197,194,182,183,182,183,194,182,183,207,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,185,185,182,183,197,194,197,194,182,183,197,194,182,183,186,207,208,196,185,203,182,183,197,194,182,182,183,183,0,0,182,183,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,182,183,274,182,183,197,194,182,183,197,194,182,182,182,182,182,183,183,183,183,183,197,197,197,197,197,194,194,194,194,194,0,186,207,208,196,185,203,182,183,197,194,185,203,194,194,185,203,182,183,197,194,194,194,186,185,185,185,185,182,183,186,186,207,207,208,208,196,196,185,185,203,203,182,182,182,182,183,183,183,183,197,197,194,194,186,207,208,196,185,203,182,183,197,194,182,183,182,183,182,183,194,194,194,186,186,186,186,186,186,182,183,182,182,183,183,186,207,208,196,185,203,182,183,197,194,186,185,185,194,194,207,194,186,207,208,196,185,203,182,183,197,194,208,186,207,208,196,185,203,182,183,197,194,194,185,186,207,208,186,207,208,185,203,182,183,208,208,203,182,183,185,182,183,203,185,185,185,182,183,207,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,207,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,185,203,194,207,207,207,186,207,208,196,185,203,182,183,197,194,0,0,0,0,0,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,0,0,217,217,217,218,217,218,217,217,218,217,217,217,218,217,218,217,218,217,218,218,217,217,217,217,217,217,217,217,218,217,217,218,218,217,218,218,217,218,218,217,218,217,218,217,218,218,217,218,217,218,217,218,217,218,217,218,217,218,0,228,228,228,228,228,225,0,0,0,0,0,0,0,0,0,228,0,0,225,144,79,22,22,221,22,144,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,22,22,22,223,0,76,219,219,79,76,22,49,223,220,228,221,225,226,144,219,144,144,22,22,79,76,22,49,223,220,228,221,225,226,144,219,219,79,76,22,49,223,220,228,221,225,226,144,219,219,79,76,22,49,223,220,228,221,225,226,144,219,144,144,144,144,144,144,144,79,76,22,49,223,220,228,221,225,226,144,219,79,79,76,76,22,22,144,144,219,221,221,79,79,76,76,22,22,49,49,223,223,220,220,228,228,221,221,225,225,226,226,144,144,219,219,79,76,22,49,223,220,228,221,225,226,144,219,144,221,144,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,79,226,79,76,22,49,223,220,228,221,225,226,144,219,223,223,223,144,223,219,223,79,221,226,226,219,223,0,22,49,226,22,219,219,221,76,79,76,22,223,79,76,22,49,221,221,79,223,22,22,223,219,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,76,22,221,221,221,221,221,221,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,22,221,221,221,221,221,22,220,79,76,22,49,223,220,228,221,225,226,144,219,225,275,0,0,0,0,234,234,276,0,0,0,0,276,233,233,276,234,231,233,276,234,231,233,276,234,231,0,233,276,234,231,233,276,234,231,233,276,234,231,231,233,276,234,231,233,233,276,276,234,234,231,231,233,276,234,231,231,0,0,233,276,234,231,233,276,234,231,233,276,234,231,231,231,233,0,233,233,276,234,231,233,276,234,231,234,233,276,234,231,233,276,234,231,233,276,234,231,233,276,234,231,0,0,0,277,0,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,23,23,23,23,236,240,23,23,236,74,240,238,23,23,236,74,240,238,23,23,23,23,236,74,240,238,23,240,74,23,236,74,23,236,74,240,238,23,236,74,240,238,23,23,236,74,240,238,23,236,74,236,74,240,238,23,236,236,74,74,23,23,23,238,238,236,236,74,74,240,240,238,238,23,23,236,74,240,238,23,238,23,236,74,240,238,23,236,74,240,238,23,236,23,238,236,74,240,238,23,236,236,236,236,236,23,23,23,236,238,23,236,236,236,238,0,0,23,23,74,236,74,23,236,74,240,238,23,236,74,240,238,23,238,238,238,238,238,238,240,236,74,240,238,23,236,74,240,238,23,236,74,240,238,23,23,23,23,236,23,238,240,236,74,240,238,23,0,0,0,249,0,0,279,256,255,0,249,0,0,0,0,279,0,0,0,249,0,249,244,244,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,245,246,245,247,248,249,247,248,249,244,252,253,245,250,246,247,248,249,244,245,250,247,247,244,252,253,245,245,250,250,246,247,248,249,244,252,253,245,250,246,247,248,249,0,245,0,0,256,252,253,244,252,253,245,250,246,247,248,249,249,249,249,249,249,249,249,245,250,244,252,253,245,250,246,247,248,249,247,247,247,247,249,249,0,244,250,250,244,244,252,252,253,253,245,245,250,250,246,246,247,247,248,248,249,249,244,252,253,245,250,246,247,248,249,245,247,247,247,245,245,245,244,252,253,245,250,246,247,248,249,247,245,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,244,247,247,248,255,246,247,247,247,247,245,250,246,250,246,244,247,246,0,255,246,245,247,246,245,245,0,247,248,249,246,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,247,250,250,250,250,250,245,250,247,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,244,248,244,252,253,245,250,246,247,248,249,244,245,247,245,256,252,253,245,245,244,250,247,244,252,253,245,250,246,247,248,249],"f":[0,0,0,0,[[1,2,[4,[3]]],5],[[1,6,7,8],[[10,[9,5]]]],0,0,0,0,0,0,0,0,0,[[1,[12,[11]]],[[10,[9,5]]]],[[1,2,[4,[3]]],5],0,0,0,0,0,0,0,0,0,0,0,0,0,[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],0,0,0,[[17,18],19],[[17,20],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1]],22,23,2,[14,[24]]],[[10,[[10,[[12,[[26,[25]]]],27]],27]]],28],[[[21,[-1]],22,23,2,24,29,30],[[10,[31,27]]],28],[[[21,[-1]],22,23,32,19,33],[[10,[9,27]]],28],[[[21,[-1]],22,23,34],[[10,[9,27]]],28],[[[21,[-1]],22,23,2,35,24,24],[[10,[19,27]]],28],[[[21,[-1]],22,23,2,[4,[36]],[38,[37]],[14,[39]],[14,[19]]],[[10,[19,27]]],28],[[[21,[-1]],40,19,41],[[10,[19,27]]],28],[[[21,[-1]],22,42],[[10,[9,27]]],28],[[[21,[-1]],43],[[10,[19,27]]],28],[[[21,[-1]],22,23,44,2],[[10,[9,27]]],28],[[[21,[-1]],22,23,45,2],[[10,[9,27]]],28],[[[21,[-1]],22,23,34,2,34],[[10,[9,27]]],28],[[[21,[-1]],22,23,2,34],[[10,[29,27]]],[]],[[[21,[46]],22,23,2,34],[[10,[29,27]]]],[[[21,[47]],22,23,2,34],[[10,[29,27]]]],[[19,48],[[12,[[9,[34,31]]]]]],[[[21,[-1]],22,23,2,32],[[10,[19,27]]],28],[[19,48],[[12,[[9,[34,31]]]]]],[[[21,[-1]],22,49,50],[[10,[9,27]]],28],[[[21,[-1]],22,49,51],[[10,[9,27]]],28],[[[21,[-1]],22,23,2,24],[[10,[19,27]]],28],[[[21,[-1]],22,23,2,[14,[24]]],[[10,[[12,[19]],27]]],28],0,[[[21,[-1]],22,23,2,52],[[10,[19,27]]],28],[[[21,[-1]],22,23,53],[[10,[9,27]]],28],[[[21,[-1]],22,23,34,2,[12,[[9,[34,31]]]]],[[10,[9,27]]],28],[[[21,[-1]],22,23,54,[4,[2]]],[[10,[[12,[[9,[34,31]]]],27]]],28],[[[21,[-1]],22,23,2,55,24],[[10,[19,27]]],28],[[[21,[-1]],34],9,[]],[[[21,[46]],34],9],[[[21,[47]],34],9],[8,8],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[[-1,1,58,-2,[14,[17]],22,2],59,[],[[60,[36]]]],[[[21,[-1]],22,2],59,28],[[46,1,58,-1,[14,[17]],22,2],59,[[60,[36]]]],[[47,1,58,-1,[14,[17]],22,2],59,[[60,[36]]]],0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[[21,[-1]]],[[62,[34]]],28],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[[21,[-1]],22,34],23,[]],[[[21,[46]],22,34],23],[[[21,[47]],22,34],23],0,[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[8,65],66],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,0,[[[21,[-1]]],68,28],0,[[],61],[[22,69,70,8],23],[[],61],[[],61],[[],61],[[],61],[[],61],[18,71],[[17,18,18],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[72,73],[[75,[7,[75,[34,74]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1]],34],29,28],0,0,0,0,0,0,[[1,76,7,[77,[7,68]],-1,[38,[37]],[4,[[78,[17]]]],8],[[10,[9,27]]],28],[[1,7,[77,[7,68]],72,8],[[10,[[9,[79,73]],27]]]],[[1,7,[77,[7,68]],8],[[10,[72,27]]]],0,[[69,[80,[34,[4,[49]]]],34],49],[[[21,[-1]],34],49,28],0,[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[20,71],[[17,20,18],19],[[17,20,20],19],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[83,65],66],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[84,83],[[[10,[-1]]],-1,[]],[85,83],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[[27,86],[[87,[5]]]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[36,2],27],0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,2],[[10,[27]]],[]],[[-1,33],[[10,[27]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[-1,88,[]],[-1,88,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[89,22,90,90],[[10,[9,83]]]],[[89,22,23,91],[[10,[9,83]]]],[[59,22,[38,[92]],[14,[39]],[14,[19]]],[[10,[19,83]]]],[[59,22,23,[4,[36]],[38,[37]],[14,[39]],[14,[19]]],[[10,[[9,[[94,[93]],42]],83]]]],[[59,36,[14,[39]]],[[10,[9,83]]]],[[59,22,23,[14,[19]],19],[[10,[19,83]]]],[[59,22,-1,95],9,[[60,[17]]]],[[89,22,-1],9,[[60,[17]]]],[[59,22,23,[94,[93]]],[[10,[42,83]]]],[[89,22,23,96,19],[[10,[9,83]]]],[11,11],[95,95],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],0,[[11,11],29],[[95,95],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],0,[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[11,97,65],66],[[11,65],66],[[95,65],66],[[-1,[14,[[78,[98]]]],99],17,[]],[[100,[14,[[78,[98]]]],99],17],[[89,98],17],[[89,98,101],17],[[89,[14,[[78,[98]]]],102],17],[[89,[14,[[78,[98]]]],99],17],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[89,22,103,39,39],[[10,[9,83]]]],0,0,[[11,-1],9,104],[[95,-1],9,104],[[89,22,17,17,[105,[29]]],9],[[59,22,95],89],[[],61],[[],61],[[],61],[[],61],[[],61],[[89,[12,[106]]],9],[[89,[14,[39]]],[[12,[39]]]],[[89,1,[4,[36]]],[[10,[[12,[17]],83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[1,36,107,36],[[10,[[12,[106]],83]]]],[[1,36,[14,[39]],[14,[17]]],[[10,[[78,[106]],83]]]],[[1,58,36,[14,[17]],-1,2],59,100],[[[78,[106]],49],42],[[1,58,36,[14,[17]],22,100,11],89],[[95,2],11],[89,[[12,[106]]]],0,[[89,22,19,108],[[10,[9,83]]]],[[59,23,[14,[19]]],[[10,[[12,[19]],83]]]],[89,9],[[89,22,[94,[17]],[94,[17]]],9],0,0,[[89,19,36],[[10,[19,83]]]],[[89,22],9],0,0,0,0,0,0,0,[89,[[10,[109,85]]]],0,0,[[59,22,19,19,95],9],[[89,22,19,19],[[10,[9,83]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[89,17,17,29],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[11,[4,[3]]],11],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[110,111,-1],9,112],[[113,111,-1],9,112],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[2,[4,[3]]],114],0,[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[115,86],[[87,[-1]]],116],[[117,86],[[87,[-1]]],116],[[114,86],[[87,[-1]]],116],[[118,86],[[87,[-1]]],116],[[119,86],[[87,[-1]]],116],[[120,86],[[87,[-1]]],116],[[121,86],[[87,[-1]]],116],[[122,86],[[87,[-1]]],116],[[123,86],[[87,[-1]]],116],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[63,2,[4,[3]]],114],[[2,[4,[3]]],114],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[124,61],124],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[-1,88,[]],[-1,88,[]],[[[125,[-1]]],126,[127,128,129]],[124,130],[124,61],[[[132,[131]],133,134],[[132,[131]]]],[[124,61],[[4,[124]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[125,[-1]],6,[132,[131]],8],[[135,[[12,[-1]]]]],[127,128,129]],[124,124],[136,136],[99,99],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[124,124],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],0,0,0,0,[-1,124,138],0,[[[125,[-1]]],2,[127,128,129]],[[],73],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[124,-1],9,139],0,0,0,[[124,124],29],[[140,140],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[126,17],[[141,[131]]]],[[126,-1],[[12,[[141,[131]]]]],15],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],0,[1,[[143,[140,142]]]],0,[[124,65],66],[[124,65],66],[[124,61],[[4,[124]]]],[[73,[14,[[78,[98]]]],144,99],17],[[73,61,-1,99],17,15],[145,146],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[61,124],[130,124],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[63,[[10,[124]]]],[130,124],[130,124],[61,124],[147,148],[[126,17],[[149,[131]]]],0,0,[[73,150],136],[[145,151],[[4,[146]]]],[[145,152,130],[[4,[146]]]],[[124,-1],9,104],[[140,-1],9,104],0,[[[125,[-1]],17,98,[12,[[9,[146,153,[141,[131]]]]]]],146,[127,128,129]],[124,61],[124,61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],0,[[145,151],146],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[125,[-1]],154,[12,[[9,[146,153,[141,[131]]]]]]],[[155,[131]]],[127,128,129]],0,0,0,[145,[[14,[146]]]],0,0,0,0,0,[[1,7,73],[[125,[-1]]],[127,128,129]],[[[12,[153]],150],156],[[],145],[[145,[143,[140,142]],2],126],[61,124],[[],73],0,[[124,124],[[4,[137]]]],[[[125,[-1]],150],9,[127,128,129]],[[[125,[-1]],17],[[9,[[12,[[9,[146,153,[141,[131]]]]]],[12,[[9,[[155,[131]],[4,[3]]]]]]]]],[127,128,129]],[[[125,[-1]],17,[12,[[9,[146,153,[141,[131]]]]]],[12,[[9,[[155,[131]],[4,[3]]]]]]],9,[127,128,129]],0,[[145,61],9],[[2,[143,[140,142]],157],[[158,[131]]]],[[145,151],9],0,0,[98,153],0,0,[[124,124],[[4,[61]]]],[[[12,[[9,[146,153,[141,[131]]]]]],[132,[131]]],[[132,[131]]]],0,[[[125,[-1]],-1],124,[159,127,128,129]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,160,[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[126,[14,[17]]],[[141,[131]]]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],0,[[126,161],146],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[125,[-1]],151,-2],-3,[127,128,129],57,[]],0,0,0,0,0,0,0,0,0,0,0,0,[[162,61],162],[[146,61],146],[[133,61],133],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[-1,88,[]],[-1,88,[]],[-1,88,[]],[162,130],[146,130],[133,130],[162,61],[146,61],[133,61],[[162,61],[[4,[162]]]],[[146,61],[[4,[146]]]],[[133,61],[[4,[133]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[162,162],[146,146],[133,133],[163,163],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[162,162],137],[[146,146],137],[[133,133],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[-1,162,138],[-1,146,138],[-1,133,138],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[[162,-1],9,139],[[146,-1],9,139],[[133,-1],9,139],[[162,162],29],[[146,146],29],[[133,133],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],0,[[162,65],66],[[162,65],66],[[146,65],66],[[133,65],66],[[163,65],66],[[163,65],66],[[162,61],[[4,[162]]]],[[146,61],[[4,[146]]]],[[133,61],[[4,[133]]]],[61,162],[-1,-1,[]],[[[10,[-1]]],-1,[]],[130,162],[[[10,[-1]]],-1,[]],[-1,-1,[]],[61,146],[130,146],[130,133],[-1,-1,[]],[[[10,[-1]]],-1,[]],[61,133],[146,163],[133,163],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[130,162],[130,146],[130,133],[130,162],[130,146],[130,133],[61,162],[61,146],[61,133],[[162,-1],9,104],[[146,-1],9,104],[[133,-1],9,104],[[163,-1],9,104],[162,61],[162,61],[146,61],[146,61],[133,61],[133,61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[61,162],[61,146],[61,133],[[162,162],[[4,[137]]]],[[146,146],[[4,[137]]]],[[133,133],[[4,[137]]]],0,0,0,[[162,162],[[4,[61]]]],[[146,146],[[4,[61]]]],[[133,133],[[4,[61]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,160,[]],[-1,160,[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[153,153],[164,164],[148,148],[165,165],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,0,0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[153,65],[[10,[9,166]]]],[[164,65],[[10,[9,166]]]],[[148,65],[[10,[9,166]]]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,0,[[153,-1],9,104],[[164,-1],9,104],[[148,-1],9,104],[[165,-1],9,104],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[61,-1,153],148,15],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,160,[]],[-1,160,[]],[-1,160,[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[68,69],9],[[81,7],[[0,[56]]]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[-1,88,[]],[[68,45],167],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[45,45],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[1,7],[[135,[[77,[7,68]]]]]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[[45,45],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[68,45,-1],9,15],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[44,65],66],[[45,65],66],0,[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[45,-1],9,104],[[],61],[[],61],[[],61],[[],61],[[167,44],9],[[68,45,44],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1,7],[[135,[68]]]],0,0,[[68,45],[[0,[56]]]],0,[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[68,81,69,-1],[[168,[9]]],169],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[68,1,69],135],[[[170,[-1]],34,171],135,172],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[171,171],[173,173],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[173,173,32,167],9],[[171,171,167],9],[[171,69,167],9],[[173,32,167],9],[[173,32,167],29],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[173,[[9,[173,29]]]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],0,[[1,174,175,176],[[135,[[12,[173]]]]]],[[171,1,32,176],135],[[173,1,176],[[135,[[9,[173,29]]]]]],[[1,174,175],[[135,[[12,[173]]]]]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[173,1,177],[[135,[[9,[173,29]]]]]],[[173,1],[[135,[[9,[[12,[173]],29]]]]]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[171,65],66],[[178,65],66],[[173,65],66],[173,29],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,[[[170,[-1]],34,34,171],135,172],[[[170,[-1]],34,34,171],[[135,[29]]],[]],[[[170,[179]],34,34,171],[[135,[29]]]],[[[170,[180]],34,34,171],[[135,[29]]]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[180,45,44],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[171,1,171],[[135,[29]]]],[[173,1,173,29],[[135,[[9,[29,29]]]]]],0,0,0,[[1,69,[75,[34,171]],-1],[[170,[-1]]],[]],[69,171],[[[170,[-1]],24,171],135,172],[[[170,[-1]],171,32,181],135,[]],[[[170,[179]],171,32,181],135],[[[170,[180]],171,32,181],135],[[171,1,32],[[135,[178]]]],0,[[[170,[-1]],34,171],9,[]],[[[170,[179]],34,171],9],[[[170,[180]],34,171],9],[[[170,[-1]]],135,172],[[[170,[-1]],53,171],135,172],0,[[[170,[-1]],54,171],135,172],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[171,1,32],[[135,[[9,[173,29]]]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[182,61],182],[[183,61],183],[[68,1,184,7],135],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],0,[[185,182,177],[[4,[182]]]],[[186,34,187],9],[[186,188,189],9],[[186,34,190,-1],9,191],[[186,192,189],193],[-1,88,[]],[-1,88,[]],[-1,88,[]],[-1,88,[]],[182,130],[183,130],[182,61],[183,61],[[194,195,196,185],9],[[182,61],[[4,[182]]]],[[183,61],[[4,[183]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[186,184]],[[185,182],9],[[185,182],[[0,[56]]]],[182,182],[183,183],[197,197],[194,194],[[197,197],9],[[194,194],9],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[182,182],137],[[183,183],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[[198,[183,-1]],[4,[[198,[183,-1]]]],185,65],66,[159,128]],[[182,63,[198,[183,-1]],[4,[[198,[183,-1]]]],185,65],66,[159,128]],[-1,182,138],[-1,183,138],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[182,-1],9,139],[[183,-1],9,139],0,[[182,182],29],[[183,183],29],[[197,197],29],[[194,194],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[184,[[200,[199]]]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[185,195],[[4,[182]]]],0,[[194,195,185],9],[[194,195,185,[202,[201]]],9],[[185,65],66],[[203,65],66],[[182,65],66],[[183,65],66],[[197,65],66],[[194,65],66],[[194,194,186,65],66],[[194,186,65],66],0,[[185,195,-1],9,204],[[185,-1],9,204],[[185,182,[12,[177]],-1],9,204],[[185,182,-1],9,204],[[182,61],[[4,[182]]]],[[183,61],[[4,[183]]]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[130,182],[61,182],[130,183],[-1,-1,[]],[61,183],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[130,182],[130,183],[130,182],[130,183],[61,182],[61,183],[[194,195,185],[[202,[201]]]],[[194,182,185],[[202,[201]]]],[[194,182,185],[[4,[[202,[201]]]]]],[[186,205,206,194],9],[[186,187,194],9],[[186,190],[[4,[182]]]],[[186,205,194],[[202,[201]]]],[[186,188,194],9],[[186,192,194],193],[[182,-1],9,104],[[183,-1],9,104],[182,61],[182,61],[183,61],[183,61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[186,184],9],0,0,[[194,182,196,185],9],[[194,182,182,185],9],[[207,45,194,194],9],[[194,182,[202,[201]],185],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[194,194],29],0,0,0,0,[[185,[4,[[38,[37]]]]],186],[[185,68],207],[[185,182],208],[184,185],[[[4,[177]]],203],[61,182],[61,183],[208,4],0,0,[[182,182],[[4,[137]]]],[[183,183],[[4,[137]]]],0,0,0,0,0,[[185,184,[200,[199]]],9],[[185,182,209,[210,[[9,[182,177,209]]]]],9],[[182,182],[[4,[61]]]],[[183,183],[[4,[61]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],0,[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],0,0,0,[[207,[211,[186]],194,212,34],9],[[207,[211,[186]],188,189],9],[[207,[211,[186]],188,189],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1,6,7,213,2,214,8],[[10,[9,5]]]],[[1,6,7,[14,[215]],213,8],[[10,[9,5]]]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,56,57,[]],[61,-1,[]],[61,-1,[]],[61,9],[[-1,63],[[64,[-2]]],[],[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[],61],[-1,-2,[],[]],[[216,86],[[87,[-1]]],116],[-1,-2,[],[]],0,[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,-2,[],[]],0,0,[-1,88,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[217,217],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],0,0,[61,9],[61,9],[[61,[62,[34]]],218],[[217,217],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,[[],61],[[],61],[[218,34],29],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[217,217],[[4,[137]]]],[218,[[4,[34]]]],0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,88,[]],[79,76],[22,76],[[22,19,29],9],0,[[22,-1],9,[[60,[17]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[22,22],[[22,-1,-2,11],9,[[60,[17]]],[[60,[17]]]],[[22,-1,11],9,[[60,[17]]]],0,[[[125,[11]],[14,[219]]],[[4,[[132,[131]]]]]],[[76,49],9],[219,219],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[144,151],29],[[144,-1],29,15],[[22,98],151],[[22,98],17],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[219],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[219,220],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[144,144],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[79,65],66],[[79,97,65],66],[[76,65],66],[[76,97,65],66],[[22,65],66],[[22,97,65],66],[[144,97,65],66],[[144,65],66],[[219,97,65],66],[[221,90],90],[[221,19],19],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[144,-1],29,222],0,[[144,151]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[79,[125,[11]]],[[132,[131]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[223,29],[223,29],[223,29],[144,[[0,[56]]]],0,[219,[[224,[151]]]],0,[[],79],[[22,225],221],[219,226],[226,4],[219,61],0,0,0,0,0,[[22,-1],22,227],[[219,-1],9,[[60,[17]]]],[[219,228],219],0,[[76,49],[[4,[22]]]],[79,22],[76,22],[[22,109],9],[[223,109],9],0,0,[22,144],[49,[[4,[144]]]],[[221,29],221],0,[79,9],[223,9],[22,49],[[22,49],[[4,[76]]]],[[223,[125,[11]]],[[4,[[132,[131]]]]]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],0,0,[[-1,[94,[-2]]],[[10,[[94,[-2]]]]],[],222],[[-1,90],[[10,[90]]],[]],[[-1,[26,[229]]],[[10,[[26,[229]]]]],[]],[[-1,230],[[10,[230]]],[]],[[-1,98],[[10,[98]]],[]],[[-1,[26,[25]]],[[10,[[26,[25]]]]],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[22,19,225],19],[[221,19],19],[[221,29],221],0,[[221,29],221],0,[[22,225],221],[220,[[4,[219]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[29,225],0,[219,[[9,[[12,[[9,[151,98]]]],[12,[219]]]]]],[[[14,[219]]],[[12,[219]]]],[[[14,[219]],97,65],66],[219,[[9,[[12,[17]],[12,[219]]]]]],0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[[[231,[-1]],-2],9,[127,128,159],15],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[[231,[-1]],-1,[232,[90]]],233,[127,128,159]],[[35,90,90,29],233],[[55,90,29],233],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],[[231,[-1]]],[128,127]],0,0,0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[234,[232,[17]]],19],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[],[[0,[15]]]],[[],[[0,[56]]]],[[],[[9,[55,233]]]],[[],[[0,[15]]]],[[],[[0,[56]]]],[[],[[0,[56]]]],0,0,0,0,[[],[[0,[56]]]],[[],[[0,[56]]]],[[],[[0,[56]]]],0,0,0,0,0,[[23,199],9],[[23,201,19],9],[[23,199,19],9],[[23,22,59,32,19],[[10,[9,83]]]],0,0,0,[[23,96,19],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[23,1,22,230,235,32],[[10,[19,83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[23,22,59,74,34],[[10,[9,83]]]],[23,23],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,[[],23],[81,97],[81,97],[81,97],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[23,1,22,32,176,8],[[10,[9,83]]]],[61,9],[61,9],[61,9],[61,9],[61,9],[[236,237],23],[[74,22,237],23],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[236,65],66],[[236,97,65],66],[[74,97,65],66],[[74,65],66],[[23,97,65],66],[[23,65],66],[[23,22,59,32],[[10,[9,83]]]],[[238,90],90],[[238,19],19],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[238,19],19],[[23,96],19],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[236,73],74],[[23,144],[[10,[236,83]]]],[238,[[9,[[78,[239]],[12,[17]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[236,23],[[10,[29,83]]]],[[236,90,90],90],[[236,39,39],39],[[236,17,17,98,[12,[98]]],17],[[236,19,19],19],0,[[23,1,22,32],[[10,[19,83]]]],[[23,1,22,32],[[10,[19,83]]]],[[144,23],[[10,[236,83]]]],[[],238],[237,23],[[144,90],90],[[144,39],39],[[144,19],19],0,0,0,[[23,22,59,32],[[10,[9,83]]]],[[23,109],9],[74,144],0,0,[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[-1,[94,[-2]]],[[10,[[94,[-2]]]]],[],222],[[-1,90],[[10,[90]]],[]],[[-1,[26,[229]]],[[10,[[26,[229]]]]],[]],[[-1,230],[[10,[230]]],[]],[[-1,98],[[10,[98]]],[]],[[-1,[26,[25]]],[[10,[[26,[25]]]]],[]],[[240,-1],[[10,[240]]],241],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[23,22,32,29],9],[[23,1,22,32,8],[[10,[9,83]]]],[[23,22,29],9],[[236,96,19],9],[[23,96,19],9],0,[[240,-1],[[242,[9]]],243],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,88,[]],0,[[244,19],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[245,96],9],[[246,96],9],0,[247,247],[248,248],[249,249],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,0,[[],247],[81,97],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[245,19],[[10,[19,83]]]],[61,-1,[]],[61,-1,[]],[[250,19],19],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[1,22,213,[14,[39]],176,251],[[10,[[12,[19]],83]]]],[[245,19,176],[[10,[19,83]]]],[[1,22,213,176,[14,[39]],251],[[10,[[12,[19]],83]]]],[[1,213,[14,[39]],251],[[10,[[12,[19]],83]]]],[[-1,213,[14,[39]],251],[[10,[[12,[19]]]]],[]],[[252,213,[14,[39]],251],[[10,[[12,[19]]]]]],[[253,213,[14,[39]],251],[[10,[[12,[19]],254]]]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[249,249],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[245,19,177],[[10,[19,83]]]],[[250,19,177],19],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[247,[[12,[[9,[96,249,19]]]]]],[[247,-1],9,204],[[247,65],66],[[247,97,65],66],[[249,65],66],[[249,97,65],66],[[247,22,59,19,29],[[10,[19,83]]]],[[244,22,59],[[10,[19,83]]]],[[250,[14,[19]],177],[[78,[19]]]],[[250,19],19],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,[[247,96],19],[[247,201],248],[[247,201],248],0,0,[[245,19],[[10,[9,83]]]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[247,201,249,19],9],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[247,[[0,[56]]]],[[247,-1],9,204],0,[-1,201,[]],0,[[247,-1],244,255],[[247,-1,-2],[[10,[244]]],255,256],[[247,1,22,-1],[[10,[244,83]]],255],0,[[1,22,-1,8],245,255],[[246,19],250],[-1,246,255],0,[246,[[4,[257]]]],[244,96],[247,[[12,[96]]]],0,0,[-1,[],[]],0,0,[[247,201],248],[246,9],[[245,247],[[10,[9,83]]]],[245,29],[[1,36],[[10,[[38,[[94,[258]]]],83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[246,96],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[247,-1],[[10,[9,-2]]],204,[]],[[-1,[94,[-2]]],[[10,[[94,[-2]]]]],[],222],[[-1,90],[[10,[90]]],[]],[[-1,[26,[229]]],[[10,[[26,[229]]]]],[]],[[-1,230],[[10,[230]]],[]],[[-1,98],[[10,[98]]],[]],[[245,19],[[10,[19,83]]]],[[-1,[26,[25]]],[[10,[[26,[25]]]]],[]],[[247,-1],[[10,[247]]],241],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],0,0,[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[244,22,29],9],[[245,19],[[10,[19,83]]]],[[247,1,22,-1,8],[[10,[9,83]]],255],[[245,19,19],201],[[-1,19],19,[]],[[252,19],19],[[253,19],19],[[245,19],19],[[245,19],19],[[244,19],19],[[247,246,19],9],[[247,-1],[[242,[9]]],243],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]]],"c":[],"p":[[3,"GlobalEnv",3230],[3,"Span",3231],[3,"ESpan",3232],[4,"Option",3233],[3,"ErrorGuaranteed",3234],[3,"QueryCache",3235],[3,"LocalDefId",3236],[3,"CheckerConfig",20],[15,"tuple"],[4,"Result",3237],[3,"Tag",280],[3,"Vec",3238],[3,"Arena",3239],[15,"slice"],[8,"IntoIterator",3240],[3,"Arena",3241],[6,"Expr",3232],[4,"IntTy",3242],[6,"Ty",3243],[4,"UintTy",3242],[3,"Checker",20],[3,"RefineCtxt",2293],[3,"TypeEnv",2758],[4,"Operand",3244],[3,"TyS",3243],[3,"Interned",3245],[3,"CheckerError",225],[8,"Mode",20],[15,"bool"],[4,"AssertKind",3244],[4,"Guard",20],[3,"Place",3244],[3,"SourceInfo",3246],[3,"BasicBlock",3246],[4,"BinOp",3244],[3,"DefId",3236],[6,"PolyFnSig",3243],[3,"EarlyBinder",3243],[4,"GenericArg",3243],[4,"CastKind",3244],[3,"Ty",3247],[3,"Obligations",280],[4,"Constant",3244],[4,"GhostStatement",1490],[4,"Point",1490],[3,"ShapeMode",20],[3,"RefineMode",20],[3,"SwitchTargets",3248],[3,"Snapshot",2293],[3,"FnTraitPredicate",3243],[3,"GeneratorObligPredicate",3243],[4,"Rvalue",3244],[3,"Statement",3244],[3,"Terminator",3244],[4,"UnOp",3248],[8,"Iterator",3249],[8,"FnOnce",3250],[3,"InferCtxt",3251],[3,"ConstrGen",280],[8,"Into",3252],[15,"usize"],[3,"Dominators",3253],[15,"str"],[3,"RequestFilterDataProvider",3254],[3,"Formatter",3255],[6,"Result",3255],[3,"QueryInfo",3256],[3,"GhostStatements",1490],[3,"Body",3244],[3,"FnSig",3243],[15,"u64"],[3,"ShapeResult",20],[3,"KVarStore",747],[3,"BasicBlockEnv",2758],[6,"FxHashMap",3257],[3,"RefineSubtree",2293],[3,"UnordMap",3258],[6,"List",3245],[3,"RefineTree",2293],[3,"IndexVec",3259],[3,"TyCtxt",3260],[3,"TypeId",3261],[4,"CheckerErrKind",225],[4,"QueryErr",3262],[3,"UnsolvedEvar",3263],[3,"Handler",3264],[3,"DiagnosticBuilder",3265],[8,"Any",3261],[3,"InferCtxt",280],[4,"BaseTy",3243],[4,"Constraint",3243],[6,"PolyVariant",3243],[3,"FnOutput",3243],[3,"Binder",3243],[4,"ConstrReason",280],[3,"Path",3232],[3,"PPrintCx",3266],[4,"Sort",3243],[4,"KVarEncoding",747],[8,"KVarGen",280],[4,"InferMode",3267],[4,"HoleKind",3232],[4,"Variance",3268],[8,"Hasher",3269],[4,"TupleTree",3243],[3,"Clause",3243],[6,"GenericArgs",3243],[3,"AliasTy",3243],[3,"EVarSol",3263],[3,"ConditionSpanNote",487],[3,"Diagnostic",3270],[8,"Fn",3250],[3,"CallSpanNote",487],[3,"RefineError",487],[3,"GotoError",487],[8,"EmissionGuarantee",3265],[3,"AssignError",487],[3,"DivError",487],[3,"RemError",487],[3,"AssertError",487],[3,"FoldError",487],[3,"OverflowError",487],[3,"UnknownError",487],[3,"TagIdx",747],[3,"FixpointCtxt",747],[3,"ExprCtxt",747],[8,"Hash",3269],[8,"Eq",3271],[8,"Copy",3272],[15,"u32"],[3,"FixpointTypes",1306],[4,"Constraint",3273],[3,"GlobalVar",1088],[4,"Constant",3273],[6,"QueryResult",3262],[3,"KVarDecl",747],[4,"Ordering",3271],[8,"Decoder",3274],[8,"Encoder",3274],[4,"Key",747],[4,"Expr",3273],[3,"ConstInfo",747],[6,"FxIndexMap",3275],[3,"Scope",2293],[3,"Env",747],[3,"LocalVar",1088],[3,"PolyFuncSort",3243],[3,"PolyFuncSort",1306],[4,"Func",3273],[3,"KVid",3232],[3,"Name",3232],[3,"DebruijnIndex",3268],[4,"Sort",1306],[3,"KVar",3232],[4,"Pred",3273],[3,"FixpointKVar",747],[3,"Qualifier",3243],[3,"Qualifier",3273],[8,"Debug",3255],[3,"String",3276],[4,"Var",3232],[3,"KVid",1088],[4,"Var",1088],[4,"SortCtor",1306],[4,"Proj",1306],[3,"Error",3255],[3,"StatementsAt",1490],[6,"Result",3277],[8,"Write",3278],[3,"FoldUnfoldAnalysis",1614],[3,"Env",1614],[8,"Mode",1614],[4,"PlaceNode",1614],[3,"AdtDef",3247],[6,"GenericArgs",3247],[3,"VariantIdx",3279],[3,"FieldIdx",3279],[4,"ProjResult",1614],[3,"Infer",1614],[3,"Elaboration",1614],[4,"ProjKind",1614],[3,"PlaceIndex",1822],[3,"ValueIndex",1822],[3,"Body",3246],[3,"Map",1822],[3,"PointsToAnalysis",1822],[4,"CallReturnPlaces",3280],[3,"Statement",3281],[3,"Location",3246],[4,"Operand",3248],[8,"SwitchIntEdgeEffects",3282],[3,"Terminator",3280],[4,"TerminatorEdges",3280],[3,"State",1822],[3,"PlaceRef",3281],[4,"PlaceOrValue",1822],[4,"StateData",1822],[3,"IndexSlice",3283],[3,"Local",3246],[3,"BitSet",3284],[4,"Loc",3232],[4,"FlatSet",3285],[3,"PlaceInfo",1822],[8,"FnMut",3250],[3,"Place",3248],[4,"Rvalue",3248],[3,"CollectPointerToBorrows",1822],[3,"Children",1822],[3,"Ty",3286],[3,"VecDeque",3287],[3,"Results",3288],[3,"BasicBlockData",3246],[3,"AdtDef",3243],[3,"Invariant",3243],[3,"Expr",3267],[3,"Invalid",2210],[3,"Item",2233],[3,"WorkQueue",2233],[3,"NodePtr",2293],[3,"WeakNodePtr",2293],[3,"Unpacker",2293],[8,"TypeFoldable",3289],[3,"Node",2293],[3,"IndexGen",3290],[4,"AssumeInvariants",2293],[3,"ParentsIter",2293],[8,"ToString",3276],[4,"NodeKind",2293],[3,"ExprS",3232],[4,"Region",3247],[3,"SigTable",2645],[15,"array"],[3,"Sig",2645],[4,"Output",2645],[4,"Mutability",3242],[3,"BasicBlockEnvShape",2758],[6,"LocalDecls",3244],[3,"Generalizer",2758],[4,"BoundVariableKind",3243],[3,"BasicBlockEnvData",2758],[8,"FallibleTypeFolder",3289],[4,"ControlFlow",3291],[8,"TypeVisitor",3289],[3,"LookupResult",2930],[3,"Unfolder",2930],[3,"Cursor",2930],[3,"PlacesTree",2930],[3,"Binding",2930],[4,"LocKind",2930],[3,"Updater",2930],[3,"Index",3243],[3,"Unfold",2930],[3,"NoUnfold",2930],[15,"never"],[8,"LookupKey",2930],[8,"LookupMode",2930],[4,"PlaceElem",3244],[3,"VariantSig",3243],[8,"ResultExt",225],[6,"Bindings",747],[6,"PredSpans",747],[6,"ConstMap",747],[6,"KVidMap",747],[6,"Pred",1306],[6,"Expr",1306],[6,"Constraint",1306],[6,"Func",1306],[6,"Qualifier",1306],[6,"KVar",1306],[6,"Task",1306],[6,"ConstInfo",1306],[6,"LocationMap",1490],[6,"EdgeMap",1490],[6,"Results",1822],[13,"Yes",2640],[4,"Pre",2645],[6,"E",2741],[6,"E",2751],[6,"CheckerResult",2930]],"b":[[251,"impl-From%3CQueryErr%3E-for-CheckerErrKind"],[253,"impl-From%3CUnsolvedEvar%3E-for-CheckerErrKind"],[373,"impl-Pretty-for-Tag"],[374,"impl-Debug-for-Tag"],[897,"impl-Debug-for-TagIdx"],[898,"impl-Display-for-TagIdx"],[914,"impl-From%3Cusize%3E-for-TagIdx"],[915,"impl-From%3Cu32%3E-for-TagIdx"],[950,"impl-Idx-for-TagIdx"],[951,"impl-TagIdx"],[1204,"impl-Debug-for-KVid"],[1205,"impl-Display-for-KVid"],[1208,"impl-Debug-for-Var"],[1209,"impl-Display-for-Var"],[1213,"impl-From%3Cusize%3E-for-KVid"],[1216,"impl-From%3Cu32%3E-for-KVid"],[1219,"impl-From%3Cusize%3E-for-LocalVar"],[1220,"impl-From%3Cu32%3E-for-LocalVar"],[1221,"impl-From%3Cu32%3E-for-GlobalVar"],[1224,"impl-From%3Cusize%3E-for-GlobalVar"],[1225,"impl-From%3CLocalVar%3E-for-Var"],[1226,"impl-From%3CGlobalVar%3E-for-Var"],[1246,"impl-KVid"],[1247,"impl-Idx-for-KVid"],[1248,"impl-LocalVar"],[1249,"impl-Idx-for-LocalVar"],[1250,"impl-GlobalVar"],[1251,"impl-Idx-for-GlobalVar"],[2030,"impl-From%3Cu32%3E-for-PlaceIndex"],[2031,"impl-From%3Cusize%3E-for-PlaceIndex"],[2032,"impl-From%3Cu32%3E-for-ValueIndex"],[2034,"impl-From%3Cusize%3E-for-ValueIndex"],[2067,"impl-Idx-for-PlaceIndex"],[2068,"impl-PlaceIndex"],[2069,"impl-ValueIndex"],[2070,"impl-Idx-for-ValueIndex"],[2425,"impl-Debug-for-RefineTree"],[2426,"impl-Pretty-for-RefineTree"],[2427,"impl-Debug-for-RefineSubtree%3C\'_%3E"],[2428,"impl-Pretty-for-RefineSubtree%3C\'_%3E"],[2429,"impl-Debug-for-RefineCtxt%3C\'_%3E"],[2430,"impl-Pretty-for-RefineCtxt%3C\'_%3E"],[2431,"impl-Pretty-for-Scope"],[2432,"impl-Debug-for-Scope"],[2819,"impl-Debug-for-BasicBlockEnvShape"],[2820,"impl-Pretty-for-BasicBlockEnvShape"],[2821,"impl-Pretty-for-BasicBlockEnv"],[2822,"impl-Debug-for-BasicBlockEnv"],[2823,"impl-Pretty-for-TypeEnv%3C\'_%3E"],[2824,"impl-Debug-for-TypeEnv%3C\'_%3E"],[3051,"impl-Debug-for-PlacesTree"],[3052,"impl-Pretty-for-PlacesTree"],[3053,"impl-Debug-for-LocKind"],[3054,"impl-Pretty-for-LocKind"]]},\ +"flux_middle":{"doc":"This crate contains common type definitions that are used …","t":"HOOOOOOOOOOOOAAAAAAAAAOFFFFFIGKKKKKNNNNNNNDNDNNEENNNNNGNENNDNENNDNNNNDNNNNDNEDDNNNEEEDDDENDEDNEEGDEDDNNNNDNNNNNENNNNDGGNNNENNENNDDNSSSSSSDNNNNNNDEDNNNNNNNNDNNEDNDDNNENNNEDNNNNNNNEDDENNNNNNNNNEEDGDNNDENGSNNENNDDENNNDNNENNNNNNDDDEDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMLLLLLLLLLLLLLMLLLLLLLLLLLLLMMMMLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLMMMMMMMMLMLAMMMMMLMMLMMMMMMLLLLLLLLLLMLMMLMMMMMMMMMMMMMMMMLLLLMMMMMMMLLMLMMMMMLLMMMLLMMMMLLMMMMMMMMMMMMLLLLLMLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMDLLLLLLLLALLLLLLLLLLLLLLFLLLLLLFLLLLLLLLLLLFFLFLLLLLMMMMLLLLLLLDRLLLMLLLLLLLLLLLLMMLLLLLLILLLLLLLLLLLLLLLLLLLLLLFFFFFFFFFFFFFFFFFFFDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMLLLLMLLLLLMLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGGDIDGILLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLCCLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLMMLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNINDEDDINDLLLLMLLLLLLLLLLLLLLLLLMMFLLOLLLLLLLLLLLLLLLLLLLLKLLLLOLLLLLLLLLLLLLLLKLMLMLMMLMMOLLLLLLLLLLLLLLLMOLMLLLLOMFMMOLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLOOGNNNDDEGNLMMLLLMLLLLMMLLLLLLLLMMLLLLLLLLLOLLLLLMMLLLLLLLLLLLMMLMMLLLLLLLLLLLMMLMLMLMLMLMMMLMMFLLLLLLLLLLLLLLLLLMMLMLMMLLLMMMNNNDDDNEDNNNNENNENDNNNNNOCEDENNNNNDENEDCNNNENNEGNNDDNNNDCNCDNDNNGNENNRNOENNNDDNDNCNDDNDNDEGDEDDNNNENNNNNRHNNNDNCNNNOEDNDNDNNNNNENNNNNNNNNEDNNNNNSNNGENDNNNDDNGDGGGNNNNDNEDNNNNONGDCNDNNNEEDNNNNDDNNNNNNEGNEDNNNGNNNNNHNOEENNNNENNNDDSLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMLMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLAMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMLLLLLLMMMMMMMLLLLLLLLLLLLAMMLLMLLLMMMLLLMMMMMMMLMAMMMMLMMALLLLMLLMALLLLLMLLMMMLMMLLLLLLMMMMLLLLLLLLLLLLLLLLALLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLMMMMLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMDDDDEDSSHNNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNENNNENNDNNNGNEDNNNNNENNNNDNDNNENNNSSSSNNDNNNNDNNNDNNNENENNLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLMMLLLLLLLLLLLLLLLLLLLLLLAMMLMLLMLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNNELLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLQQIIIIIIILLLLLLLLLLLLLLLLLKLLLLLLKKLLLLLKLDDDLLLLLLLLLLLLLMMLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLEDNDNNMLLFLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLFFFFFFFFLLLMLMLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLMLMLLLLLLLMLLLLFLLFLLLLFLLLLLLLLLLLLDIDDDDLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMLLLLMLMKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAAADDLLLLLLLLLLLLMLLALLLLLLLLLLLLLLLLFLFLLLFLFFLFFLLFFFFFFFFLLLFLFLLLFFFLMLMMMMLLLLLLLLLLLLLDDDRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMMMMMLLLLLLLLLLLLLLMLLLLLLNNNENNNNENDDENNNNDNDENNDNENNNNENNNNNNNNNNNNNNRNENNNDNNNNNNNNDNNNNNNDDGEDNNNNNNNNNNENDENDNENSRNNNNNERNNNNDDENNNDNNDENNENNNNNENNEDNMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLMMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLMMMMMLMLLLLLLLLLFLLFMMMMMMLMLLLLLLLLLLLMLFMLLMMMMLMMMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMNDDNEDNDNDEDENNNNDENDDENNNNDDDNNDNENDDDDEGDEDDNNNNNNENNNNENNNDNNDGNNDNNNNNNNENDDNNNDDNDNEDNNGNNNNNNENNDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMLLLLMLMLMMMLMMMMMLLLLLLLLLLLLFMMMLLMLLLLLLLLLLLALLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMIK","n":["DEFAULT_LOCALE_RESOURCE","_Bool","_Float","_Int","_Ref","_Uint","_define_scoped","_format_args_cx","_impl_debug_with_default_cx","_join","_parens","_w","_with_cx","const_eval","cstore","fhir","global_env","intern","pretty","queries","rty","rustc","walk_list","scalar_int_to_constant","scalar_int_to_rty_constant","scalar_to_bits","scalar_to_int","scalar_to_uint","CrateStore","CrateStoreDyn","adt_def","fn_sig","refined_by","type_of","variants","Abs","Add","And","App","App","Arr","Array","ArrayLen","At","BaseTy","BaseTy","BaseTy","BaseTyKind","BinOp","BinaryOp","BitVec","Bool","Bool","Bool","Cache","Char","Coercion","Colon","Const","ConstInfo","Constr","Constraint","Def","Def","Defn","Defn","Div","Dot","EVar","EnumDef","Eq","Error","Exists","Explicit","Expr","Expr","ExprKind","FhirId","FieldDef","Float","Flux","Flux","FluxItem","FluxLocalDefId","FluxOwnerId","FnInfo","FnOutput","FnSig","Func","Func","FuncDecl","FuncKind","FuncSort","Ge","GenericArg","GenericBound","GenericBounds","GenericParam","GenericParamKind","GenericPredicates","Generics","Global","Gt","Hole","Hole","Ident","IfThenElse","Iff","Imp","Indexed","Infer","InferMode","Inject","Int","Int","Int","ItemLocalId","ItemLocalMap","ItemPredicates","KVar","LangItemTrait","Le","Lifetime","Lifetime","Lifetime","Lit","Literal","Loc","LocalTableInContext","LocalTableInContextMut","Lt","MAX","MAX","MAX","MAX_AS_U32","MAX_AS_U32","MAX_AS_U32","Map","Map","Maybe","Mod","Mul","Mut","Mut","MutTy","Mutability","Name","Ne","Neg","Never","None","Not","Not","Opaque","OpaqueDef","OpaqueTy","Or","Param","ParamKind","Path","Path","PolyFuncSort","PolyTraitRef","Pound","Pred","PrimTy","PrimTy","Project","Ptr","QPath","Qualifier","Qualifier","RawPtr","Real","Real","Record","Record","Ref","RefineArg","RefineParam","RefinedBy","Res","Resolved","Resolved","Rust","Rust","SelfTyAlias","SelfTyParam","Set","Shr","Slice","Sort","SortCtor","SortDecl","SortDecls","SortVid","SplTy","Str","StructDef","StructKind","Sub","SurfaceIdent","TRUE","Thy","Trait","TraitBoundModifier","Transparent","Tuple","Ty","TyAlias","TyKind","Type","Type","Type","TypeBinding","Uif","Uint","UnOp","UnaryOp","Unit","User","Var","Var","Var","VariantDef","VariantIdx","VariantRet","WeakKind","WfckResults","WhereBoundPredicate","Wildcard","add","add","add","add_trusted","all_params","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","args","args","args","args","arity","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_path","as_path","as_u32","as_u32","as_u32","as_usize","as_usize","as_usize","backward_checked","backward_checked","backward_checked","base","base","bindings","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bound_generic_params","bounded_ty","bounds","bounds","bty","buf","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","coercions","coercions","coercions_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","const_by_name","consts","consts","data","data","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","def_id","def_id","def_id","def_id","def_id","default","default_infer_mode","defn","defns","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descr","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","early_bound","early_bound_params","early_bound_sorts","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","ensures","enums","enums","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expect_type","expr","expr","externs","fhir_id","fhir_id","fhir_id","field_index","field_sort","fields","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","flux_items","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fn_quals","fn_quals","fn_sig","fn_sigs","fns","forward_checked","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_index","from_u32","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","from_usize","fsort","func_decl","func_decls","func_decls","generics","get","get_enum","get_extern","get_flux_item","get_fn_quals","get_fn_sig","get_generic_predicates","get_generics","get_opaque_ty","get_param","get_refine_params","get_struct","get_type_alias","global","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","ident","ident","idx","in_use","index","index","index","index","index","index","index","index_params","index_params","index_sorts","infer_mode","infer_mode","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","inputs","inputs_and_output","insert","insert_const","insert_defn","insert_enum","insert_extern","insert_fn_quals","insert_fn_sig","insert_func_decl","insert_generic_predicates","insert_generics","insert_opaque_tys","insert_qualifier","insert_refined_by","insert_sort_decl","insert_struct","insert_theory_func","insert_theory_funcs","insert_type_alias","instantiate","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_diagnostic_arg","into_diagnostic_arg","into_diagnostic_arg","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","invariants","invariants","is_base_generic","is_bool","is_bool","is_implicit","is_numeric","is_opaque","is_pred","is_trusted","is_wildcard","kind","kind","kind","kind","kind","kind","kind","len","lifetime_holes","lifetime_holes","lifetime_holes_mut","lift","lifted","lifted","lifted","lifted","local_id","map","map","mutbl","name","name","name","name","name","name","name","new","new","new","new","new","new","new","new","new","node_sorts","node_sorts","node_sorts_mut","opaque_tys","opaque_tys","output","output","owner","owner","owner","owner","owner_id","owner_id","owner_id","params","params","params","params","params","params","params","params","partial_cmp","partial_cmp","partial_cmp","partial_cmp","predicates","predicates","predicates","private","private","private","private","qualifiers","recover","refine","refined_by","refined_by","requires","res","ret","ret","set","skip_binders","sort","sort","sort","sort_decl","sort_decls","sort_decls","sort_params","sorts","source_info","span","span","span","span","span","span","span","span","span","span","span","span","span","span","steps_between","steps_between","steps_between","storage","structs","structs","subst","sym","sym","tag","term","to_debug_str","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","to_string","trait_def_id","trait_ref","trivial","trusted","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","ty","ty","type_aliases","type_aliases","type_holes","type_holes","type_holes_mut","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unify_values","val","val","variants","visit","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_refined_by","default","expr","is_binder","alias_to","is_trait_impl","trait_","name","fields","LiftCtxt","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","emit_err","emit_unsupported","errors","filterable","from","from","from_cycle_error","generic_params_into_args","init","insert_opaque_ty","into","into_query_param","lift_array_len","lift_enum_variant","lift_enum_variant_id","lift_field_def","lift_field_def_id","lift_fn","lift_fn_ret_ty","lift_fn_sig","lift_generic_args","lift_generic_bound","lift_generic_param","lift_generic_predicates","lift_generics","lift_generics","lift_generics_inner","lift_generics_with_predicates","lift_lifetime","lift_mut_ty","lift_opaque_ty","lift_path","lift_path_to_ty","lift_poly_trait_ref","lift_predicates","lift_qpath","lift_refined_by","lift_self_ty","lift_ty","lift_type_alias","lift_type_bindings","lift_variant_ret","lift_variant_ret_inner","lift_where_predicate","new","opaque_tys","owner","sess","tcx","to_predicate","to_result","try_from","try_into","type_id","vzip","with_new_owner","UnsupportedHir","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedHir","borrow","borrow_mut","collect_and_apply","def_kind","deref","deref_mut","drop","filterable","from","from","from_cycle_error","init","into","into_diagnostic","into_query_param","new","note","span","to_predicate","to_result","try_from","try_into","type_id","vzip","Visitor","visit_bty","visit_constraint","visit_enum_def","visit_expr","visit_field_def","visit_fn_output","visit_fn_sig","visit_func_sort","visit_generic_arg","visit_ident","visit_lifetime","visit_literal","visit_poly_func_sort","visit_qpath","visit_refine_arg","visit_refine_param","visit_sort","visit_struct_def","visit_ty","visit_type_binding","visit_variant","visit_variant_ret","walk_bty","walk_constraint","walk_enum_def","walk_expr","walk_field_def","walk_fn_output","walk_fn_sig","walk_func_sort","walk_generic_arg","walk_poly_func_sort","walk_qpath","walk_refine_arg","walk_refine_param","walk_sort","walk_struct_def","walk_ty","walk_type_binding","walk_variant","walk_variant_ret","GlobalEnv","Ident","Symbol","adt_def","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_wf","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","const_by_name","cstore","cstore","ctor_has_equality","defns","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","early_bound_sorts_of","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","field_index","field_sort","filterable","filterable","filterable","fingerprint_style","fingerprint_style","fn_sig","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","func_decl","func_decls","generics_of","get_generic_param","has_equality","hir","index_sorts_of","init","init","init","instantiate_arg_for_constructor","instantiate_arg_for_fun","into","into","into","into_query_param","into_query_param","into_query_param","is_box","is_fn_once_output","is_suggestable","is_suggestable","item_bounds","lookup_extern","lower_fn_sig","lower_late_bound_vars","lower_type_of","make_suggestable","make_suggestable","map","map","map_mut","mir","mk_box","name","new","predicates_of","providers","qualifiers","queries","recover","recover","refine_default","refine_default_generic_args","refine_with_holes","sess","sort_of_bty","sort_of_generic_param","sort_of_path","sort_of_self_ty","sort_of_self_ty_alias","sort_of_ty","span","tcx","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_of","variances_of","variant_sig","variants_of","vzip","vzip","vzip","Guard","InternMap","InternStorage","Internable","Interned","List","SliceInternable","abs","alias","and","app","arc","arc","array","as_any","as_closure","as_generator","as_generator","as_ref","as_tuple","at_base","binary_op","blocked","bool","borrow","borrow","borrow_mut","borrow_mut","char","clone","clone_into","closure","cmp","cmp","collect_and_apply","collect_and_apply","compare","compare","const_def_id","const_op","constant","constant_at","constr","decode","decode","deref","deref","deref","deref_mut","deref_mut","discr","downcast","drop","drop","drop","drop_slow","early_bvar","empty","empty","encode","encode","eq","eq","eq","eq_at","equals","equivalent","equivalent","equivalent","equivalent","equivalent","eta_expand_abs","eta_expand_tuple","evar","exists","exists_with_constr","expect_tuple","ff","fill_item","filterable","filterable","float","fmt","fmt","fmt","fmt","fold_sort","from","from","from","from","from","from","from_arr","from_arr","from_bits","from_cycle_error","from_cycle_error","from_iter","from_slice","from_slice","from_vec","from_vec","fvar","ge","generator","get","global_func","gt","hash","hasher","hole","identity_for_item","impl_internable","impl_slice_internable","implies","indexed","init","init","int","int_max","int_min","into","into","into_iter","into_query_param","into_query_param","is_abs","is_atom","is_binary_op","is_trivially_true","is_true","is_tuple","ite","kind","kvar","late_bvar","le","list_with","list_with","local","lt","map","marker","mk_ref","mk_slice","ne","neg","never","new","new","not","nu","one","opaque","or","param","partial_cmp","partial_cmp","path_proj","projection","ptr","rwlock","select","shards","shift","simplify","singleton","singleton","span","storage","storage","str","subst","to_loc","to_owned","to_path","to_predicate","to_predicate","to_result","to_result","to_sort_list","to_sort_list","to_string","to_var","try_fold_with","try_from","try_from","try_into","try_into","tt","tuple","tuple","tuple_proj","tuple_projs","type_id","type_id","uint","uint_max","unary_op","unblocked","unconstr","uninit","unit","unit","usize","var","visit_with","vzip","vzip","zero","All","FromOpt","Hide","Join","KVarArgs","PPrintCx","Parens","Pretty","SelfOnly","WithCx","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","bindings_chain","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","cx","data","def_id_to_string","default","default_cx","define_scoped","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","format_args_cx","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_opt","from_opt","full_spans","fully_qualified_paths","fully_qualified_paths","hide_binder","hide_binder","hide_refinements","hide_regions","hide_regions","hide_uninit","impl_debug_with_default_cx","init","init","init","init","init","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","iter","join","kvar_args","kvar_args","merge","new","new","new","parens","parenthesize","pprint_with_default_cx","preds_chain","sep","set_opts","show_is_binder","show_is_binder","simplify_exprs","tags","tcx","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","val","vzip","vzip","vzip","vzip","vzip","w","with_cx","Cache","Emitted","Err","Ok","Providers","Queries","QueryErr","QueryResult","UnsupportedType","adt_def","adt_def","adt_def","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_wf","check_wf","check_wf","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","default","default","defns","defns","defns","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","empty_query","filterable","filterable","filterable","fmt","fn_sig","fn_sig","fn_sig","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","func_decls","func_decls","func_decls","generics_of","generics_of","generics_of","init","init","init","into","into","into","into_diagnostic","into_query_param","into_query_param","into_query_param","item_bounds","item_bounds","item_bounds","lower_fn_sig","lower_fn_sig","lower_late_bound_vars","lower_late_bound_vars","lower_type_of","lower_type_of","mir","mir","predicates_of","predicates_of","predicates_of","providers","qualifiers","qualifiers","qualifiers","run_with_cache","to_owned","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_of","type_of","type_of","unsupported","value","variants_of","variants_of","variants_of","vzip","vzip","vzip","def_id","def_span","reason","Abs","Add","Adt","AdtDef","AdtDefData","AdtFlags","Alias","AliasKind","AliasTy","And","App","App","Array","BaseTy","BaseTy","BaseTy","BinOp","BinaryOp","Binder","BitVec","Blocked","Bool","Bool","Bool","Bool","BoundRegion","BoundRegionKind","BoundVar","BoundVariableKind","Box","BrAnon","BrEnv","BrNamed","Char","Clause","ClauseKind","Closure","ClosureKind","ClosureOblig","Const","Const","Const","ConstDefId","Constant","Constant","Constr","Constraint","Constraints","Coroutine","CoroutineWitness","Defn","Defns","Discr","Div","Downcast","ESpan","EVar","EVar","EVarGen","EarlyBinder","EarlyBound","EarlyBoundRegion","Eq","Exists","Expr","Expr","ExprKind","F32","F64","FIRST_VARIANT","Float","Float","FloatTy","Fn","FnMut","FnOnce","FnOutput","FnSig","FnTrait","FnTraitPredicate","Free","FreeRegion","Func","FuncDecl","FuncSort","Ge","GeneratorArgs","GeneratorOblig","GeneratorObligPredicate","GenericArg","GenericArgs","GenericParamDef","GenericParamDefKind","GenericPredicates","Generics","GlobalFunc","Gt","Hole","HoleKind","I128","I16","I32","I64","I8","INNERMOST","INT_TYS","IfThenElse","Iff","Imp","Index","Indexed","InferMode","Int","Int","Int","Int","IntTy","Invariant","Isize","KVar","KVar","KVid","LateBound","Le","Leaf","Lifetime","Lifetime","Loc","Loc","Local","Local","Lt","Map","Mod","Mul","Mut","Mut","Mutability","Name","Ne","Neg","Never","Not","Not","ONE","Opaque","Opaque","OpaqueArgsMap","Opaqueness","Or","OutlivesPredicate","Param","Param","Param","ParamTy","Path","PathProj","PolyFnSig","PolyFuncSort","PolyTy","PolyVariant","PolyVariants","Pred","Pred","Projection","Projection","ProjectionPredicate","Ptr","PtrKind","Qualifier","RawPtr","Real","Real","Ref","Ref","Refine","RefineArgs","RefineParam","Region","Region","ScalarInt","Set","Shr","Slice","Sort","SortCtor","SortVar","SplTy","Str","Sub","Trait","TraitPredicate","TraitRef","Transparent","Tuple","Tuple","Tuple","Tuple","TupleProj","TupleTree","Ty","Ty","TyKind","TyS","Type","Type","TypeOutlives","TypeOutlivesPredicate","U128","U16","U32","U64","U8","UINT_TYS","Uint","Uint","UintTy","UnOp","UnaryOp","Uninit","User","Usize","Var","Var","Var","Var","VariantIdx","VariantSig","ZERO","adt","adt_def","alias","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","and","app","arc","arc","arc","arc","arc","arc","args","args","args","args","args","args","args","args","array","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_bty_skipping_existentials","as_deref","as_deref","as_generator","as_leaf","as_ref","as_ref","as_ref","base","base","bits","blocked","body","bool","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","box_args","char","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closure","collect_all_refine_params","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","constr","data","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","def_id","def_id","def_id","def_id","def_id","default_cx","default_cx","default_infer_mode","defns","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","did","discr","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","ensures","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evars","exists","exists_with_constr","expect","expect_adt","expect_discr","expect_func","expect_leaf","expect_refine","expect_sort","expect_tuple","expect_type","expr","expr","expr","fields","fields","fill_item","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","fingerprint_style","flatten","float","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_param_def","from_ref","fsort","ge","generator","global","gt","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","identity_for_item","idx","iff","imp","index","index","index","index","indexed","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inputs","inputs_and_output","instantiate","instantiate_identity","instantiate_identity","instantiate_identity_into","int","int_invariants","int_max","int_min","intern","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_ty","into_ty","invariants","invariants","invariants","is_array","is_array","is_binder","is_bool","is_bool","is_bool","is_box","is_box","is_box","is_closure","is_closure","is_enum","is_integral","is_integral","is_opaque","is_pred","is_slice","is_slice","is_struct","is_struct","is_struct","is_suggestable","is_trivially_true","is_tuple","is_tuple","is_uninit","is_unit","is_valid_base_arg","is_valid_base_ty","kind","kind","kind","kind","kind","kind","kind","kvid","loc","make_suggestable","map","map","map","mk_ref","mk_slice","mode","name","name","name","name","name","name","ne","never","new","new","new","new","new","new","new","new","new","new","normalize","oblig_def_id","oblig_sig","ok_or_else","opaque","opaque","or","output","output","output","output","output","param","param_at","params","params","params","parent","parent","parent_count","parent_refine_count","pred","predicates","predicates","pretty","private","private","private","private","projection","projection","projection_ty","projections","ptr","rebind","recover","recover","refine_args","refine_count","refine_param_at","refine_params","refining","replace_bound_expr","replace_bound_exprs","replace_bound_exprs_with","replace_bound_vars","requires","requires","resume_ty","ret","ret","rustc","self_args","self_ty","self_ty","size","skip_binder","skip_binder","skip_binders","slice","sort","sort","sort","sort","sort","span","split","split","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","storage","str","subst","super_visit_with","super_visit_with","super_visit_with","term","to_closure_sig","to_closure_sig","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_poly_fn_sig","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","to_string","trait_ref","transpose","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_map","try_map","try_super_fold_with","try_super_fold_with","try_super_fold_with","try_super_fold_with","tuple","tuple","tupled_args","tupled_upvars_ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uint","uint_invariants","uint_max","unblocked","unconstr","uninit","unit","unit","unit","unit","usize","value","value","value","value","variant","variants","vars","vars","vars","vars","vars","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","walk","with_sort","with_sorts","has_default","has_default","name","EVar","EVarCxId","EVarGen","EVarSol","EVarState","EVid","MAX","MAX_AS_U32","NEXT_CTXT_ID","Unified","Unsolved","UnsolvedEvar","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","as_any","as_u32","as_usize","backward_checked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","cx","cx","decode","decode","decode","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","encode","encode","encode","eq","eq","eq","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evar","evars","evars","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fix","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","forward_checked","fresh_in_cx","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_u32","from_u32_unchecked","from_usize","get","hash","hash","hash","id","index","index","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","iter","new","new","new_ctxt","partial_cmp","partial_cmp","partial_cmp","pretty","private","solve","steps_between","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unify","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Abs","Add","And","App","BinOp","BinaryOp","Bool","ConstDefId","Constant","Constant","Div","ESpan","EVar","EarlyBound","Eq","Expr","Expr","ExprKind","ExprS","Free","Ge","GlobalFunc","Gt","Hole","HoleKind","IfThenElse","Iff","Imp","Int","KVar","KVar","KVid","LateBound","Le","Loc","Local","Local","Lt","MAX","MAX","MAX_AS_U32","MAX_AS_U32","Mod","Mul","Name","Ne","Neg","Not","Or","Path","PathProj","Pred","Real","SpanData","Sub","Tuple","TupleProj","UnOp","UnaryOp","Var","Var","Var","abs","add","add","add","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","and","app","arc","args","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_tuple","as_u32","as_u32","as_usize","as_usize","at_base","backward_checked","backward_checked","base","base","binary_op","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","const_def_id","const_op","constant","constant_at","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","div","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","early_bvar","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_at","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","espan","eta_expand_abs","eta_expand_tuple","evar","expect_tuple","ff","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold_sort","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_bits","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_place","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","fvar","ge","global_func","gt","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hi","hole","impl_ops","implies","index","index","index","index","init","init","init","init","init","init","init","init","init","init","init","int_max","int_min","intern","intern_at","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_abs","is_atom","is_binary_op","is_trivially_true","is_true","is_tuple","ite","kind","kind","kvar","kvid","late_bvar","le","lo","loc","local","lt","mul","mul","ne","neg","new","new","new","new","new","new","not","nu","one","or","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","path_proj","pretty","private","private","projection","projection","scope","self_args","self_args","simplify","span","span","span","span","steps_between","steps_between","storage","storage","storage","sub","sub","super_visit_with","to_expr","to_expr","to_expr","to_loc","to_loc","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_path","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_var","try_fold_with","try_fold_with","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_super_fold_with","tt","tuple","tuple_proj","tuple_projs","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uint_max","unary_op","unit","var","visit_with","visit_with","visit_with","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_base","zero","AddSub","And","Cmp","Iff","Imp","MulDiv","Or","Precedence","as_any","borrow","borrow_mut","cmp","collect_and_apply","compare","compare","deref","deref_mut","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","from","from","from_cycle_error","init","into","into_query_param","is_associative","partial_cmp","precedence","to_predicate","to_result","try_from","try_into","type_id","vzip","BreakTy","Error","FallibleTypeFolder","TypeFoldable","TypeFolder","TypeSuperFoldable","TypeSuperVisitable","TypeVisitable","TypeVisitor","fold_binder","fold_bty","fold_expr","fold_region","fold_sort","fold_ty","fold_with","fvars","has_escaping_bvars","normalize","normalize_projections","opaque_refine_args","replace_evars","replace_holes","shift_in_escaping","shift_out_escaping","super_fold_with","super_visit_with","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_fold_with","try_super_fold_with","visit_binder","visit_bty","visit_expr","visit_fvar","visit_ty","visit_with","with_holes","BaseSpanner","Defns","Normalizer","app","at_base","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","default","defn_deps","defns","defs","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","espan","filterable","filterable","filterable","fold_expr","fold_expr","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","func_defn","init","init","init","into","into","into","into_query_param","into_query_param","into_query_param","new","new","new","normalize","sorted_defns","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_fold_binder","try_fold_binder","try_fold_bty","try_fold_bty","try_fold_expr","try_fold_expr","try_fold_region","try_fold_region","try_fold_sort","try_fold_sort","try_fold_ty","try_fold_ty","try_from","try_from","try_from","try_into","try_into","try_into","tuple_proj","type_id","type_id","type_id","vzip","vzip","vzip","Candidate","Normalizer","ParamEnv","TVarSubst","TraitDef","UserDefinedImpl","args","assemble_candidates_from_impls","assemble_candidates_from_param_env","assemble_candidates_from_predicates","assemble_candidates_from_trait_def","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","confirm_candidate","def_id","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","filterable","filterable","filterable","finish","fmt","fmt","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","genv","infer_from_arg","infer_from_args","infer_from_region","infer_from_ty","init","init","init","insert_early_bound_region","insert_param_ty","into","into","into","into_query_param","into_query_param","into_query_param","into_rustc_alias_kind","into_rustc_alias_ty","into_rustc_bound_region","into_rustc_bty","into_rustc_generic_arg","into_rustc_generic_args","into_rustc_region","into_rustc_ty","new","new","normalize_projection_ty","param_env","rustc_param_env","selcx","tcx","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_fold_ty","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","Refiner","adt_def","as_default","borrow","borrow_mut","collect_and_apply","default","deref","deref_mut","drop","filterable","from","from","from_cycle_error","generics","generics_of","genv","init","into","into_query_param","iter_with_generic_params","iter_with_generics_of","new","param","refine","refine_alias_kind","refine_alias_ty","refine_args_of","refine_binders","refine_bound_variables","refine_clause","refine_clauses","refine_default","refine_fn_trait_pred","refine_generic_arg","refine_generic_arg_raw","refine_generic_predicates","refine_generics","refine_poly_fn_sig","refine_poly_ty","refine_trait_ref","refine_ty","refine_variant_def","to_predicate","to_result","try_from","try_into","type_id","vzip","with_holes","BoundVarReplacer","BoundVarReplacerDelegate","EVarSubstFolder","FnMutDelegate","GenericsSubstFolder","RegionSubst","apply","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bty_for_param","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","current_index","current_index","delegate","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","evars","expr_for_param","exprs","filterable","filterable","filterable","filterable","filterable","fmt","fold_binder","fold_binder","fold_expr","fold_expr","fold_expr","fold_region","fold_region","fold_sort","fold_ty","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generics","infer_from_bty","infer_from_region","infer_from_ty","init","init","init","init","init","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","map","new","new","new","new","refine","region_for_param","regions","replace_expr","replace_expr","replace_region","replace_region","sort_for_param","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_fold_binder","try_fold_binder","try_fold_binder","try_fold_bty","try_fold_bty","try_fold_bty","try_fold_expr","try_fold_expr","try_fold_expr","try_fold_region","try_fold_region","try_fold_region","try_fold_sort","try_fold_sort","try_fold_sort","try_fold_ty","try_fold_ty","try_fold_ty","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","ty_for_param","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","lowering","mir","ty","LoweringCtxt","UnsupportedReason","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","descr","drop","drop","errors","filterable","filterable","fmt","from","from","from","from","from_cycle_error","from_cycle_error","init","init","into","into","into_diagnostic_arg","into_query_param","into_query_param","lower_adt_def","lower_aggregate_kind","lower_alias_kind","lower_assert_msg","lower_basic_block_data","lower_bin_op","lower_binder","lower_borrow_kind","lower_bound_region","lower_bound_vars","lower_cast_kind","lower_clause","lower_const","lower_constant","lower_fake_read_cause","lower_field","lower_fn_sig","lower_generic_arg","lower_generic_args","lower_generic_param_def","lower_generic_predicates","lower_generics","lower_item_bounds","lower_local_decl","lower_mir_body","lower_operand","lower_place","lower_pointer_coercion","lower_region","lower_rvalue","lower_statement","lower_terminator","lower_ty","lower_type_outlives","lower_variant","new","param_env","resolve_call","rustc_mir","selcx","sess","tcx","to_owned","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","UnsupportedGenericBound","UnsupportedLocalDecl","UnsupportedMir","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedGenericBound","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedLocalDecl","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnsupportedMir","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","filterable","filterable","filterable","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","kind","new","new","new","reason","reason","span","span","span","statement","terminator","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","try_from","try_from","try_from","try_into","try_into","try_into","ty","type_id","type_id","type_id","vzip","vzip","vzip","Add","Adt","Aggregate","AggregateKind","Arg","Array","AscribeUserType","Assert","AssertKind","Assign","BasicBlock","BasicBlockData","BinOp","BinaryOp","BitAnd","BitOr","Bivariant","Body","Bool","BorrowData","BorrowKind","BoundsCheck","Call","CallArgs","Cast","CastKind","Char","CheckedBinaryOp","Cleanup","Closure","Constant","Constant","Continue","Contravariant","Copy","Coroutine","CoroutineDrop","Covariant","Deref","Discriminant","Div","DivisionByZero","Downcast","Drop","Eq","FIRST_VARIANT","FakeRead","FakeReadCause","FalseEdge","FalseUnwind","Field","FieldIdx","Float","FloatToInt","ForLet","ForMatchedPlace","Ge","Goto","Gt","Index","Instance","Int","IntToFloat","IntToInt","Invariant","Le","Len","Local","LocalDecl","LocalDecls","LocalKind","Location","Lt","Move","Mul","Mut","MutToConstPointer","Ne","Neg","Nop","Not","Opaque","Operand","Overflow","Place","PlaceElem","PlaceMention","PlaceTy","Pointer","PointerCast","PtrToPtr","RETURN","RETURN_PLACE","Ref","Rem","RemainderByZero","Return","ReturnPointer","Rvalue","START_BLOCK","SetDiscriminant","Shared","Shl","Shr","SourceInfo","Statement","StatementKind","Str","Sub","SwitchInt","SwitchTargets","Temp","Terminate","Terminator","TerminatorKind","Tuple","Uint","UnOp","UnaryOp","Unit","Unreachable","Unreachable","Unsize","UnwindAction","UnwindResume","Use","Variance","VariantIdx","Yield","_marker","activation_location","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","args","args_iter","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_field","assigned_place","basic_blocks","behind_raw_ptr","block","body_with_facts","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_data","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrowed_place","calculate_borrows_out_of_scope_at_location","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","decode","decode","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dominators","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fake_predecessors","field_ty","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_ty","hash","hash","hash","impl_f","infcx","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_cleanup","is_join_point","is_nop","is_return","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","kind","kind","kind","local","local_decls","local_kind","lowered","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","mk_fake_predecessors","new","new","opt_bb_to_str","orig","private","private","private","private","projection","projection_ty","raw","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","region","region_inference_context","replicate_infer_ctxt","reserve_location","resume_local","rustc_body","scope","source_info","source_info","source_info","span","span","statement_index","statements","storage","targets","terminator","terminator_loc","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","ty","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","variant_index","vars_and_temps_iter","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","kind","args","cond","destination","discr","drop","expected","func","generic_args","imaginary_target","msg","place","real_target","real_target","resolved_call","resume","resume_arg","target","target","target","target","targets","unwind","unwind","unwind","value","Adt","AdtDef","AdtDefData","Alias","AliasKind","AliasTy","Array","Binder","Bool","BoundRegion","BoundRegionKind","BoundVar","BoundVariableKind","BrAnon","BrEnv","BrNamed","Char","Clause","ClauseKind","Closure","ClosureArgs","ClosureArgsParts","Const","Const","Const","Coroutine","CoroutineWitness","DebruijnIndex","EarlyBinder","EarlyBoundRegion","F32","F64","FieldDef","Float","FloatTy","FnPtr","FnSig","FreeRegion","GeneratorArgs","GeneratorArgsParts","GenericArg","GenericArgs","GenericParamDef","GenericParamDefKind","GenericPredicates","Generics","I128","I16","I32","I64","I8","Int","IntTy","Isize","Lifetime","Lifetime","Mut","Mutability","Never","Not","Opaque","OutlivesPredicate","Param","Param","ParamTy","PolyFnSig","Projection","Projection","ProjectionPredicate","RawPtr","ReEarlyBound","ReFree","ReLateBound","ReStatic","ReVar","Ref","Region","Region","RegionVid","ScalarInt","Slice","Str","Trait","TraitPredicate","TraitRef","Tuple","Ty","Ty","TyKind","TyS","Type","TypeOutlives","TypeOutlivesPredicate","U128","U16","U32","U64","U8","Uint","UintTy","Usize","Value","ValueConst","VariantDef","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","arc","args","args","args","args","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_closure","as_generator","as_ref","bind_with_vars","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bound_region","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closure_kind_ty","closure_sig_as_fn_ptr_ty","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","data","decode","decode","decode","decode","decode","decode","decode","decode","decode","decode","def_id","def_id","def_id","def_id","def_id","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","did","did","did","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expect_adt","expect_const","expect_lifetime","expect_type","fields","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","fingerprint_style","flags","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","index","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inputs","inputs_and_output","instantiate_identity","intern","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_box","is_box","is_enum","is_mut_ref","is_struct","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_suggestable","is_union","kind","kind","kind","kind","kind","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","make_suggestable","mk_adt","mk_alias","mk_array","mk_bool","mk_char","mk_closure","mk_coroutine","mk_float","mk_fn_ptr","mk_generator_witness","mk_int","mk_never","mk_param","mk_raw_ptr","mk_ref","mk_slice","mk_str","mk_tuple","mk_uint","mk_usize","name","name","name","name","name","new","new","new","non_enum_variant","orig","output","params","parent","parent","parent_args","parent_args","parent_count","predicates","private","private","private","projection_ty","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","recover","region_to_string","resume_ty","return_ty","scope","self_ty","self_ty","size","skip_binder","skip_binder","split","split","storage","storage","storage","storage","storage","storage","storage","subst","subst","subst","subst","subst","subst","subst","subst","term","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_debug_str","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_fingerprint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","trait_ref","try_fold_with","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tuple_fields","tupled_upvars_ty","tupled_upvars_ty","tupled_upvars_ty","tupled_upvars_ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","upvar_tys","upvar_tys","val","var","variant","variants","variants","vars","visit_with","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","witness","yield_ty","has_default","has_default","Subst","subst"],"q":[[0,"flux_middle"],[23,"flux_middle::const_eval"],[28,"flux_middle::cstore"],[35,"flux_middle::fhir"],[2193,"flux_middle::fhir::GenericParamKind"],[2194,"flux_middle::fhir::RefineArg"],[2196,"flux_middle::fhir::Res"],[2199,"flux_middle::fhir::SortCtor"],[2200,"flux_middle::fhir::StructKind"],[2201,"flux_middle::fhir::lift"],[2264,"flux_middle::fhir::lift::errors"],[2290,"flux_middle::fhir::visit"],[2332,"flux_middle::global_env"],[2488,"flux_middle::intern"],[2699,"flux_middle::pretty"],[2858,"flux_middle::queries"],[2979,"flux_middle::queries::QueryErr"],[2982,"flux_middle::rty"],[5057,"flux_middle::rty::GenericParamDefKind"],[5059,"flux_middle::rty::SortCtor"],[5060,"flux_middle::rty::evars"],[5310,"flux_middle::rty::expr"],[5941,"flux_middle::rty::expr::pretty"],[5982,"flux_middle::rty::fold"],[6024,"flux_middle::rty::normalize"],[6112,"flux_middle::rty::projections"],[6208,"flux_middle::rty::refining"],[6258,"flux_middle::rty::subst"],[6413,"flux_middle::rustc"],[6416,"flux_middle::rustc::lowering"],[6505,"flux_middle::rustc::lowering::errors"],[6585,"flux_middle::rustc::mir"],[7724,"flux_middle::rustc::mir::BorrowKind"],[7725,"flux_middle::rustc::mir::TerminatorKind"],[7750,"flux_middle::rustc::ty"],[9403,"flux_middle::rustc::ty::GenericParamDefKind"],[9405,"flux_middle::rustc::ty::subst"],[9407,"rustc_middle::ty::context"],[9408,"rustc_middle::ty"],[9409,"core::option"],[9410,"rustc_span::def_id"],[9411,"rustc_span::def_id"],[9412,"rustc_middle::arena"],[9413,"core::iter::traits::collect"],[9414,"rustc_hir"],[9415,"core::any"],[9416,"core::cmp"],[9417,"alloc::vec"],[9418,"core::ops::function"],[9419,"core::borrow"],[9420,"rustc_serialize::serialize"],[9421,"rustc_type_ir::codec"],[9422,"rustc_serialize::serialize"],[9423,"rustc_query_system::dep_graph"],[9424,"core::fmt"],[9425,"core::fmt"],[9426,"rustc_hir::hir_id"],[9427,"rustc_query_system::query::job"],[9428,"rustc_span"],[9429,"core::hash"],[9430,"rustc_data_structures::unord"],[9431,"rustc_errors::diagnostic"],[9432,"rustc_middle::middle::resolve_bound_vars"],[9433,"core::convert"],[9434,"rustc_span::span_encoding"],[9435,"rustc_query_system::dep_graph::dep_node"],[9436,"alloc::string"],[9437,"rustc_data_structures::fingerprint"],[9438,"rustc_hir::def"],[9439,"core::any"],[9440,"rustc_hir::hir"],[9441,"rustc_hir::hir"],[9442,"rustc_hir::hir"],[9443,"rustc_errors::diagnostic_builder"],[9444,"rustc_middle::hir::map"],[9445,"alloc::boxed"],[9446,"core::marker"],[9447,"core::cmp"],[9448,"alloc::sync"],[9449,"rustc_hash"],[9450,"core::hash"],[9451,"core::cmp"],[9452,"hashbrown::map"],[9453,"dashmap::lock"],[9454,"core::ops::control_flow"],[9455,"toml::value"],[9456,"rustc_hash"],[9457,"core::hash"],[9458,"core::iter::traits::collect"],[9459,"rustc_hash"],[9460,"rustc_middle::ty::generics"],[9461,"rustc_middle::ty::generic_args"],[9462,"rustc_middle::ty::generic_args"],[9463,"rustc_type_ir::ty_kind"],[9464,"rustc_middle::ty::sty"],[9465,"rustc_middle::mir::syntax"],[9466,"rustc_middle::mir::syntax"],[9467,"rustc_middle::mir::syntax"],[9468,"rustc_middle::mir::syntax"],[9469,"rustc_middle::mir::syntax"],[9470,"rustc_middle::mir::syntax"],[9471,"rustc_middle::mir::terminator"],[9472,"rustc_middle::ty"],[9473,"rustc_borrowck::dataflow"],[9474,"rustc_data_structures::fx"],[9475,"rustc_data_structures::graph::dominators"],[9476,"rustc_middle::mir"],[9477,"rustc_borrowck::region_infer"]],"d":["Raw content of Fluent resource for this crate, generated …","","","","","","","","","","","","","","","Flux High-Level Intermediate Repesentation","","Global Arc-based object interning infrastructure.","","","Defines how flux represents refinement types internally. …","This module contains simplified versions of some …","","","","","","","","","","","","","","","","","Sort constructor application (e.g. Set<int> or …","","","","","An implicitly scoped parameter declared with @a syntax","These are types of things that may be refined with indices …","","A type that parses as a BaseTy but was written without …","","","","","","","","","","","An implicitly scoped parameter declared with x: T syntax","","","Constrained types {T | p} are like existentials but …","","","User-defined functions with a body definition","","","","","Generate a fresh evar for the parameter and solve it via …","","","A sort that couldn’t be generated because of an error.","","A parameter declared in an explicit scope","","","","A unique identifier for a node in the AST. Like HirId it …","","","An item without a corresponding Rust definition, e.g., a …","","","","Owner version of FluxLocalDefId","","","","","","","","","","","","","","","","","A global function symbol (including possibly theory …","","","A lifetime hole created during desugaring.","","","","","","Sort inference variable generated for a Sort::Wildcard …","Inference mode for parameter at function calls","","","","","An ItemLocalId uniquely identifies something within a …","","","Generate a fresh kvar and let fixpoint infer it. This mode …","","","Our surface syntax doesn’t have lifetimes. To deal with …","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","A map between rust definitions and flux annotations in …","","","","","","","","","","","","","","","","","","","","The sort associated to a type variable","How the declared parameter in the surface syntax. This is …","","","","","An implicitly scoped parameter declared with #a syntax","A predicate that needs to hold","Not represented directly in the AST; referred to by name …","","","","","","","","","","","A record sort corresponds to the sort associated with a …","","","","Information about the refinement parameters associated …","","A resolved lifetime created during lifting.","","An item with a corresponding Rust definition, e.g., …","","","","","","","","","","","A Sort vvariable id","","","","","","","","Theory symbols “interpreted” by the SMT solver: Symbol …","","","","","","","","A type constraint on a location","","","","User-defined uninterpreted functions with no definition","","","","","User defined opaque sort","sort variable","","A function coming from a refinement parameter.","","The source-order index of a variant in a type.","","","","","A sort that needs to be inferred","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","example: vec![(x: StrRef(l))]","","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of early bound parameters","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","Creates a new index from a given usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a usize.","","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","Index parameters indexed by their name and in the same …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","inputs and output in order","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the sort is Bool.","","","","Whether the sort is a function with return sort bool","","Returns true if the sort is Wildcard.","","","","","","","","","","","","“Lift” HIR types into FHIR types.","Whether the sig was lifted from a hir signature","Whether this alias was lifted from a hir alias","Whether this field was lifted from a hir field","Whether this variant was lifted from a hir variant","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","example: vec![(n: Int), (l: Loc)]","","","","","","","","","","","","","","","","","","","","","","","","example: vec![(0 <= n), (l: i32)]","","","","","","","","","","","","Tracks the mapping from bound var to generic def ids. e.g. …","Sorts of both early bound and index parameters. Early …","","","","","","","","","","","","","","","","","","","","","","replace all “sort-vars” (indexed 0…n-1) with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether this arg was used as a binder in the surface …","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","Returns the argument unchanged.","","","HACK(nilehmann) do not use this function. See lift_self_ty.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","HACK(nilehmann) this is used during annot check to allow …","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An interned string.","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","For now all sort constructors have equality if all the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Whether values of this sort can be compared for equality.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","An expression is an atom if it is “self-delimiting”, …","","Simple syntactic check to see if the expression is a …","Whether the expression is literally the constant true.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Simplify the expression by removing double negations, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","Contains the success value","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Lambda abstractions. They are purely syntactic and we don…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An anonymous region parameter for a given fn (&T)","Anonymous region for the implicit env pointer parameter to …","Named region parameters for functions (a in &’a T)","","","","","Represents the various closure traits in the language. This","","","","","","","","","","","","","","","This is a bit of a hack. We use this type internally to …","","","","","","","","","","","","","A hole used as a refinement argument or index. It will be …","","","","Equivalent to VariantIdx(0).","","","","","","","","","","","","","","","","","","","","","","","","","","","","A hole is an expression that must be inferred either …","The position where a hole appears. This determines how it …","","","","","","","","","","","","","","","","","","","","","In theory a kvar is just an unknown predicate that can use …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Option-like enum to explicitly mark that we don’t have …","","A: B","","","","","","","","","","","","A hole in predicate position (e.g., the predicate in a …","","","","","","","","","","","","","","","","","","The raw bytes of a simple value.","","","","","","SortVar are used for polymorphic sorts (Set, Map etc.) and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The source-order index of a variant in a type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of all arguments with the self arguments at the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The span for the (base) call-site for def-expanded spans","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterate and collect all refinement parameters in this item …","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This modules folows the implementation of folding in …","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See BigInt::int_max","See BigInt::int_min","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the sort is Bool.","Whether the type is a bool","","","","","","","","Whether the type is an int or a uint","","","Whether the sort is a function with return sort bool","","","","","","","See Expr::is_trivially_true","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Holds the refinement-arguments for opaque-types; empty for …","","","","Refining is the process of generating a refined version of …","","","","","","","","","","","The number of arguments consider to be self arguments.","This method work only with associated type projections …","","","","","","","","","","","","The top-level span information","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See BigInt::uint_max","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An existential varriable is identified by a context and an …","","","","","Existential variable id","Maximum value the index can take.","Maximum value the index can take, as a u32.","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Generates an evar guaranteed to be fresh in the provided …","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","","","","","","Extracts the value of this index as a usize.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Generates a context id guaranteed to be globally fresh. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Lambda abstractions. They are purely syntactic and we don…","","","","","","","","","","","","","","","","A hole used as a refinement argument or index. It will be …","","","","","","","A hole is an expression that must be inferred either …","The position where a hole appears. This determines how it …","","","","","In theory a kvar is just an unknown predicate that can use …","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","","","","","","","","","","A hole in predicate position (e.g., the predicate in a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of all arguments with the self arguments at the …","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","","","","","The span for the (base) call-site for def-expanded spans","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","An expression is an atom if it is “self-delimiting”, …","","Simple syntactic check to see if the expression is a …","Whether the expression is literally the constant true.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of arguments consider to be self arguments.","Simplify the expression by removing double negations, …","","","","The top-level span information","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the set of all free variables. For example, …","","Normalize expressions by applying beta reductions for …","","Returns the set of all opaque type aliases def ids","","Replaces all holes with the result of calling a closure. …","","","","","","","","","","","","","","","","","","","Turns each TyKind::Indexed into a TyKind::Exists with a …","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Returns","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Substitution for late bound variables","","Substitution for existential variables","","Substitution for generics, i.e., early bound types, …","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","We leave this as None if we only want to substitute the …","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A simplified version of rust mir.","A simplified version of rust types.","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Function argument.","","","","","","A node in the MIR control-flow graph.","","","","","","","","","","","","","","","","We only support opaque chars, so no data stored here for …","","Cleanups to be done.","","","","No action is to be taken. Continue unwinding.","","","","","","","","","","","","","Equivalent to VariantIdx(0).","","","","","","The source-order index of a field in a variant.","","","","","","","","","An Instance is the resolved call-target at a particular …","","","","","","","","","","Classifies locals into categories. See Body::local_kind.","Location represents the position of the start of the …","","","","","","","The - operator for negation","","The ! operator for logical inversion","General catch-all for constants of a given Ty","","","","","","","","","","","","","","","","Location of function’s return value.","","","","","","","Grouped information about the source code origin of a MIR …","","","We only support opaque string slices, so no data stored …","","","","User-declared variable binding or compiler-introduced …","Terminates the execution if unwind happens.","","","","","","","","","Triggers undefined behavior if unwind happens.","","Action to be taken when a stack unwind happens.","","","","The source-order index of a variant in a type.","","","Location where the borrow is activated.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Place to which the borrow was stored","","","The block that the location is within.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Place from which we are borrowing","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","See mk_fake_predecessors","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","During borrow checking, rustc generates fresh region …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","What kind of borrow this is","the “root” of the place, e.g. _1 in *_1.f.g.h","","","","","","","","","","","","","The FalseEdge/imaginary_target edges mess up the …","","","","","","","","","path taken to “get” the place e.g. *.f.g.h in *_1.f.g.h…","","","","","","","","","","","","","","The region for which this borrow is live","","Replicate the InferCtxt used for mir typeck by generating …","Location where the borrow reservation starts. In many …","see (NOTE:YIELD)","","The source scope, keeping track of which bindings can be …","","","","","The source span for the AST pertaining to this MIR entity.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Downcast to a particular variant of an enum or a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An anonymous region parameter for a given fn (&T)","Anonymous region for the implicit env pointer parameter to …","Named region parameters for functions (a in &’a T)","","","","","","","","","","","","A De Bruijn index is a standard means of representing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A: B","","","","","","","","","","","","","","","","","A region (lifetime) variable ID.","The raw bytes of a simple value.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This method work only with associated type projections …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,411,411,411,411,47,192,192,56,60,43,39,0,54,0,36,39,0,0,60,56,412,56,62,0,412,0,54,60,0,39,0,52,64,0,91,192,60,55,0,192,56,39,54,0,47,0,0,0,412,44,45,0,0,0,0,0,0,0,56,0,0,0,192,0,0,0,0,0,0,0,61,192,39,41,0,60,192,192,39,56,0,67,412,56,62,0,0,0,55,95,192,0,36,51,0,60,56,0,0,192,18,20,21,18,20,21,0,30,38,192,192,108,43,0,0,0,192,237,39,38,237,108,99,39,0,192,56,0,0,48,0,0,54,87,0,52,67,39,0,0,91,39,56,62,47,56,39,0,0,0,0,41,49,44,45,52,52,30,43,48,0,0,0,0,0,36,412,0,0,192,0,62,64,95,0,99,39,0,0,0,87,36,51,0,64,412,0,60,56,30,56,60,61,0,0,0,0,0,0,56,18,20,21,22,25,38,38,41,41,43,43,44,44,45,45,46,46,18,18,412,412,52,52,54,54,55,55,20,20,62,62,63,63,21,21,64,64,38,38,41,41,43,43,44,44,45,45,46,46,18,18,412,412,52,52,54,54,55,55,20,20,62,62,63,63,21,21,64,64,83,90,33,76,30,43,44,45,46,18,412,52,55,20,30,56,57,58,21,64,32,34,18,20,21,18,20,21,18,20,21,120,413,33,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,96,94,94,97,103,414,36,37,38,32,39,40,41,42,43,44,45,46,18,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,64,36,37,38,32,39,40,41,42,43,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,64,43,18,20,21,66,66,66,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,43,43,18,18,20,20,21,21,22,22,22,70,69,18,55,20,30,56,57,58,21,13,64,89,37,100,102,13,22,56,22,22,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,52,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,13,25,13,18,55,20,30,56,57,58,21,13,64,86,22,22,43,44,45,46,18,52,55,20,30,56,57,58,21,64,43,44,45,46,18,412,52,55,20,30,56,57,58,21,64,43,43,43,43,43,44,44,44,44,44,45,45,45,45,45,46,46,46,46,46,18,18,18,18,18,412,412,412,412,412,52,52,52,52,52,55,55,55,55,55,20,20,20,20,20,30,30,30,30,30,56,56,56,56,56,57,57,57,57,57,58,58,58,58,58,21,21,21,21,21,64,64,64,64,64,51,90,76,22,61,53,59,13,13,102,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,412,22,83,86,87,88,89,36,37,90,91,92,93,94,95,96,38,97,25,98,99,100,101,102,103,104,32,41,42,67,69,44,45,46,18,47,34,49,33,50,51,52,53,54,55,20,30,30,56,56,57,57,58,58,59,61,62,63,21,13,106,64,76,22,22,104,22,22,18,20,21,83,83,86,86,87,87,66,66,70,70,88,88,89,89,36,36,37,37,90,90,91,91,92,92,93,93,94,94,95,95,96,96,38,38,97,97,22,22,25,25,98,98,99,99,100,100,101,101,102,102,103,103,104,104,32,32,39,39,40,40,41,41,42,42,43,43,43,67,67,69,69,44,44,44,44,45,45,45,46,46,18,18,18,18,412,412,47,47,34,34,34,48,48,49,49,33,33,50,50,51,51,52,52,53,53,54,54,55,55,20,20,20,20,30,30,56,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63,21,21,21,21,13,13,106,106,64,64,76,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,20,18,20,21,18,20,21,18,20,21,58,22,22,22,22,69,22,22,22,22,22,22,22,22,88,22,22,22,90,43,44,45,46,18,55,20,30,56,57,58,21,64,50,53,103,415,18,18,20,20,20,21,21,25,13,13,53,54,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,416,57,57,70,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,58,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,32,33,56,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,98,101,13,34,56,54,56,98,56,22,56,89,98,32,34,53,59,106,414,66,66,66,0,83,25,100,102,46,56,415,40,53,113,90,92,63,106,76,66,22,18,20,57,58,63,21,13,66,66,66,22,104,57,83,66,70,69,46,25,98,101,83,86,88,98,101,102,58,76,43,18,20,21,93,22,104,177,18,20,21,22,412,33,22,22,83,33,86,102,56,58,53,106,76,22,22,22,13,13,63,49,63,83,113,92,94,25,102,32,42,34,33,59,13,18,20,21,55,22,22,56,63,37,20,50,412,412,36,37,38,32,39,40,41,42,43,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,64,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,30,56,57,58,96,96,13,22,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,25,100,40,22,22,66,66,66,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,56,37,42,101,0,83,86,87,66,70,88,89,36,37,90,91,92,93,94,95,96,38,97,22,25,98,99,100,101,102,103,104,32,39,40,41,42,43,67,69,44,45,46,18,412,47,34,48,49,33,50,51,52,53,54,55,20,30,56,57,58,59,60,61,62,63,21,13,106,64,76,88,417,418,418,419,419,420,421,422,0,126,126,126,126,126,126,126,126,0,126,126,126,126,126,126,126,126,126,126,126,126,126,126,0,126,126,126,126,126,126,0,126,126,126,126,126,126,126,126,126,126,126,0,0,126,0,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,0,0,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,0,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,423,423,72,72,423,423,72,72,423,72,153,423,72,153,423,72,153,423,72,153,423,72,72,72,153,153,153,153,153,153,423,72,153,423,72,153,423,72,153,423,72,423,423,423,423,423,72,72,72,72,72,153,153,153,423,72,423,72,153,153,153,423,423,72,72,153,423,72,153,153,153,153,153,153,153,153,423,72,153,153,153,423,72,153,423,72,153,153,423,72,153,153,153,153,153,423,72,153,153,153,153,153,423,153,153,153,153,153,423,72,153,153,153,153,153,153,153,153,153,153,423,153,423,72,423,72,423,72,153,423,72,153,423,72,423,72,153,423,72,153,423,72,153,423,72,153,153,153,153,153,423,72,0,0,0,0,0,0,0,185,185,185,185,185,158,185,185,185,185,185,185,185,185,185,185,185,185,121,185,121,185,185,185,185,185,158,185,121,185,185,185,185,185,185,185,185,185,185,185,121,185,121,185,185,185,185,121,185,185,185,158,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,121,185,185,185,185,158,185,185,185,185,185,121,121,185,158,185,185,121,158,185,158,185,158,185,185,185,121,185,185,185,424,185,185,0,0,185,185,185,121,185,185,185,185,121,185,185,121,185,185,185,185,185,185,185,185,185,185,185,185,158,185,185,121,425,185,185,185,185,185,185,121,185,185,185,185,185,185,185,158,185,185,185,425,185,424,424,185,185,158,185,189,426,185,158,185,185,185,185,121,185,121,185,158,185,185,158,185,121,185,121,185,185,185,185,185,185,121,185,185,185,185,185,185,185,185,185,185,158,185,121,185,242,0,242,0,0,0,0,0,242,0,242,242,242,242,203,203,243,244,245,242,203,243,244,245,242,242,242,203,243,244,245,242,243,243,0,203,204,0,203,243,244,245,242,203,243,244,245,242,203,243,244,245,242,203,243,244,245,242,204,243,244,244,245,0,203,203,243,243,244,244,245,245,242,242,203,243,244,245,242,427,242,203,203,203,203,203,203,203,203,203,0,203,243,244,245,242,203,243,244,245,242,203,243,244,245,242,244,0,203,203,203,243,244,245,0,245,0,203,244,0,203,203,203,203,203,242,203,243,244,245,242,203,243,244,245,242,203,243,244,245,242,203,243,244,245,242,203,243,244,245,242,245,203,243,244,245,242,0,0,0,248,154,154,0,0,0,0,248,247,173,247,173,248,247,428,173,248,247,247,173,247,248,248,173,248,247,173,247,247,173,247,173,248,247,173,248,247,173,248,247,0,173,248,247,248,247,173,247,173,173,248,248,248,247,247,173,248,247,247,173,247,247,173,247,173,248,247,173,248,247,248,173,248,247,247,173,247,247,247,247,247,247,247,247,247,247,173,247,247,247,173,247,0,248,173,248,247,173,248,247,173,248,247,173,248,247,173,248,247,247,173,247,248,428,247,173,247,173,248,247,429,429,429,215,192,199,0,0,0,275,0,0,192,215,197,199,0,261,163,0,215,0,197,275,6,197,199,0,0,0,0,0,224,408,408,408,199,0,0,199,0,0,0,261,163,215,0,215,275,0,0,199,199,0,0,275,192,275,0,0,233,0,0,233,0,192,275,0,212,0,201,201,0,199,0,0,322,322,322,0,0,262,0,233,0,197,0,0,192,0,262,0,0,0,0,0,0,0,215,192,215,0,214,214,214,214,214,0,0,215,192,192,0,275,0,6,197,199,0,0,0,214,0,215,0,233,192,259,261,163,0,197,215,231,192,256,192,192,108,224,0,0,192,237,199,237,108,6,17,181,0,0,192,0,197,275,199,0,0,215,0,0,0,0,0,212,274,262,181,0,275,0,0,199,6,197,199,0,232,0,0,0,232,0,256,224,199,0,0,0,261,199,192,262,0,0,17,215,197,259,199,215,0,0,163,0,0,261,274,262,0,236,236,236,236,236,0,199,0,0,0,215,275,256,236,0,215,231,197,0,0,6,199,272,170,192,192,237,237,6,6,256,256,224,224,181,181,407,407,322,322,192,192,237,237,6,6,256,256,224,224,181,181,407,407,322,322,6,197,179,178,285,170,220,175,257,188,216,264,267,272,257,182,170,192,237,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,407,322,238,17,12,175,259,17,180,12,300,183,407,170,251,170,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,0,170,192,237,6,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,192,237,6,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,407,322,170,159,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,407,407,322,322,170,2,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,161,264,267,182,311,257,238,197,157,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,10,170,170,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,273,192,237,6,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,192,237,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,407,322,192,192,192,192,192,237,237,237,237,237,6,6,6,6,6,260,260,260,260,260,161,161,161,161,161,261,261,261,261,261,164,164,164,164,164,262,262,262,262,262,263,263,263,263,263,264,264,264,264,264,265,265,265,265,265,266,266,266,266,266,267,267,267,267,267,256,256,256,256,256,268,268,268,268,268,197,197,197,197,197,269,269,269,269,269,270,270,270,270,270,10,10,10,10,10,277,277,277,277,277,271,271,271,271,271,272,272,272,272,272,232,232,232,232,232,180,180,180,180,180,259,259,259,259,259,274,274,274,274,274,238,238,238,238,238,275,275,275,275,275,224,224,224,224,224,213,213,213,213,213,199,199,199,199,199,182,182,182,182,182,181,181,181,181,181,163,163,163,163,163,407,407,407,407,407,322,322,322,322,322,0,170,170,17,238,238,197,259,232,232,238,163,0,303,213,272,272,175,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,407,322,197,170,192,192,192,237,237,237,6,6,11,159,260,161,261,172,164,262,262,263,264,265,266,267,256,268,197,197,269,269,270,270,10,277,17,271,272,272,232,232,180,180,180,180,12,259,257,257,273,274,274,251,249,280,238,238,275,224,224,213,213,199,199,182,181,181,163,163,0,192,192,237,237,6,6,6,6,6,6,6,303,303,188,188,159,159,260,260,161,161,261,261,172,172,164,164,262,262,263,263,264,264,265,265,266,266,267,267,256,256,268,268,268,197,197,269,269,270,270,10,10,277,277,17,17,271,271,272,272,232,232,180,180,12,12,259,259,257,257,273,273,274,274,251,251,249,249,280,280,238,238,275,275,224,224,213,213,213,213,213,199,199,182,182,181,181,163,163,407,407,322,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,163,224,270,6,170,251,6,192,237,6,260,161,261,164,262,263,264,265,266,267,256,268,197,269,270,10,277,271,272,232,180,259,274,238,275,224,213,199,182,181,163,175,272,6,6,161,268,221,311,170,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,269,269,12,12,12,12,170,0,6,6,275,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,180,199,10,199,277,238,199,213,197,238,199,10,238,199,238,199,10,238,199,10,197,238,199,10,238,199,322,180,238,199,238,197,163,275,164,238,161,164,266,249,238,216,225,322,17,180,12,170,170,260,303,161,251,249,221,311,6,170,188,164,269,270,10,272,180,257,273,182,0,280,280,17,170,277,6,269,257,266,267,257,170,159,270,159,270,159,172,159,159,271,12,172,0,177,294,207,430,170,225,265,0,170,180,407,322,182,159,159,159,0,180,180,180,180,257,257,188,272,273,277,216,182,266,2,180,12,270,199,10,199,260,277,249,183,188,259,15,170,260,161,164,197,277,271,232,259,274,238,163,170,0,170,180,199,265,266,267,407,322,407,322,192,237,6,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,17,271,272,232,180,12,259,257,273,274,238,275,224,213,199,182,181,163,407,322,12,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,322,263,17,170,164,262,263,264,265,266,267,197,17,271,272,232,180,257,273,274,251,213,199,182,163,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,180,12,170,197,180,199,170,197,266,188,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,170,0,6,170,170,170,170,197,259,213,170,15,11,14,180,10,10,180,15,11,14,180,170,164,262,263,264,265,266,267,197,17,271,272,232,180,257,273,274,251,213,199,182,163,192,237,6,303,188,159,260,161,261,172,164,262,263,264,265,266,267,256,268,197,269,270,10,277,17,271,272,232,180,12,259,257,273,274,251,249,280,238,275,224,213,199,182,181,163,407,322,197,180,180,431,432,433,0,0,0,0,0,0,288,288,0,293,293,0,288,198,198,288,288,289,289,198,198,288,288,289,289,198,288,289,288,288,288,291,290,198,292,293,288,289,291,290,198,292,293,288,289,198,288,289,198,288,289,198,288,289,291,290,198,292,293,288,289,198,198,288,288,289,289,198,198,198,288,289,290,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,198,288,289,198,288,289,198,288,289,198,198,198,198,198,288,288,288,288,288,289,289,289,289,289,292,291,290,291,290,198,292,293,288,289,291,291,290,198,198,292,293,288,289,288,290,291,291,290,290,198,198,292,292,293,293,288,288,288,288,289,289,291,290,198,292,293,288,289,288,288,288,291,198,288,289,198,288,288,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,288,290,198,288,289,0,288,290,288,198,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,291,290,198,292,293,288,289,290,291,290,198,292,293,288,289,215,192,192,215,0,215,6,215,0,215,192,0,233,233,192,0,212,0,0,233,192,215,192,215,0,215,192,192,6,0,215,0,233,192,0,215,231,192,294,207,294,207,192,192,0,192,237,237,192,0,215,212,6,0,192,215,215,0,215,0,215,231,179,179,179,294,207,183,183,295,295,233,233,294,294,207,207,183,183,295,295,233,233,294,294,207,207,179,179,179,216,191,183,295,215,212,216,233,225,231,294,207,179,294,207,294,207,179,294,207,183,183,179,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,233,233,225,225,231,231,294,294,207,207,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,191,191,191,191,191,183,183,183,183,183,295,295,295,295,295,215,215,215,215,215,212,212,212,212,212,216,216,216,216,216,233,233,233,233,233,225,225,225,225,225,231,231,231,231,231,294,294,294,294,294,207,207,207,207,207,191,179,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,179,179,183,295,212,216,216,233,233,225,225,231,231,294,207,179,294,207,179,179,179,179,191,191,183,183,295,295,215,215,212,212,216,216,233,233,225,225,225,231,231,231,231,294,294,294,294,207,207,207,207,179,191,183,295,215,212,216,233,225,231,294,207,225,294,207,294,207,294,207,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,295,179,0,179,294,294,207,207,191,183,295,215,212,216,233,225,231,294,207,179,179,215,215,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,179,179,179,179,179,179,191,179,216,179,179,295,225,179,179,179,179,179,179,183,295,216,225,294,207,179,179,179,179,233,225,231,294,207,179,0,294,207,225,225,216,216,216,179,179,183,295,183,294,207,179,191,216,179,179,179,233,225,231,179,225,191,183,295,215,212,216,233,225,231,294,207,179,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,212,216,191,183,295,215,212,216,233,225,231,294,207,191,183,295,215,212,216,233,225,231,294,207,179,179,179,179,179,191,183,295,215,212,216,233,225,231,294,207,179,179,179,179,179,212,216,233,191,183,295,215,212,216,233,225,231,294,207,183,179,296,296,296,296,296,296,296,0,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,0,296,296,296,296,296,296,241,235,0,0,0,0,0,0,0,297,297,297,297,297,297,234,240,240,234,234,240,234,234,234,234,434,435,235,235,235,235,235,235,234,434,241,241,241,241,241,240,234,0,0,0,301,301,301,302,157,301,302,157,301,302,157,157,157,157,301,301,302,157,301,302,157,301,302,157,302,301,302,157,301,302,301,301,302,302,157,157,301,302,157,157,301,302,157,301,302,157,301,302,157,301,302,157,157,157,301,302,157,301,302,157,301,302,301,302,301,302,301,302,301,302,301,302,301,302,157,301,302,157,301,301,302,157,301,302,157,0,0,305,0,305,305,306,304,304,0,304,304,305,306,304,305,306,304,305,306,304,304,304,305,306,304,305,306,304,305,306,304,305,306,306,305,306,304,304,305,305,306,306,304,305,306,304,306,306,306,306,304,305,306,306,306,304,305,306,304,305,306,0,0,0,0,0,0,0,0,304,306,304,304,304,304,304,304,305,306,304,305,306,304,304,305,306,304,305,306,304,305,306,304,305,306,0,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,0,317,317,0,317,317,317,317,0,317,317,317,317,317,317,317,317,317,317,317,317,0,0,0,0,0,0,326,328,331,330,327,326,328,331,330,327,326,327,328,331,330,327,326,328,327,328,328,331,330,327,326,328,331,330,327,326,328,331,330,327,326,330,327,331,328,331,330,327,326,326,328,327,328,330,327,328,327,327,327,328,328,331,331,330,330,327,327,326,326,328,331,330,327,326,327,326,326,326,328,331,330,327,326,328,331,330,327,326,328,331,330,327,326,326,328,330,327,326,327,327,331,329,331,329,331,327,328,331,330,327,326,328,331,330,327,326,328,330,327,328,330,327,328,330,327,328,330,327,328,330,327,328,330,327,328,331,330,327,326,328,331,330,327,326,327,328,331,330,327,326,328,331,330,327,326,0,0,0,0,0,333,255,333,255,255,255,333,255,333,255,333,255,255,333,255,0,333,255,255,333,333,255,255,333,255,333,255,333,255,255,333,255,0,333,0,333,333,333,0,333,0,0,333,0,0,333,333,0,0,0,0,0,0,0,0,333,333,333,0,333,0,333,333,333,0,0,0,255,333,333,333,333,333,333,255,333,255,333,255,333,255,333,255,333,255,333,255,0,0,0,0,0,0,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,379,379,378,378,378,378,380,380,379,378,380,379,378,380,379,378,380,379,378,380,379,378,380,378,379,378,380,378,380,379,378,380,378,378,379,378,380,379,378,380,379,378,380,379,378,380,379,379,378,380,379,378,380,341,335,368,0,395,335,393,392,0,393,0,0,0,368,341,341,176,0,4,0,0,337,392,0,368,0,4,368,436,335,0,363,436,176,363,335,392,176,382,368,341,337,382,392,341,0,393,0,392,392,382,0,4,347,352,352,341,392,341,382,0,4,347,347,176,341,368,0,0,0,0,0,341,363,341,344,366,341,437,393,437,4,0,337,0,0,393,0,347,0,347,195,0,368,341,337,392,395,0,0,393,344,341,341,0,0,0,4,341,392,0,395,436,0,0,335,4,0,368,4,392,436,366,0,392,368,0,0,392,383,385,176,176,223,223,177,177,347,347,366,366,341,341,382,382,436,436,437,437,438,438,218,218,395,395,388,388,386,386,176,176,223,223,177,177,347,347,366,366,341,341,382,382,436,436,437,437,438,438,218,218,395,395,388,388,386,386,391,169,176,223,177,341,195,382,439,436,437,438,218,395,388,386,382,385,169,195,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,385,169,360,347,366,341,195,382,176,223,177,385,360,347,366,341,195,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,223,223,177,177,437,437,218,218,388,388,386,386,195,382,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,195,382,341,195,382,176,223,177,341,195,382,439,436,437,438,218,395,388,386,176,176,176,176,176,223,223,223,223,223,177,177,177,177,177,341,341,341,341,341,195,195,195,195,195,382,382,382,382,382,436,436,436,436,436,437,437,437,437,437,438,438,438,438,438,218,218,218,218,218,395,395,395,395,395,388,388,388,388,388,386,386,386,386,386,169,390,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,177,439,436,437,438,218,395,388,386,223,169,372,370,368,363,4,352,339,377,391,392,337,393,347,366,335,341,195,390,382,176,176,223,223,169,169,372,372,370,370,368,368,177,177,344,344,363,363,4,4,352,352,385,385,339,339,360,360,377,377,391,391,392,392,337,337,393,393,347,347,366,366,335,335,341,341,195,195,390,390,382,382,439,439,436,436,437,437,438,438,218,218,395,395,388,388,386,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,390,341,195,382,391,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,339,169,370,372,176,223,177,439,436,437,438,218,388,372,370,385,195,169,169,377,176,223,177,439,436,437,438,218,388,0,169,195,0,377,223,177,218,388,195,390,383,176,223,177,439,436,437,438,218,395,388,386,385,169,0,385,169,169,438,372,370,360,169,438,386,339,223,439,339,169,176,223,177,439,436,437,438,218,395,388,386,176,223,177,439,436,437,438,218,395,388,386,176,223,177,385,360,347,366,341,195,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,385,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,195,360,390,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,439,390,169,176,223,169,372,370,368,177,344,363,4,352,385,339,360,377,391,392,337,393,347,366,335,341,195,390,382,439,436,437,438,218,395,388,386,440,441,442,441,443,444,442,441,441,445,442,446,445,447,441,444,444,441,448,446,442,443,441,446,447,444,406,0,0,406,0,0,406,0,406,0,0,0,0,408,408,408,406,0,0,406,0,0,0,401,162,406,406,0,0,0,201,201,0,406,0,406,0,0,0,0,0,0,0,0,0,0,214,214,214,214,214,406,0,214,401,162,108,0,406,108,318,0,406,184,0,0,402,318,0,406,219,219,219,219,219,406,0,167,0,0,406,406,402,0,0,406,0,162,0,0,401,402,0,236,236,236,236,236,406,0,236,184,0,0,108,108,214,214,236,236,201,201,217,217,167,167,318,318,219,219,399,399,314,314,2,2,408,408,221,221,311,311,449,449,430,430,410,410,108,108,214,214,236,236,201,201,217,217,167,167,318,318,219,219,399,399,314,314,2,2,408,408,221,221,311,311,449,449,430,430,410,410,174,187,186,323,319,108,214,236,201,217,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,314,2,408,221,311,449,430,410,174,174,320,320,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,399,166,320,167,398,168,284,318,282,184,219,399,314,108,214,236,201,217,166,320,167,398,168,284,318,282,184,219,399,314,2,408,221,311,449,430,410,409,409,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,108,108,214,214,236,236,201,201,217,217,2,2,408,408,221,221,311,311,449,449,430,430,410,410,2,167,284,400,286,354,282,184,219,399,314,357,323,286,319,311,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,284,400,354,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,167,284,400,286,354,282,184,219,399,314,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,314,108,214,236,201,217,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,314,2,408,221,311,449,430,410,108,108,108,108,108,214,214,214,214,214,236,236,236,236,236,201,201,201,201,201,217,217,217,217,217,320,320,320,320,320,167,167,167,167,167,357,357,357,357,357,401,401,401,401,401,321,321,321,321,321,402,402,402,402,402,403,403,403,403,403,323,323,323,323,323,404,404,404,404,404,398,398,398,398,398,168,168,168,168,168,284,284,284,284,284,400,400,400,400,400,286,286,286,286,286,354,354,354,354,354,405,405,405,405,405,406,406,406,406,406,319,319,319,319,319,318,318,318,318,318,282,282,282,282,282,184,184,184,184,184,162,162,162,162,162,219,219,219,219,219,399,399,399,399,399,314,314,314,314,314,2,2,2,2,2,408,408,408,408,408,221,221,221,221,221,311,311,311,311,311,449,449,449,449,449,430,430,430,430,430,410,410,410,410,410,168,162,162,162,286,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,108,214,236,201,217,2,408,221,311,449,430,410,284,400,217,320,167,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,184,162,283,219,219,314,408,108,108,214,214,236,236,201,201,217,217,325,325,187,187,186,186,409,409,166,166,320,320,167,167,357,357,401,401,324,324,321,321,402,402,403,403,323,323,404,404,398,398,168,168,284,284,400,400,286,286,354,354,405,405,406,406,319,319,318,318,282,282,184,184,184,162,162,283,283,219,219,399,399,314,314,2,2,408,408,221,221,311,311,449,449,430,430,410,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,320,167,357,401,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,219,399,314,357,221,311,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,398,398,166,406,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,168,284,284,168,284,108,201,217,408,221,449,430,410,284,168,357,321,405,314,108,201,217,408,221,449,430,410,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,357,286,354,221,311,321,284,400,284,325,398,325,325,324,409,283,325,324,217,449,430,404,108,214,236,201,217,2,408,221,311,449,430,410,0,283,283,399,323,319,2,166,320,187,186,167,357,321,168,400,405,162,0,166,320,398,168,184,162,219,404,108,214,236,201,217,2,408,221,311,449,430,410,108,214,236,201,217,2,408,221,311,449,430,410,108,214,236,201,217,166,320,167,398,168,284,318,282,184,219,399,314,2,408,221,311,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,2,221,410,403,219,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,168,187,186,409,283,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,187,186,282,314,284,284,400,320,219,410,108,214,236,201,217,325,187,186,409,166,320,167,357,401,324,321,402,403,323,404,398,168,284,400,286,354,405,406,319,318,282,184,162,283,219,399,314,2,408,221,311,449,430,410,283,283,450,451,0,230],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2,3],[[5,[4]]]],[[1,2,3],[[5,[6]]]],[[1,2,3],[[5,[7]]]],[[1,2,3],[[5,[8]]]],[[1,2,3],[[5,[7]]]],0,0,[[-1,9],[[5,[10]]],[]],[[-1,9],[[5,[[12,[11]]]]],[]],[[-1,9],[[5,[13]]],[]],[[-1,9],[[5,[[12,[14]]]]],[]],[[-1,9],[[5,[[17,[[12,[[16,[15]]]]]]]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[18,19],18],[[20,19],20],[[21,19],21],[[22,23],24],[25,[[0,[26]]]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],0,0,0,0,[30,19],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[32,[[5,[33]]]],[34,[[5,[33]]]],[18,35],[20,35],[21,35],[18,19],[20,19],[21,19],[[18,19],[[5,[18]]]],[[20,19],[[5,[20]]]],[[21,19],[[5,[21]]]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[36,36],[37,37],[38,38],[32,32],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[45,45],[46,46],[18,18],[47,47],[34,34],[48,48],[49,49],[33,33],[50,50],[51,51],[52,52],[53,53],[54,54],[55,55],[20,20],[30,30],[56,56],[57,57],[58,58],[59,59],[60,60],[61,61],[62,62],[63,63],[21,21],[13,13],[64,64],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[43,43],65],[[18,18],65],[[20,20],65],[[21,21],65],[66,[[69,[[68,[67]]]]]],0,[66,[[70,[[68,[67]]]]]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[22,-1],[[5,[37]]],[[73,[72]]]],[22,[[0,[26]]]],0,0,0,[-1,18,74],[-1,55,74],[-1,20,74],[-1,30,75],[-1,56,75],[-1,57,75],[-1,58,75],[-1,21,74],[-1,13,75],[-1,64,75],0,0,0,0,0,[[],22],[56,55],[[22,-1],[[5,[76]]],[[73,[72]]]],[22,[[0,[26]]]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[52,77],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],0,0,[[13,[16,[56]]],[[68,[56]]]],[[18,-1],24,78],[[55,-1],24,78],[[20,-1],24,78],[[30,-1],24,79],[[56,-1],24,79],[[57,-1],24,79],[[58,-1],24,79],[[21,-1],24,78],[[13,-1],24,79],[[64,-1],24,79],0,[22,[[0,[26]]]],0,[[43,43],80],[[44,44],80],[[45,45],80],[[46,46],80],[[18,18],80],[[52,52],80],[[55,55],80],[[20,20],80],[[30,30],80],[[56,56],80],[[57,57],80],[[58,58],80],[[21,21],80],[[64,64],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[51,32],0,0,0,[61,46],0,0,[[13,72],[[5,[19]]]],[[13,72,[16,[56]]],[[5,[56]]]],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],0,[[83,84],85],[[86,84],85],[[87,84],85],[[88,84],85],[[89,84],85],[[36,84],85],[[37,84],85],[[90,84],85],[[91,84],85],[[92,84],85],[[93,84],85],[[94,84],85],[[95,84],85],[[96,84],85],[[38,84],85],[[97,84],85],[[25,84],85],[[98,84],85],[[99,84],85],[[100,84],85],[[101,84],85],[[102,84],85],[[103,84],85],[[104,84],85],[[32,84],85],[[41,84],85],[[42,84],85],[[67,84],85],[[[69,[-1]],84],85,105],[[44,84],85],[[45,84],85],[[46,84],85],[[18,84],85],[[47,84],85],[[34,84],85],[[49,84],85],[[33,84],85],[[50,84],85],[[51,84],85],[[52,84],85],[[53,84],85],[[54,84],85],[[55,84],85],[[20,84],85],[[30,84],85],[[30,84],85],[[56,84],85],[[56,84],85],[[57,84],85],[[57,84],85],[[58,84],85],[[58,84],85],[[59,84],85],[[61,84],85],[[62,84],85],[[63,84],85],[[21,84],85],[[13,84],85],[[106,84],85],[[64,84],85],[[76,84],85],[22,[[0,[26]]]],0,0,[22,[[0,[26]]]],0,[[18,19],[[5,[18]]]],[[20,19],[[5,[20]]]],[[21,19],[[5,[21]]]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[108,43],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[23,44],[45,44],[-1,-1,[]],[[[107,[-1]]],-1,[]],[109,45],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[35,18],[-1,-1,[]],[19,18],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[49,34],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[19,20],[[[107,[-1]]],-1,[]],[35,20],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[58,56],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[19,21],[[[107,[-1]]],-1,[]],[-1,-1,[]],[35,21],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[35,20],[35,18],[35,20],[35,21],[35,18],[35,20],[35,21],[19,18],[19,20],[19,21],0,[[22,-1],[[5,[106]]],[[73,[72]]]],[22,[[0,[26]]]],0,0,[[[69,[-1]],46],[[5,[-1]]],[]],[[22,-1],101,[[73,[23]]]],[[22,9],[[5,[23]]]],[[22,-1],[[5,[91]]],[[73,[72]]]],[[22,23],[[0,[26]]]],[[22,23],83],[[22,23],[[5,[93]]]],[[22,23],[[5,[88]]]],[[22,23],[[5,[97]]]],[[88,23],89],[[22,1,23],[[5,[[16,[53]]]]]],[[22,-1],98,[[73,[23]]]],[[22,-1],25,[[73,[23]]]],0,[[43,-1],24,112],[[44,-1],24,112],[[45,-1],24,112],[[46,-1],24,112],[[18,-1],24,112],[[55,-1],24,112],[[20,-1],24,112],[[30,-1],24,112],[[56,-1],24,112],[[57,-1],24,112],[[58,-1],24,112],[[21,-1],24,112],[[64,-1],24,112],0,0,0,0,[18,19],[18,19],[20,35],[20,19],[20,19],[21,19],[21,19],0,0,[[13,[16,[56]]],[[68,[56]]]],[53,55],[[54,56],55],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],0,[57,[[16,[56]]]],0,[[[70,[-1]],46,-1],24,[]],[[22,37],24],[[22,72,76],24],[[22,23,101],24],[[22,9,23],24],[[22,23,[68,[113]]],24],[[22,23,83],24],[[22,72,106],24],[[22,23,93],24],[[22,23,88],24],[[22,[114,[23,97]]],24],[[22,90],24],[[22,23,13],24],[[22,92],24],[[22,23,98],24],[[22,72,72,19,[68,[56]],56],24],[22,24],[[22,23,25],24],[[58,[16,[56]]],57],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[32,115],[33,115],[56,115],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[13,9],80],[34,80],[56,80],[54,80],[56,80],[98,80],[56,80],[[22,23],80],[56,80],0,0,0,0,0,0,0,0,[66,[[69,[116]]]],0,[66,[[70,[116]]]],0,0,0,0,0,0,[[56,56],56],0,0,[53,21],0,0,0,0,0,0,[-1,66,[[117,[45]]]],[[],22],[19,18],[19,20],[[[68,[56]],56],57],[[19,[68,[56]],56],58],[[21,113],63],[19,21],[[-1,-2,-3,[68,[9]],118],13,[[117,[9]]],28,28],[66,[[69,[56]]]],0,[66,[[70,[56]]]],0,0,[57,56],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[43,43],[[5,[65]]]],[[18,18],[[5,[65]]]],[[20,20],[[5,[65]]]],[[21,21],[[5,[65]]]],0,0,0,0,0,0,0,[22,[[0,[26]]]],[[-1,119],[[5,[-2]]],[],[]],0,[[22,23],13],0,0,0,0,0,[56,56],[58,57],0,0,0,[[22,-1],[[5,[92]]],[[73,[72]]]],[22,120],0,0,0,0,[49,118],[63,118],0,0,0,0,0,0,0,0,0,0,0,0,[[18,18],[[5,[19]]]],[[20,20],[[5,[19]]]],[[21,21],[[5,[19]]]],[[],[[121,[[16,[55]]]]]],[22,[[0,[26]]]],0,[[56,[16,[56]]],56],[63,72],0,[[],77],0,[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],[96,9],0,[[-1,118],13,[[117,[9]]]],0,[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[124,[[107,[52]]]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],0,0,0,[22,[[0,[26]]]],0,[66,[[69,[32]]]],0,[66,[[70,[32]]]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[-1,-1],[[107,[-1]]],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[88,13],88],0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[19,-1,[]],[19,-1,[]],[19,24],[[126,-1],[[107,[-2,111]]],127,[]],[[126,77],[[107,[-1,111]]],[]],0,[[-1,77],[[81,[-2]]],[],[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[126,128],[[107,[[68,[51]],111]]]],[[],19],[[126,23,97],24],[-1,-2,[],[]],[-1,-2,[],[]],[[126,129],[[107,[42,111]]]],[[126,130],[[107,[102,111]]]],[[126,23],[[107,[102,111]]]],[[126,131],[[107,[100,111]]]],[[126,23],[[107,[100,111]]]],[[1,132,109],[[107,[[24,[88,104]],111]]]],[[126,133],[[107,[32,111]]]],[[126,134],[[107,[83,111]]]],[[126,[16,[135]]],[[107,[[68,[51]],111]]]],[[126,136],[[107,[95,111]]]],[[126,137],[[107,[89,111]]]],[[126,128],[[107,[93,111]]]],[[1,132,109],[[107,[88,111]]]],[126,[[107,[88,111]]]],[[126,128],[[107,[88,111]]]],[126,[[107,[[24,[88,93]],111]]]],[[126,138],[[107,[41,111]]]],[[126,139],[[107,[40,111]]]],[[126,140],[[107,[97,111]]]],[[126,141],[[107,[33,111]]]],[[126,[5,[142]],141],[[107,[32,111]]]],[[126,143],[[107,[96,111]]]],[126,[[107,[93,111]]]],[[126,144],[[107,[32,111]]]],[[1,109],13],[[1,132,109],[[107,[[5,[32]],111]]]],[[126,142],[[107,[32,111]]]],[[1,132,109],[[107,[[24,[88,93,25]],111]]]],[[126,[16,[145]]],[[107,[[68,[50]],111]]]],[126,103],[[126,146,128],103],[[126,147],[[107,[94,111]]]],[[1,132,109,[5,[[114,[23,97]]]]],126],0,0,0,0,[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],[[126,109],126],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],0,[19,-1,[]],[19,-1,[]],[19,24],[[-1,77],[[81,[-2]]],[],[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[-1,-2,[],[]],[[148,149],[[150,[-1]]],151],[-1,-2,[],[]],[[1,-1,77],148,[[117,[9]]]],0,0,[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],0,[[-1,34],24,[]],[[-1,87],24,[]],[[-1,101],24,[]],[[-1,59],24,[]],[[-1,100],24,[]],[[-1,86],24,[]],[[-1,83],24,[]],[[-1,57],24,[]],[[-1,51],24,[]],[[-1,63],24,[]],[[-1,41],24,[]],[[-1,62],24,[]],[[-1,58],24,[]],[[-1,49],24,[]],[[-1,47],24,[]],[[-1,53],24,[]],[[-1,56],24,[]],[[-1,98],24,[]],[[-1,32],24,[]],[[-1,50],24,[]],[[-1,102],24,[]],[[-1,103],24,[]],[[-1,34],24,152],[[-1,87],24,152],[[-1,101],24,152],[[-1,59],24,152],[[-1,100],24,152],[[-1,86],24,152],[[-1,83],24,152],[[-1,57],24,152],[[-1,51],24,152],[[-1,58],24,152],[[-1,49],24,152],[[-1,47],24,152],[[-1,53],24,152],[[-1,56],24,152],[[-1,98],24,152],[[-1,32],24,152],[[-1,50],24,152],[[-1,102],24,152],[[-1,103],24,152],0,0,0,[[153,-1],[[154,[10]]],[[117,[9]]]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[153,-1],[[154,[[155,[66]]]]],[[117,[44]]]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[153,-1],[[5,[37]]],[[73,[72]]]],[153,156],0,[[153,30,[16,[56]]],80],[153,[[154,[157]]]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[[153,9,[16,[56]]],[[68,[56]]]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[153,9,72],[[5,[19]]]],[[153,9,[158,[56]],72],[[5,[56]]]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[[153,-1],[[154,[[12,[11]]]]],[[117,[9]]]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[153,-1],[[5,[106]]],[[73,[72]]]],[153,[[0,[26]]]],[[153,-1],[[154,[159]]],[[117,[9]]]],[[153,23],89],[[153,56],80],[153,160],[[153,-1,[16,[56]]],[[68,[56]]],[[117,[9]]]],[[],19],[[],19],[[],19],[[153,159,161,162],[[154,[163]]]],[[153,159,161,162],[[154,[163]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[153,52],80],[[153,9],80],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[153,9],[[154,[[12,[[158,[164]]]]]]]],[[153,9],[[5,[9]]]],[[153,9],[[154,[[166,[165]]]]]],[[153,23],[[154,[[158,[167]]]]]],[[153,-1],[[154,[[166,[168]]]]],[[117,[9]]]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[153,22],0,[153,22],[[153,23],[[154,[[155,[169]]]]]],[[153,170,170],170],0,[[1,132,[171,[156]]],153],[[153,-1],[[154,[[12,[172]]]]],[[117,[9]]]],[153,173],[[153,23],[[154,[[0,[26]]]]]],0,[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[153,159,168],[[154,[170]]]],[[153,159,174],[[154,[175]]]],[[153,159,168],[[154,[170]]]],0,[[153,34],[[5,[56]]]],[[153,9],[[5,[56]]]],[[153,33],[[5,[56]]]],[[153,9,3],[[5,[56]]]],[[153,9],[[5,[56]]]],[[153,32],[[5,[56]]]],0,0,[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[153,9],[[154,[[12,[14]]]]]],[[153,9],[[16,[176]]]],[[153,9,177],[[154,[[17,[[12,[15]]]]]]]],[[153,9],[[154,[[17,[[12,[178]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[[[180,[179]]],179],[[181,182],170],[-1,179,28],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[[158,[179]]]]]],0,0,[[170,184],170],[-1,31,[]],[[[185,[[16,[162]]]]],186],[[[185,[[16,[162]]]]],187],[[[185,[[16,[163]]]]],188],[[[185,[-1]]],-1,[189,190]],[[[185,[191]]],[[16,[179]]]],[[[185,[191]],[5,[183]]],179],[[192,-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[170,170],[[],170],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],170],[[[185,[-1]]],[[185,[-1]]],[189,190]],[[-1,-2],24,[],[]],[[9,-1],170,[[117,[[158,[170]]]]]],[[[185,[-1]],[185,[-1]]],65,[193,189]],[[[158,[-1]],[158,[-1]]],65,193],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[9,[5,[183]]],179],[[192,6,6],[[5,[6]]]],[6,179],[[6,[5,[183]]],179],[[-1,170],170,[[117,[179]]]],[-1,[[185,[-2]]],74,[[194,[-1]],189]],[-1,[[185,[[16,[-2]]]]],74,[[194,[-1]]]],[19,-1,[]],[[[185,[-1]]],[],[189,190]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[[10,195],170],[[10,175,170,177,[158,[170]]],170],[19,24],[[[185,[-1]]],24,[189,190]],[19,24],[[[185,[-1]]],24,[189,190]],[35,179],[[],[[158,[-1]]],[]],[[],[[158,[-1]]],[]],[[[185,[[16,[-2]]]],-1],24,78,[[196,[-1]]]],[[[185,[-2]],-1],24,78,[[196,[-1]],189]],[[[185,[-1]],[185,[-1]]],80,189],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[[185,[[16,[-1]]]],[185,[[16,[-1]]]]],80,[]],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[[185,[191]],[16,[197]]],[[180,[179]]]],[[[185,[191]],197],179],[198,179],[[[180,[170]]],170],[[199,179],170],[[[185,[191]]],[[16,[179]]]],[[],179],[[153,[68,[163]],159,-1],[[154,[24]]],200],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[201,170],[[[185,[-1]],84],85,[202,189,190]],[[[185,[-1]],203,84],85,[204,189]],[[[185,[-1]],84],85,[105,189,190]],[[[158,[170]],203,84],85],[[197,-1],179,200],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[16,[-1]]],[[185,[[16,[-1]]]]],205],[[[68,[-1]]],[[185,[[16,[-1]]]]],[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[206,[-1]]],[[158,[-1]]],[]],[[[206,[-1]]],[[158,[-1]]],[]],[[199,7],179],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[-1,[[158,[-2]]],28,[]],[[[16,[-1]]],[[158,[-1]]],205],[[[16,[-1]]],[[158,[-1]]],205],[[[68,[-1]]],[[158,[-1]]],[]],[[[68,[-1]]],[[158,[-1]]],[]],[207,179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[9,-1],170,[[117,[[158,[163]]]]]],[[[121,[-1]]],[[211,[[208,[-1]],24,[210,[209]]]]],[189,190]],[[72,64],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[[185,[-1]],-2],24,[189,190],112],0,[212,179],[[153,-1],[[154,[[185,[[16,[163]]]]]]],[[117,[9]]]],0,0,[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[199,-1],170,[[117,[213]]]],[[],19],[[],19],[214,170],[214,179],[214,179],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[[16,[-1]]]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[[185,[191]]],80],[[-1,-2,-3,[5,[183]]],179,[[117,[179]]],[[117,[179]]],[[117,[179]]]],[[[185,[191]]],215],[216,179],[[217,35],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[-2,-3],[[158,[-1]]],[],[[73,[[16,[-1]]]]],71],[[-2,-3],[[158,[-1]]],[],[[73,[[16,[-1]]]]],71],[[218,[5,[183]]],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],0,0,[[219,170,108],170],[170,170],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[[185,[191]]],179],[[],170],[-1,[[185,[-1]]],189],[[],[[121,[-1]]],190],[[[185,[191]]],179],[[],179],[[],179],[[-1,175,220],170,[[117,[9]]]],[-1,179,28],[221,170],[[[185,[-1]],[185,[-1]]],[[5,[65]]],[222,189]],[[[158,[-1]],[158,[-1]]],[[5,[65]]],222],[[179,223],179],[182,170],[[-1,-2],170,[[117,[224]]],[[117,[225]]]],0,[-1,[[24,[[228,[[227,[[208,[-1]],[226,[24]],[210,[209]]]]]],229]]],[189,190]],0,0,[[[185,[191]]],179],[-1,[[158,[-1]]],[]],[-1,[[158,[-1]]],[]],[[[185,[191]]],[[5,[183]]]],[[],[[121,[-1]]],[]],[[],[[121,[[16,[-1]]]]],[]],[[],170],[[[158,[-1]],[16,[162]]],[[158,[-1]]],230],[[[185,[191]]],[[5,[231]]]],[-1,-2,[],[]],[[[185,[191]]],[[5,[225]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[[185,[[16,[232]]]]],[[158,[197]]]],[[[158,[232]]],[[158,[197]]]],[-1,122,[]],[[[185,[191]]],[[5,[233]]]],[[[158,[-1]],-2],[[107,[[158,[-1]]]]],234,235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[],179],[-1,170,[[117,[[158,[170]]]]]],[-1,179,[[117,[[158,[179]]]]]],[[-1,35,[5,[183]]],179,[[117,[179]]]],[[-1,[16,[35]]],179,[[117,[179]]]],[-1,125,[]],[-1,125,[]],[236,170],[236,179],[[237,-1,[5,[183]]],179,[[117,[179]]]],[[[185,[238]]],170],[[[185,[238]]],[[24,[170,179]]]],[[],170],[[],179],[[],170],[[],170],[[233,[5,[183]]],179],[[[158,[-1]],-2],[[239,[24]]],240,241],[-1,-2,[],[]],[-1,-2,[],[]],[[],179],0,0,0,0,0,0,0,0,0,0,[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[242,242],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],0,0,[9,122],[1,203],[1,203],0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[19,24],[19,24],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,203,84],85,[]],[[[243,[-1]],84],85,204],[[[244,[-1]],203,84],85,26],[[[244,[-1]],84],85,26],[[[245,[-1]],203,84],85,204],0,[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[246,[[5,[-1]]],[]],[246,[[5,[242]]]],0,[[203,80],203],0,[[203,80],203],0,0,[[203,80],203],0,0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[203,242],203],0,[[203,246],24],[[203,-1],[[243,[-1]]],[]],[[77,-1],[[244,[-2]]],28,[]],[[-1,80],[[245,[-1]]],[]],0,0,[[84,-1,[5,[77]]],85,204],0,0,0,[[203,80],203],0,0,0,0,[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[247,153,9],[[154,[10]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[247,153,44],[[154,[[155,[66]]]]]],0,0,[248,248],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[],173],[[],247],[[247,153],[[154,[157]]]],0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[248,84],85],[[247,153,9],[[154,[[12,[11]]]]]],0,0,[[[107,[-1]]],-1,[]],[-1,-1,[]],[111,248],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[247,153],[[250,[72,249]]]],0,0,[[247,153,9],[[154,[159]]]],0,0,[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[248,149],[[150,[111]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[247,153,9],[[154,[[12,[[158,[164]]]]]]]],0,0,[[247,153,9],[[154,[[166,[165]]]]]],0,[[247,153,23],[[154,[[158,[167]]]]]],0,[[247,153,9],[[154,[[166,[168]]]]]],0,[[247,153,23],[[154,[[155,[169]]]]]],0,[[247,153,9],[[154,[[12,[172]]]]]],0,0,0,[[247,153],[[154,[[16,[251]]]]]],0,0,[[[252,[[114,[-1,-2]]]],-1,-3],-2,[253,254],205,71],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[247,153,9],[[154,[[12,[14]]]]]],0,0,[[1,9,255],248],0,[[247,153,9],[[154,[[17,[[12,[178]]]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[10,-1],199,[[117,[175]]]],0,[[181,182],170],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[6,6],[[5,[6]]]],[[256,-1],197,[[117,[[158,[197]]]]]],0,0,0,0,0,0,[257,[[16,[170]]]],0,0,0,0,0,0,0,[[170,184],170],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[238,[[5,[199]]]],[[[17,[-1]]],17,258],[[[12,[-1]]],12,258],[175,188],[[[259,[-1]]],[[5,[-1]]],[]],[[[17,[-1]]],[[17,[-1]]],[]],[[[180,[-1]]],[[180,[-1]]],[]],[[[12,[-1]]],[[12,[-1]]],[]],0,0,0,[170,170],0,[[],170],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[175,[[24,[170,170]]]],[[],170],[192,192],[237,237],[6,6],[159,159],[260,260],[161,161],[261,261],[172,172],[164,164],[262,262],[263,263],[264,264],[265,265],[266,266],[267,267],[256,256],[268,268],[197,197],[269,269],[270,270],[10,10],[[[17,[-1]]],[[17,[-1]]],205],[271,271],[272,272],[232,232],[[[180,[-1]]],[[180,[-1]]],205],[[[12,[-1]]],[[12,[-1]]],205],[[[259,[-1]]],[[259,[-1]]],205],[257,257],[273,273],[274,274],[238,238],[275,275],[224,224],[213,213],[199,199],[182,182],[181,181],[163,163],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[9,-1],170,[[117,[[158,[170]]]]]],[[159,153,-1],[[154,[-3]]],200,[],[[276,[-2]]]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,170],170,[[117,[179]]]],0,[-1,256,75],[-1,268,75],[-1,197,75],[-1,269,75],[-1,270,75],[-1,10,75],[-1,277,75],[-1,[[17,[-2]]],75,[[194,[-1]]]],[-1,271,75],[-1,272,75],[-1,232,75],[-1,[[180,[-2]]],75,[[194,[-1]]]],[-1,[[12,[-2]]],75,[[194,[-1]]]],[-1,[[259,[-2]]],74,[[194,[-1]]]],[-1,257,75],[-1,273,75],[-1,274,75],[-1,238,75],[-1,275,75],[-1,224,75],[-1,213,75],[-1,199,75],[-1,182,75],[-1,181,75],[-1,163,75],0,0,0,0,0,[1,203],[1,203],[197,55],0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[10,9],[[10,195],170],[[10,175,170,177,[158,[170]]],170],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[256,-1],24,79],[[268,-1],24,79],[[197,-1],24,79],[[269,-1],24,79],[[270,-1],24,79],[[10,-1],24,79],[[277,-1],24,79],[[[17,[-2]],-1],24,79,[[196,[-1]]]],[[271,-1],24,79],[[272,-1],24,79],[[232,-1],24,79],[[[180,[-2]],-1],24,79,[[196,[-1]]]],[[[12,[-2]],-1],24,79,[[196,[-1]]]],[[[259,[-2]],-1],24,78,[[196,[-1]]]],[[257,-1],24,79],[[273,-1],24,79],[[274,-1],24,79],[[238,-1],24,79],[[275,-1],24,79],[[224,-1],24,79],[[213,-1],24,79],[[199,-1],24,79],[[182,-1],24,79],[[181,-1],24,79],[[163,-1],24,79],0,[[192,192],80],[[237,237],80],[[6,6],80],[[6,6],6],[[260,260],80],[[161,161],80],[[261,261],80],[[164,164],80],[[262,262],80],[[263,263],80],[[264,264],80],[[265,265],80],[[266,266],80],[[267,267],80],[[256,256],80],[[268,268],80],[[197,197],80],[[269,269],80],[[270,270],80],[[10,10],80],[[277,277],80],[[271,271],80],[[272,272],80],[[232,232],80],[[[180,[-1]],[180,[-1]]],80,278],[[[259,[-1]],[259,[-1]]],80,278],[[274,274],80],[[238,238],80],[[275,275],80],[[224,224],80],[[213,213],80],[[199,199],80],[[182,182],80],[[181,181],80],[[163,163],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,[[[180,[170]]],170],[[199,179],170],[[[17,[-1]],77],-1,[]],[238,[[24,[10,[16,[163]],213]]]],[238,[[24,[10,195]]]],[197,270],[[[259,[-1]]],-1,[]],[232,[[24,[197,55]]]],[232,197],[238,[[16,[170]]]],[163,170],0,0,0,[272,[[16,[170]]]],0,[[153,[68,[163]],159,-1],[[154,[24]]],200],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[197,[[68,[197]]]],[201,170],[[192,84],[[107,[24,279]]]],[[192,203,84],85],[[192,84],[[107,[24,279]]]],[[237,84],[[107,[24,279]]]],[[237,203,84],85],[[237,84],[[107,[24,279]]]],[[6,84],[[107,[24,279]]]],[[6,84],[[107,[24,279]]]],[[11,203,84],85],[[159,84],85],[[260,84],85],[[161,84],85],[[261,84],85],[[172,84],85],[[164,84],85],[[262,84],85],[[262,203,84],85],[[263,84],85],[[264,84],85],[[265,84],85],[[266,84],85],[[267,84],85],[[256,203,84],85],[[268,84],85],[[197,203,84],85],[[197,84],85],[[269,84],85],[[269,203,84],85],[[270,84],85],[[270,203,84],85],[[10,84],85],[[277,84],85],[[[17,[-1]],84],85,105],[[271,84],85],[[272,84],85],[[272,203,84],85],[[232,84],85],[[232,203,84],85],[[[180,[273]],203,84],85],[[[180,[-1]],84],85,204],[[[180,[179]],203,84],85],[[[180,[-1]],203,84],85,204],[[[12,[-1]],84],85,105],[[[259,[-1]],84],85,105],[[257,203,84],85],[[257,84],85],[[273,84],85],[[274,84],85],[[274,203,84],85],[[251,84],85],[[249,84],85],[[280,84],85],[[238,203,84],85],[[238,84],85],[[275,84],85],[[224,84],85],[[224,203,84],85],[[213,203,84],85],[[213,84],85],[[199,203,84],85],[[199,84],85],[[182,84],85],[[181,84],85],[[181,203,84],85],[[163,203,84],85],[[163,84],85],0,[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[8,6],[7,6],[19,6],[80,6],[[[107,[-1]]],-1,[]],[281,6],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[19,268],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[24,[179,[259,[80]]]]],213],[-1,-1,[]],[[[107,[-1]]],-1,[]],[282,213],[179,213],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[161,163],[[219,108],224],0,[[6,6],[[5,[6]]]],[[9,-1],170,[[117,[[158,[163]]]]]],0,[[6,6],[[5,[6]]]],[[192,-1],24,112],[[237,-1],24,112],[[6,-1],24,112],[[260,-1],24,112],[[161,-1],24,112],[[261,-1],24,112],[[164,-1],24,112],[[262,-1],24,112],[[263,-1],24,112],[[264,-1],24,112],[[265,-1],24,112],[[266,-1],24,112],[[267,-1],24,112],[[256,-1],24,112],[[268,-1],24,112],[[197,-1],24,112],[[269,-1],24,112],[[270,-1],24,112],[[10,-1],24,112],[[277,-1],24,112],[[271,-1],24,112],[[272,-1],24,112],[[232,-1],24,112],[[[180,[-1]],-2],24,253,112],[[[259,[-1]],-2],24,253,112],[[274,-1],24,112],[[238,-1],24,112],[[275,-1],24,112],[[224,-1],24,112],[[213,-1],24,112],[[199,-1],24,112],[[182,-1],24,112],[[181,-1],24,112],[[163,-1],24,112],[[153,-1],[[154,[175]]],[[117,[9]]]],0,[[6,6],[[5,[6]]]],[[6,6],[[5,[6]]]],0,0,0,0,[[199,-1],170,[[117,[213]]]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[269,[[16,[197]]]],0,[[[12,[-1]],[16,[163]],[16,[179]]],-1,234],[[[12,[172]],153,[16,[179]]],[[154,[[68,[164]]]]]],[[[12,[-1]],[16,[179]]],-1,234],[[[12,[172]],153,[16,[179]],[68,[164]]],[[154,[24]]]],[214,170],[[214,80],[[16,[271]]]],[35,6],[35,6],[275,170],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[180,[170]]],170],[199,170],[10,[[16,[271]]]],[[199,80],[[16,[271]]]],0,[238,80],[199,80],0,[197,80],[238,80],[199,80],[10,80],[238,80],[199,80],[238,80],[199,80],[10,80],[238,80],[199,80],[10,80],[197,80],[238,80],[199,80],[10,80],[238,80],[199,80],[[-1,1,80],80,[]],[[[180,[179]]],80],[238,80],[199,80],[238,80],[197,80],[163,80],[275,80],[164,262],[238,275],0,0,0,0,0,0,0,[[-1,1,80],[[5,[-2]]],[],[]],[[[17,[-1]],-2],[[17,[-3]]],[],71,[]],[[[180,[-1]],-2],[[180,[-3]]],[],71,[]],[[[12,[-1]],-2],[[12,[-3]]],[],71,[]],[[219,170,108],170],[170,170],0,0,0,0,0,0,0,[[6,6],6],[[],170],[[[283,[163]]],188],[[-1,262],164,[[117,[[158,[232]]]]]],[[[68,[197]],197],269],[[19,269],270],[[284,197,[68,[271]],80],10],[[10,175,[158,[170]],179],272],[[-1,[158,[232]]],[[180,[-1]]],[]],[[-1,-2,[180,[273]]],257,[[117,[[158,[274]]]]],[[117,[[158,[170]]]]]],[[170,-1],273,[[117,[[158,[274]]]]]],[[9,-1,-2],182,[[117,[175]]],[[117,[220]]]],0,0,0,[[[17,[-1]],-2],[[107,[-1,-3]]],[],71,[]],[[-1,175,220],170,[[117,[9]]]],0,[[6,6],[[5,[6]]]],[269,197],[257,[[180,[273]]]],0,0,0,[221,170],[[159,19,153],[[154,[161]]]],[270,19],0,0,0,0,0,0,0,[[[12,[172]]],[[12,[[158,[164]]]]]],0,0,0,0,0,0,[182,170],0,0,0,[[-1,-2],170,[[117,[224]]],[[117,[225]]]],[[[180,[-1]],-2],[[180,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],0,[159,19],[[159,19,153],[[154,[260]]]],0,0,[[[180,[-1]],179],-1,234],[[[180,[-1]],[16,[179]]],-1,234],[[[180,[-1]],-2],-1,234,200],[[[180,[-1]],-2,-3],-1,234,200,200],[257,285],0,[188,170],[272,170],0,0,0,[182,170],0,0,[[[180,[-1]]],-1,[]],[[[12,[-1]]],-1,[]],[270,269],[170,199],[10,197],[199,197],0,0,0,0,[188,[[283,[163]]]],[[[259,[-1]]],[[0,[26]]],[]],[[],[[121,[[16,[15]]]]]],[[],[[121,[[16,[170]]]]]],[[],[[121,[[16,[260]]]]]],[[],[[121,[[16,[161]]]]]],[[],[[121,[[16,[164]]]]]],[[],[[121,[[16,[197]]]]]],[[],[[121,[277]]]],[[],[[121,[[16,[271]]]]]],[[],[[121,[[16,[232]]]]]],[[],[[121,[[16,[[259,[80]]]]]]]],[[],[[121,[[16,[274]]]]]],[[],[[121,[238]]]],[[],[[121,[[16,[163]]]]]],[[],170],0,[[170,-1],[[239,[24]]],241],[[[180,[-1]],-2],239,240,241],[[199,-1],[[239,[24]]],241],0,[[266,9,[158,[170]]],11],[267,11],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[12,[15]]],[[12,[11]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],0,[[[17,[[107,[-1,-2]]]]],[[107,[[17,[-1]],-2]]],[],[]],[[170,-1],[[107,[170]]],235],[[164,-1],[[107,[164]]],235],[[262,-1],[[107,[262]]],235],[[263,-1],[[107,[263]]],235],[[264,-1],[[107,[264]]],235],[[265,-1],[[107,[265]]],235],[[266,-1],[[107,[266]]],235],[[267,-1],[[107,[267]]],235],[[197,-1],[[107,[197]]],235],[[[17,[-1]],-2],[[107,[[17,[-1]]]]],234,235],[[271,-1],[[107,[271]]],235],[[272,-1],[[107,[272]]],235],[[232,-1],[[107,[232]]],235],[[[180,[-1]],-2],[[107,[[180,[-1]]]]],234,235],[[257,-1],[[107,[257]]],235],[[273,-1],[[107,[273]]],235],[[274,-1],[[107,[274]]],235],[[251,-1],[[107,[251]]],235],[[213,-1],[[107,[213]]],235],[[199,-1],[[107,[199]]],235],[[182,-1],[[107,[182]]],235],[[163,-1],[[107,[163]]],235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[[180,[-1]],-2],[[107,[[180,[-3]],-4]]],[],71,[],[]],[[[12,[-1]],-2],[[107,[[12,[-3]],-4]]],[],71,[],[]],[[170,-1],[[107,[170]]],235],[[197,-1],[[107,[197]]],235],[[[180,[-1]],-2],[[107,[[180,[-1]]]]],234,235],[[199,-1],[[107,[199]]],235],[-1,170,[[117,[[158,[170]]]]]],[-1,197,[[117,[[158,[197]]]]]],0,[188,170],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[236,170],[[236,80],[[16,[271]]]],[35,6],[170,170],[170,[[24,[170,179]]]],[[],170],[[],170],[[],197],[[],[[259,[-1]]],[]],[[],213],[[],170],0,0,0,0,[[10,177],286],[10,[[287,[177,286]]]],[[[180,[-1]]],[[158,[232]]],[]],0,0,0,0,[[170,-1],[[239,[24]]],241],[[164,-1],239,241],[[262,-1],239,241],[[263,-1],[[239,[24]]],241],[[264,-1],[[239,[24]]],241],[[265,-1],[[239,[24]]],241],[[266,-1],239,241],[[267,-1],[[239,[24]]],241],[[197,-1],239,241],[[[17,[-1]],-2],[[239,[24]]],240,241],[[271,-1],[[239,[24]]],241],[[272,-1],239,241],[[232,-1],239,241],[[[180,[-1]],-2],239,240,241],[[257,-1],[[239,[24]]],241],[[273,-1],[[239,[24]]],241],[[274,-1],[[239,[24]]],241],[[251,-1],[[239,[24]]],241],[[213,-1],[[239,[24]]],241],[[199,-1],[[239,[24]]],241],[[182,-1],[[239,[24]]],241],[[163,-1],[[239,[24]]],241],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[197,-1],24,200],[[-1,197],[[180,[-1]]],[]],[[-1,-2],[[180,[-1]]],[],28],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[288,19],288],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[288,35],[288,19],[[288,19],[[5,[288]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[198,198],[288,288],[289,289],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[198,198],65],[[288,288],65],[[289,289],65],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[198,289],0,[-1,198,74],[-1,288,74],[-1,289,74],[[],290],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[198,-1],24,78],[[288,-1],24,78],[[289,-1],24,78],[[198,198],80],[[288,288],80],[[289,289],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,0,0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[291,24],[[291,84],85],[[290,84],85],[[198,203,84],85],[[198,84],85],[[292,84],85],[[293,84],85],[[288,84],85],[[289,84],85],[[288,19],[[5,[288]]]],[[290,289],198],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[35,288],[[[107,[-1]]],-1,[]],[-1,-1,[]],[19,288],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[35,288],[35,288],[19,288],[[291,198],[[5,[179]]]],[[198,-1],24,112],[[288,-1],24,112],[[289,-1],24,112],0,[288,19],[288,19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[291,[[0,[26]]]],[[],290],[19,288],[290,289],[[198,198],[[5,[65]]]],[[288,288],[[5,[65]]]],[[289,289],[[5,[65]]]],0,0,[290,[[107,[291,292]]]],[[288,288],[[5,[19]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[[290,198,-1,80],24,[[117,[179]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[180,[179]]],179],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[294,19],294],[[207,19],207],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[-1,179,28],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[[158,[179]]]]]],0,0,[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[179,[[16,[179]]]],[294,35],[207,35],[294,19],[207,19],[[179,[5,[183]]],179],[[294,19],[[5,[294]]]],[[207,19],[[5,[207]]]],[183,[[5,[118]]]],0,[[192,-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[191,191],[183,183],[295,295],[215,215],[212,212],[216,216],[233,233],[225,225],[231,231],[294,294],[207,207],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[233,233],65],[[225,225],65],[[231,231],65],[[294,294],65],[[207,207],65],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[9,[5,[183]]],179],[[192,6,6],[[5,[6]]]],[6,179],[[6,[5,[183]]],179],[-1,191,75],[-1,183,75],[-1,295,75],[-1,215,75],[-1,212,75],[-1,216,75],[-1,233,74],[-1,225,74],[-1,231,74],[-1,294,74],[-1,207,74],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[35,179],[[191,-1],24,79],[[183,-1],24,79],[[295,-1],24,79],[[215,-1],24,79],[[212,-1],24,79],[[216,-1],24,79],[[233,-1],24,78],[[225,-1],24,78],[[231,-1],24,78],[[294,-1],24,78],[[207,-1],24,78],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[191,191],80],[[183,183],80],[[295,295],80],[[215,215],80],[[212,212],80],[[216,216],80],[[233,233],80],[[225,225],80],[[231,231],80],[[294,294],80],[[207,207],80],[[-1,-2,[5,[183]]],179,[[117,[179]]],[[117,[179]]]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,[[179,[16,[197]]],[[180,[179]]]],[[179,197],179],[198,179],[179,[[16,[179]]]],[[],179],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[179,84],85],[[179,203,84],85],[[183,84],85],[[295,84],85],[[212,84],85],[[216,84],85],[[216,203,84],85],[[233,203,84],85],[[233,84],85],[[225,203,84],85],[[225,84],85],[[231,84],85],[[231,203,84],85],[[294,84],85],[[207,84],85],[[197,-1],179,200],[[294,19],[[5,[294]]]],[[207,19],[[5,[207]]]],[179,179],[225,179],[281,179],[207,179],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[231,225],[-1,-1,[]],[[[107,[-1]]],-1,[]],[218,231],[207,231],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[35,294],[19,294],[-1,-1,[]],[-1,-1,[]],[35,207],[19,207],[[[107,[-1]]],-1,[]],[[199,7],179],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[195,[[5,[225]]]],[35,294],[35,207],[35,294],[35,207],[19,294],[19,207],[207,179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[72,64],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[191,-1],24,112],[[183,-1],24,112],[[295,-1],24,112],[[215,-1],24,112],[[212,-1],24,112],[[216,-1],24,112],[[233,-1],24,112],[[225,-1],24,112],[[231,-1],24,112],[[294,-1],24,112],[[207,-1],24,112],0,[212,179],0,[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[294,19],[294,19],[207,19],[207,19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[214,179],[214,179],[215,179],[[215,[5,[183]]],179],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[179,80],[179,80],[179,80],[179,80],[179,80],[179,80],[[-1,-2,-3,[5,[183]]],179,[[117,[179]]],[[117,[179]]],[[117,[179]]]],[179,215],0,[216,179],0,[[217,35],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],0,0,[[218,[5,[183]]],179],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[-1,-2],179,[[117,[179]]],[[117,[179]]]],[179,179],[118,183],[118,295],[[294,19,[68,[179]]],216],[[231,-1],225,[[117,[[158,[223]]]]]],[19,294],[19,207],[179,179],[[],179],[[],179],[-1,179,28],[[233,233],[[5,[65]]]],[[225,225],[[5,[65]]]],[[231,231],[[5,[65]]]],[[294,294],[[5,[65]]]],[[207,207],[[5,[65]]]],[[179,223],179],0,0,0,[225,[[16,[223]]]],0,[216,[[16,[179]]]],[216,[[16,[179]]]],0,[179,179],[179,[[5,[183]]]],[183,118],[295,118],0,[[294,294],[[5,[19]]]],[[207,207],[[5,[19]]]],[[],[[121,[[16,[179]]]]]],[[],[[121,[191]]]],[[],[[121,[[16,[216]]]]]],[[179,-1],[],[[117,[179]]]],[[179,-1],[],[[117,[179]]]],[[179,-1],[[239,[24]]],241],[233,179],[225,179],[231,179],[179,[[5,[231]]]],[225,[[5,[231]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[179,[[5,[225]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[179,[[5,[233]]]],[[179,-1],[[107,[179]]],235],[[212,-1],[[107,[212]]],235],[[216,-1],[[107,[216]]],235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[179,-1],[[107,[179]]],235],[[],179],[-1,179,[[117,[[158,[179]]]]]],[[-1,35,[5,[183]]],179,[[117,[179]]]],[[-1,[16,[35]]],179,[[117,[179]]]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[236,179],[[237,-1,[5,[183]]],179,[[117,[179]]]],[[],179],[[233,[5,[183]]],179],[[179,-1],[[239,[24]]],241],[[212,-1],[[239,[24]]],241],[[216,-1],[[239,[24]]],241],[[233,-1],[[239,[24]]],241],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[183,183],183],[[],179],0,0,0,0,0,0,0,0,[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[296,296],65],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[19,-1,[]],[19,-1,[]],[19,24],[[296,296],80],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,77],[[81,[-2]]],[],[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[296,80],[[296,296],[[5,[65]]]],[192,296],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,[[-1,[180,[-2]]],[[180,[-2]]],[],234],[[-1,199],199,[]],[[-1,179],179,[]],[[-1,219],219,[]],[[-1,197],197,[]],[[-1,170],170,[]],[[-1,-2],-1,[],297],[-1,[[298,[207]]],[]],[-1,80,[]],[[-1,157],-1,[]],[[-1,153,299,9,[16,[179]]],[[154,[-1]]],[]],[-1,300,[]],[[-1,291],-1,[]],[[-1,-2],-1,[],200],[[-1,35],-1,[]],[[-1,35],-1,[]],[[-1,-2],-1,[],297],[[-1,-2],[[239,[24]]],[],241],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,199],[[107,[199]]],[]],[[-1,179],[[107,[179]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,170],[[107,[170]]],[]],[[-1,-2],[[107,[-1]]],[],235],[[-1,-2],[[107,[-1]]],[],235],[[-1,[180,[-2]]],239,[],240],[[-1,199],239,[]],[[-1,179],239,[]],[[-1,207],239,[]],[[-1,170],239,[]],[[-1,-2],[[239,[24]]],[],241],[-1,-1,[]],0,0,0,[[301,179,[16,[179]],[5,[183]]],179],[[179,[5,[183]]],179],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[],157],[[157,[180,[179]]],[[298,[72]]]],0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[301,179],179],[[302,179],179],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[157,72],[[5,[303]]]],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[157,301],[183,302],[[[250,[72,303]]],[[107,[157,[68,[72]]]]]],[157,[[107,[157,[68,[72]]]]]],[157,[[107,[[68,[72]],[68,[72]]]]]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,199],[[107,[199]]],[]],[[-1,199],[[107,[199]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[301,179,35],179],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[[304,182,[68,[305]]],[[154,[24]]]],[[304,182,[68,[305]]],24],[[[16,[164]],182,[68,[305]]],24],[[304,182,[68,[305]]],[[154,[24]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[304,305,182],[[154,[170]]]],0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[306,1,307],[[68,[163]]]],[[305,84],85],[[306,84],85],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],0,[[306,308,163],24],[[306,309,175],24],[[306,310,219],24],[[306,3,170],24],[[],19],[[],19],[[],19],[[306,311,219],24],[[306,221,170],24],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[181,312],[[1,182],313],[314,315],[[1,199],3],[[1,163],308],[[1,[16,[163]]],309],[[1,219],310],[[1,170],3],[[153,299,9,[16,[179]]],[[154,[304]]]],[307,306],[[304,182],[[154,[170]]]],0,[304,316],0,[304,1],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[304,170],[[107,[170]]]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[317,9],[[154,[10]]]],[317,317],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[153,159],317],[19,-1,[]],[19,-1,[]],[19,24],[[-1,77],[[81,[-2]]],[],[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],0,[[317,9],[[154,[159]]]],0,[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[[317,159,[16,[162]],-1],[[154,[175]]],200],[[317,9,[16,[162]],-1],[[154,[175]]],200],[[153,159],317],[[317,221],[[154,[161]]]],0,[318,181],[[317,318,319],[[154,[182]]]],[[317,9,318],[[154,[220]]]],[[317,[320,[-1]],-2],[[154,[[180,[-3]]]]],[],200,[]],[[[16,[167]]],[[158,[232]]]],[[317,[16,[321]],321],[[154,[[5,[164]]]]]],[[317,[16,[321]]],[[154,[[158,[164]]]]]],[199,[[180,[170]]]],[[317,[16,[321]],322,323],[[154,[262]]]],[[317,161,162],[[154,[163]]]],[[317,162],[[154,[163]]]],[[317,324],[[154,[172]]]],[[153,325],[[154,[159]]]],[[317,165],[[154,[11]]]],[[317,168],[[154,[14]]]],[[317,323],[[154,[264]]]],[[317,168],[[154,[170]]]],[[317,9,[16,[168]]],[[154,[15]]]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,-2,[],[]],[[153,159],317],0,0,0,0,0,0,[[326,-1],-1,234],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[327,221,213],170],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],0,0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[19,24],[19,24],0,[[327,35],179],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[326,84],85],[[[328,[-1]],[180,[-2]]],[[180,[-2]]],329,234],[[327,[180,[-1]]],[[180,[-1]]],234],[[[328,[-1]],179],179,329],[[330,179],179],[[327,179],179],[[[328,[-1]],219],219,329],[[327,219],219],[[327,197],197],[[327,170],170],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],0,[[326,199,168],24],[[326,219,219],24],[[326,170,168],24],[[],19],[[],19],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[328,[-1]]],[]],[291,330],[[[5,[[16,[163]]]],[16,[179]]],327],[[170,168],326],0,[[327,311],219],0,[[-1,35],179,[]],[[[331,[-1,-2]],35],179,200,200],[[-1,314],219,[]],[[[331,[-1,-2]],314],219,200,200],[[327,221],197],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,[180,[-2]]],[[107,[[180,[-2]]]]],[],234],[[-1,199],[[107,[199]]],[]],[[-1,199],[[107,[199]]],[]],[[-1,199],[[107,[199]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,[185,[191]]],[[107,[[185,[191]]]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,219],[[107,[219]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,197],[[107,[197]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[[-1,[185,[238]]],[[107,[[185,[238]]]]],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[327,221],170],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[255,255],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],0,[19,24],[19,24],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[255,84],85],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[255,115],[-1,-2,[],[]],[-1,-2,[],[]],[332,284],[[333,334],[[107,[335,255]]]],[312,[[107,[318,255]]]],[[333,336],[[5,[337]]]],[[333,338],[[107,[339,111]]]],[[333,340],[[107,[341,255]]]],[[[342,[-1]],-2],[[107,[[320,[-3]],255]]],[],200,[]],[[333,343],[[107,[344,255]]]],[315,[[107,[314,255]]]],[[[16,[345]]],[[107,[[158,[167]],255]]]],[[333,346],[[5,[347]]]],[[1,132,348,118],[[107,[321,111]]]],[[1,349],[[107,[184,255]]]],[[333,350],[[107,[4,255]]]],[[333,351],[[5,[352]]]],[353,354],[[1,355],[[107,[165,255]]]],[[1,308],[[107,[162,255]]]],[[1,309],[[107,[[158,[162]],255]]]],[356,[[107,[357,255]]]],[[1,132,358],[[107,[324,111]]]],[307,[[107,[325,255]]]],[[1,132,[16,[348]],118],[[107,[[158,[321]],111]]]],[[333,359],[[107,[360,111]]]],[[1,132,361],[[107,[169,111]]]],[[333,362],[[107,[363,255]]]],[364,[[107,[195,255]]]],[[333,365],[[5,[366]]]],[310,[[107,[219,255]]]],[[333,367],[[107,[368,255]]]],[[333,369],[[107,[370,111]]]],[[333,371],[[107,[372,111]]]],[[1,3],[[107,[168,255]]]],[[1,373],[[107,[374,255]]]],[375,286],[-1,255,376],0,[[333,9,309],[[107,[[24,[9,377]],255]]]],0,0,0,0,[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,24],[19,24],[19,24],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[369,378],[371,378],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[],19],[[],19],[[],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[379,149],[[150,[-1]]],151],[[378,149],[[150,[-1]]],151],[[380,149],[[150,[-1]]],151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[359,255],379],[[118,77,255],378],[[118,-1],380,376],0,0,0,0,0,[[118,255],378],[[118,255],378],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],0,[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],0,[169,[[0,[381]]]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[382,[[5,[223]]]],0,0,[[195,153,383],[[154,[80]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[169,384],385],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[169,[[387,[386,[68,[384]]]]]],[360,360],[347,347],[366,366],[341,341],[195,195],[382,382],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[-1,195,74],[-1,382,74],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[169,[[389,[388]]]],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[195,-1],24,78],[[382,-1],24,78],[[341,341],80],[[195,195],80],[[382,382],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],0,[[390,153,223],[[154,[168]]]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[223,203,84],85],[[169,84],85],[[372,84],85],[[370,84],85],[[368,84],85],[[363,84],85],[[4,84],85],[[352,84],85],[[339,84],85],[[377,84],85],[[391,84],85],[[392,84],85],[[337,84],85],[[393,84],85],[[347,84],85],[[366,84],85],[[335,84],85],[[341,84],85],[[195,84],85],[[390,84],85],[[382,84],85],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[168,390],[[341,-1],24,112],[[195,-1],24,112],[[382,-1],24,112],0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[169,394],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[169,388],80],[370,80],[372,80],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],0,0,0,0,0,[[169,218],395],0,[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[[396,[388,339]]],[[396,[388,19]]]],[[[396,[388,339]],[396,[218,360]],361,299],169],[[218,[68,[382]]],195],[[[5,[388]]],122],0,0,0,0,0,0,[[390,153,382],[[154,[390]]]],0,[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],0,[169,397],[[1,361],299],0,[169,[[5,[218]]]],[169,394],0,0,0,0,[169,118],0,0,0,[[],[[121,[[16,[223]]]]]],0,0,[[169,388],386],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[[195,153,383],[[154,[390]]]],0,0,[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],0,0,[169,[[0,[381]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[27,-1],[[16,[-2]]],28,[]],[[29,-1],[[16,[-2]]],28,[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],[[-1,27],-2,[],[]],[[-1,27],-2,[],[]],[[-1,29],-2,[],[]],0,0,0,0,0,[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[174,186],[174,187],[[[320,[-1]]],[[320,[-1]]],[]],[[-1,-2],[[320,[-1]]],[],[[117,[[158,[167]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[166,[-1]]],[[166,[-1]]],205],[[[320,[-1]]],[[320,[-1]]],205],[167,167],[398,398],[168,168],[284,284],[318,318],[282,282],[184,184],[219,219],[399,399],[314,314],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],[[-1,-2],24,[],[]],0,0,[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],-3,26,71,[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],[[-1,-2],65,[],[]],0,[-1,167,75],[-1,284,75],[-1,400,75],[-1,286,75],[-1,354,75],[-1,282,74],[-1,184,75],[-1,219,75],[-1,399,75],[-1,314,75],0,0,0,0,0,[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[168,168],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[19,-1,[]],[284,9],0,0,[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[19,24],[[167,-1],24,79],[[284,-1],24,79],[[400,-1],24,79],[[286,-1],24,79],[[354,-1],24,79],[[282,-1],24,78],[[184,-1],24,79],[[219,-1],24,79],[[399,-1],24,79],[[314,-1],24,79],[[[320,[-1]],[320,[-1]]],80,278],[[167,167],80],[[357,357],80],[[401,401],80],[[321,321],80],[[402,402],80],[[403,403],80],[[323,323],80],[[404,404],80],[[398,398],80],[[168,168],80],[[284,284],80],[[400,400],80],[[286,286],80],[[354,354],80],[[405,405],80],[[406,406],80],[[319,319],80],[[318,318],80],[[282,282],80],[[184,184],80],[[162,162],80],[[219,219],80],[[399,399],80],[[314,314],80],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,31],80,[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[[-1,-2],80,[],[]],[168,[[24,[284,174]]]],[162,184],[162,219],[162,168],0,[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[-1,77],[[81,[-2]]],[],[]],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[[],82],[284,407],0,[[217,203,84],85],[[[320,[-1]],84],85,105],[[167,84],85],[[324,84],85],[[321,84],85],[[402,84],85],[[403,84],85],[[323,84],85],[[404,84],85],[[398,84],85],[[168,84],85],[[284,84],85],[[400,84],85],[[286,84],85],[[354,84],85],[[405,84],85],[[406,84],85],[[319,84],85],[[318,84],85],[[282,84],85],[[184,203,84],85],[[184,84],85],[[162,84],85],[[[283,[-1]],84],85,105],[[219,84],85],[[219,203,84],85],[[314,84],85],[[408,203,84],85],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[19,184],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[[107,[-1]]],-1,[]],[-1,-1,[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[-1,[16,[110]],111],-2,[],[]],[[[320,[-1]],-2],24,253,112],[[167,-1],24,112],[[357,-1],24,112],[[401,-1],24,112],[[321,-1],24,112],[[402,-1],24,112],[[403,-1],24,112],[[323,-1],24,112],[[404,-1],24,112],[[398,-1],24,112],[[168,-1],24,112],[[284,-1],24,112],[[400,-1],24,112],[[286,-1],24,112],[[354,-1],24,112],[[405,-1],24,112],[[406,-1],24,112],[[319,-1],24,112],[[318,-1],24,112],[[282,-1],24,112],[[184,-1],24,112],[[162,-1],24,112],[[219,-1],24,112],[[399,-1],24,112],[[314,-1],24,112],0,0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[398,[[16,[168]]]],0,[[[166,[-1]]],-1,[]],[406,168],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[168,80],[284,80],[284,80],[168,80],[284,80],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[[-1,1,80],80,[]],[284,80],[168,406],0,0,0,0,[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[-1,1,80],[[5,[-2]]],[],[]],[[284,-1],168,[[117,[174]]]],[[318,9,-1],168,[[117,[174]]]],[[168,184],168],[[],168],[[],168],[[9,-1],168,[[117,[174]]]],[[9,-1],168,[[117,[174]]]],[201,168],[165,168],[[9,174],168],[214,168],[[],168],[221,168],[[168,108],168],[[219,168,108],168],[168,168],[[],168],[-1,168,[[117,[[158,[168]]]]]],[236,168],[[],168],0,0,0,0,0,[402,321],[400,284],[[9,[396,[177,286]],407],400],[284,286],0,[398,168],0,[325,[[5,[9]]]],0,0,0,[325,19],0,0,0,0,0,[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[[-1,119],[[5,[-2]]],[],[]],[219,122],0,0,0,[323,168],[319,168],0,[[[166,[-1]]],-1,[]],[[[320,[-1]]],-1,[]],[187,[[283,[162]]]],[186,[[409,[162]]]],[[],[[121,[[16,[167]]]]]],[[],[[121,[[16,[357]]]]]],[[],[[121,[[16,[321]]]]]],[[],[[121,[[16,[168]]]]]],[[],[[121,[400]]]],[[],[[121,[405]]]],[[],[[121,[[16,[162]]]]]],0,[[[166,[168]],[16,[162]]],168],[[[320,[-1]],[16,[162]]],[[320,[-1]]],230],[[398,[16,[162]]],398],[[168,[16,[162]]],168],[[184,[16,[162]]],184],[[162,[16,[162]]],162],[[219,[16,[162]]],219],0,[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],122,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[[-1,-2],123,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[[-1,1],-2,[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,122,[]],[-1,122,[]],[-1,122,[]],0,[[219,-1],[[107,[219]]],235],[[[410,[-1,-2]],-3],[[107,[[410,[-1,-2]]]]],234,234,235],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[-1,[[107,[-2]]],[],[]],[168,[[158,[168]]]],[187,168],[186,168],0,0,[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[-1,125,[]],[187,[[0,[26]]]],[186,[[158,[168]]]],0,0,[[284,177],286],[284,[[287,[177,286]]]],0,[[[320,[-1]]],[[158,[167]]],[]],[[219,-1],[[239,[24]]],241],[[[410,[-1,-2]],-3],[[239,[24]]],240,240,241],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[-1,[16,[162]]],-1,[]]],"c":[],"p":[[3,"TyCtxt",9407],[3,"ScalarInt",7750],[3,"Ty",9408],[4,"Constant",6585],[4,"Option",9409],[4,"Constant",2982],[15,"u128"],[15,"i128"],[3,"DefId",9410],[3,"AdtDef",2982],[6,"PolyFnSig",2982],[3,"EarlyBinder",2982],[3,"RefinedBy",35],[6,"PolyTy",2982],[6,"PolyVariant",2982],[15,"slice"],[4,"Opaqueness",2982],[3,"ItemLocalId",35],[15,"usize"],[3,"SortVid",35],[3,"Name",35],[3,"Map",35],[3,"LocalDefId",9410],[15,"tuple"],[3,"TyAlias",35],[8,"Iterator",9411],[3,"Arena",9412],[8,"IntoIterator",9413],[3,"Arena",9414],[4,"SortCtor",35],[8,"Any",9415],[3,"Ty",35],[3,"Path",35],[3,"BaseTy",35],[15,"u32"],[4,"GenericParamKind",35],[3,"ConstInfo",35],[4,"TraitBoundModifier",35],[4,"TyKind",35],[3,"MutTy",35],[4,"Lifetime",35],[3,"ArrayLen",35],[4,"WeakKind",35],[4,"FluxLocalDefId",35],[4,"FluxOwnerId",35],[3,"FhirId",35],[4,"RefineArg",35],[4,"BaseTyKind",35],[4,"QPath",35],[3,"TypeBinding",35],[4,"GenericArg",35],[4,"Res",35],[3,"RefineParam",35],[4,"ParamKind",35],[4,"InferMode",35],[4,"Sort",35],[3,"FuncSort",35],[3,"PolyFuncSort",35],[3,"Expr",35],[4,"ExprKind",35],[4,"Func",35],[4,"Lit",35],[3,"Ident",35],[4,"FuncKind",35],[4,"Ordering",9416],[3,"WfckResults",35],[4,"Coercion",35],[3,"Vec",9417],[3,"LocalTableInContext",35],[3,"LocalTableInContextMut",35],[8,"FnOnce",9418],[3,"Symbol",2332],[8,"Borrow",9419],[8,"Decoder",9420],[8,"TyDecoder",9421],[3,"Defn",35],[15,"str"],[8,"Encoder",9420],[8,"TyEncoder",9421],[15,"bool"],[3,"RequestFilterDataProvider",9422],[4,"FingerprintStyle",9423],[3,"FnSig",35],[3,"Formatter",9424],[6,"Result",9424],[3,"FnOutput",35],[4,"Constraint",35],[3,"Generics",35],[3,"GenericParam",35],[3,"Qualifier",35],[4,"FluxItem",35],[3,"SortDecl",35],[3,"GenericPredicates",35],[3,"WhereBoundPredicate",35],[4,"GenericBound",35],[3,"PolyTraitRef",35],[3,"OpaqueTy",35],[3,"StructDef",35],[4,"StructKind",35],[3,"FieldDef",35],[3,"EnumDef",35],[3,"VariantDef",35],[3,"VariantRet",35],[3,"FnInfo",35],[8,"Debug",9424],[3,"FuncDecl",35],[4,"Result",9425],[4,"Mutability",7750],[3,"OwnerId",9426],[3,"QueryInfo",9427],[3,"ErrorGuaranteed",9428],[8,"Hasher",9429],[6,"SurfaceIdent",35],[3,"UnordMap",9430],[4,"DiagnosticArgValue",9431],[4,"ResolvedArg",9432],[8,"Into",9433],[3,"Span",9434],[3,"DepNode",9435],[6,"SortDecls",35],[3,"InternStorage",2488],[3,"String",9436],[3,"Fingerprint",9437],[4,"Res",9438],[3,"TypeId",9415],[3,"LiftCtxt",2201],[8,"IntoDiagnostic",9439],[3,"Generics",9440],[4,"ArrayLen",9440],[3,"Variant",9440],[3,"FieldDef",9440],[3,"FluxSession",9441],[4,"FnRetTy",9440],[3,"FnSig",9440],[4,"GenericArg",9440],[4,"GenericBound",9440],[3,"GenericParam",9440],[3,"Lifetime",9440],[3,"MutTy",9440],[3,"ItemId",9440],[3,"Path",9440],[3,"Ty",9440],[3,"PolyTraitRef",9440],[4,"QPath",9440],[3,"TypeBinding",9440],[3,"Item",9440],[4,"WherePredicate",9440],[3,"UnsupportedHir",2264],[3,"Handler",9442],[3,"DiagnosticBuilder",9439],[8,"EmissionGuarantee",9439],[8,"Visitor",2290],[3,"GlobalEnv",2332],[6,"QueryResult",2858],[3,"Rc",9443],[6,"CrateStoreDyn",28],[3,"Defns",6024],[6,"List",2488],[3,"Generics",2982],[3,"Map",9444],[3,"GenericParamDef",2982],[4,"GenericArg",7750],[4,"GenericArg",2982],[3,"Clause",2982],[6,"PolyFnSig",7750],[3,"EarlyBinder",7750],[4,"BoundVariableKind",7750],[3,"Ty",7750],[3,"Body",6585],[6,"Ty",2982],[3,"Box",9445],[3,"GenericPredicates",2982],[3,"Providers",2858],[6,"GenericArgs",7750],[6,"GenericArgs",2982],[4,"Variance",6585],[3,"VariantIdx",6585],[6,"PolyVariants",2982],[6,"Expr",5310],[3,"Binder",2982],[4,"AliasKind",2982],[3,"AliasTy",2982],[3,"ESpan",5310],[4,"Const",7750],[3,"Interned",2488],[3,"ClosureArgs",7750],[3,"GeneratorArgs",7750],[3,"GeneratorArgs",2982],[8,"Internable",2488],[8,"Sized",9446],[3,"ExprS",5310],[4,"BinOp",2982],[8,"Ord",9416],[8,"Decodable",9420],[3,"Place",6585],[8,"Encodable",9420],[4,"Sort",2982],[3,"EVar",5060],[4,"BaseTy",2982],[8,"FnMut",9418],[4,"FloatTy",7750],[8,"Display",9424],[3,"PPrintCx",2699],[8,"Pretty",2699],[8,"Clone",9447],[15,"array"],[3,"Name",5310],[3,"Arc",9448],[3,"FxHasher",9449],[3,"BuildHasherDefault",9429],[3,"DashMap",9450],[4,"HoleKind",5310],[3,"Index",2982],[4,"IntTy",7750],[4,"ExprKind",5310],[3,"KVar",5310],[3,"DebruijnIndex",7750],[3,"Local",6585],[4,"Region",7750],[6,"RefineArgs",2982],[3,"ParamTy",7750],[8,"PartialOrd",9416],[3,"FieldIdx",6585],[4,"PtrKind",2982],[3,"Path",5310],[3,"SharedValue",9451],[3,"HashMap",9452],[6,"RwLockWriteGuard",9453],[15,"u64"],[8,"Subst",9405],[4,"Loc",5310],[4,"BoundVariableKind",2982],[4,"Var",5310],[8,"TypeFoldable",5982],[8,"FallibleTypeFolder",5982],[4,"UintTy",7750],[4,"UnOp",2982],[3,"TyS",2982],[4,"ControlFlow",9454],[8,"TypeVisitable",5982],[8,"TypeVisitor",5982],[4,"KVarArgs",2699],[3,"WithCx",2699],[3,"Join",2699],[3,"Parens",2699],[4,"Value",9455],[3,"Queries",2858],[4,"QueryErr",2858],[3,"FuncDecl",2982],[6,"FxHashMap",9449],[3,"Qualifier",2982],[3,"RefCell",9456],[8,"Hash",9429],[8,"Eq",9416],[3,"UnsupportedReason",6416],[4,"SortCtor",2982],[3,"FnSig",2982],[8,"Deref",9457],[4,"TupleTree",2982],[3,"RefineParam",2982],[4,"GenericParamDefKind",2982],[4,"ClauseKind",2982],[3,"TraitPredicate",2982],[3,"TraitRef",2982],[3,"ProjectionPredicate",2982],[3,"FnTraitPredicate",2982],[3,"GeneratorObligPredicate",2982],[3,"SortVar",2982],[3,"FuncSort",2982],[3,"PolyFuncSort",2982],[3,"Invariant",2982],[3,"VariantSig",2982],[3,"FnOutput",2982],[4,"Constraint",2982],[4,"TyKind",2982],[8,"FromIterator",9413],[3,"AdtDefData",2982],[8,"PartialEq",9416],[3,"Error",9424],[3,"ClosureOblig",2982],[15,"i32"],[3,"ValueConst",7750],[3,"GeneratorArgsParts",7750],[3,"AdtDef",7750],[6,"Constraints",2982],[3,"VariantDef",7750],[3,"IndexSlice",9458],[3,"EVid",5060],[3,"EVarCxId",5060],[3,"EVarGen",5060],[3,"EVarSol",5060],[3,"UnsolvedEvar",5060],[4,"EVarState",5060],[3,"KVid",5310],[3,"SpanData",5310],[4,"Precedence",5941],[8,"TypeFolder",5982],[6,"FxHashSet",9449],[3,"InferCtxt",9459],[6,"OpaqueArgsMap",2982],[3,"Normalizer",6024],[3,"BaseSpanner",6024],[3,"Defn",2982],[3,"Normalizer",6112],[4,"Candidate",6112],[3,"TVarSubst",6112],[3,"Generics",9460],[3,"GenericArg",9461],[6,"GenericArgsRef",9461],[3,"Region",9462],[3,"EarlyBoundRegion",7750],[4,"AliasKind",9463],[3,"AliasTy",9462],[3,"BoundRegion",7750],[3,"BoundRegion",9462],[3,"ParamEnv",9408],[3,"Refiner",6208],[4,"AliasKind",7750],[3,"AliasTy",7750],[3,"Binder",7750],[3,"Clause",7750],[4,"ClosureKind",2982],[3,"TraitRef",7750],[3,"GenericPredicates",7750],[3,"Generics",7750],[3,"RegionSubst",6258],[3,"GenericsSubstFolder",6258],[3,"BoundVarReplacer",6258],[8,"BoundVarReplacerDelegate",6258],[3,"EVarSubstFolder",6258],[3,"FnMutDelegate",6258],[3,"AdtDef",9464],[3,"LoweringCtxt",6416],[4,"AggregateKind",9465],[4,"AggregateKind",6585],[6,"AssertMessage",9465],[4,"AssertKind",6585],[3,"BasicBlockData",9466],[3,"BasicBlockData",6585],[4,"BinOp",9465],[4,"BinOp",6585],[3,"Binder",9462],[4,"BorrowKind",9465],[4,"BorrowKind",6585],[4,"BoundVariableKind",9462],[4,"CastKind",9465],[4,"CastKind",6585],[3,"Clause",9408],[3,"Const",9467],[3,"ConstOperand",9465],[4,"FakeReadCause",9465],[4,"FakeReadCause",6585],[3,"FieldDef",9408],[3,"FieldDef",7750],[6,"PolyFnSig",9462],[3,"GenericParamDef",9460],[3,"GenericParamDef",7750],[3,"GenericPredicates",9460],[3,"LocalDecl",9466],[3,"LocalDecl",6585],[3,"BodyWithBorrowckFacts",9468],[4,"Operand",9465],[4,"Operand",6585],[3,"Place",9465],[4,"PointerCoercion",9469],[4,"PointerCast",6585],[4,"Rvalue",9465],[4,"Rvalue",6585],[3,"Statement",9470],[3,"Statement",6585],[3,"Terminator",9471],[3,"Terminator",6585],[6,"TypeOutlivesPredicate",9408],[6,"TypeOutlivesPredicate",7750],[3,"VariantDef",9408],[8,"ToString",9436],[3,"CallArgs",6585],[3,"UnsupportedMir",6505],[3,"UnsupportedLocalDecl",6505],[3,"UnsupportedGenericBound",6505],[8,"ExactSizeIterator",9472],[4,"PlaceElem",6585],[6,"LocalDecls",6585],[3,"BorrowIndex",9473],[3,"BorrowData",6585],[3,"Location",6585],[6,"FxIndexMap",9474],[3,"BasicBlock",6585],[3,"Dominators",9475],[3,"PlaceTy",6585],[3,"Instance",6585],[4,"TerminatorKind",6585],[4,"StatementKind",6585],[3,"Body",9466],[4,"LocalKind",6585],[3,"IndexVec",9476],[3,"RegionInferenceContext",9477],[3,"FnSig",7750],[3,"FreeRegion",7750],[3,"AdtDefData",7750],[4,"GenericParamDefKind",7750],[4,"ClauseKind",7750],[3,"TraitPredicate",7750],[3,"ProjectionPredicate",7750],[3,"TyS",7750],[4,"TyKind",7750],[3,"AdtFlags",2982],[4,"BoundRegionKind",7750],[3,"ClosureArgsParts",7750],[3,"OutlivesPredicate",7750],[8,"CrateStore",28],[4,"PrimTy",35],[6,"ItemLocalMap",35],[6,"GenericBounds",35],[6,"Cache",35],[6,"ItemPredicates",35],[13,"Type",2193],[13,"Expr",2194],[13,"SelfTyAlias",2196],[13,"SelfTyParam",2196],[13,"User",2199],[13,"Transparent",2200],[3,"Ident",2332],[6,"InternMap",2488],[6,"Guard",2488],[8,"SliceInternable",2488],[8,"FromOpt",2699],[6,"Cache",2858],[13,"UnsupportedType",2979],[3,"BoundVar",7750],[13,"Type",5057],[13,"Const",5057],[13,"User",5059],[8,"TypeSuperFoldable",5982],[8,"TypeSuperVisitable",5982],[4,"UnwindAction",6585],[4,"UnOp",6585],[3,"SourceInfo",6585],[3,"SwitchTargets",6585],[13,"Mut",7724],[13,"Call",7725],[13,"Assert",7725],[13,"SwitchInt",7725],[13,"Yield",7725],[13,"FalseEdge",7725],[13,"Drop",7725],[13,"FalseUnwind",7725],[13,"Goto",7725],[3,"RegionVid",7750],[13,"Type",9403],[13,"Const",9403]],"b":[[1093,"impl-Display-for-SortCtor"],[1094,"impl-Debug-for-SortCtor"],[1095,"impl-Display-for-Sort"],[1096,"impl-Debug-for-Sort"],[1097,"impl-Debug-for-FuncSort"],[1098,"impl-Display-for-FuncSort"],[1099,"impl-Debug-for-PolyFuncSort"],[1100,"impl-Display-for-PolyFuncSort"],[1189,"impl-From%3CLocalDefId%3E-for-FluxLocalDefId"],[1190,"impl-From%3CFluxOwnerId%3E-for-FluxLocalDefId"],[1198,"impl-From%3Cu32%3E-for-ItemLocalId"],[1200,"impl-From%3Cusize%3E-for-ItemLocalId"],[1227,"impl-From%3Cusize%3E-for-SortVid"],[1229,"impl-From%3Cu32%3E-for-SortVid"],[1250,"impl-From%3Cusize%3E-for-Name"],[1253,"impl-From%3Cu32%3E-for-Name"],[1374,"impl-Idx-for-ItemLocalId"],[1375,"impl-ItemLocalId"],[1376,"impl-UnifyKey-for-SortVid"],[1377,"impl-Idx-for-SortVid"],[1378,"impl-SortVid"],[1379,"impl-Idx-for-Name"],[1380,"impl-Name"],[2504,"impl-Interned%3C%5BGenericArg%5D%3E"],[2505,"impl-Interned%3C%5BGenericArg%5D%3E"],[2531,"impl-Decodable%3CD%3E-for-Interned%3CT%3E"],[2532,"impl-Decodable%3CD%3E-for-Interned%3C%5BT%5D%3E"],[2547,"impl-Encodable%3CE%3E-for-Interned%3C%5BT%5D%3E"],[2548,"impl-Encodable%3CE%3E-for-Interned%3CT%3E"],[2549,"impl-PartialEq-for-Interned%3CT%3E"],[2550,"impl-Interned%3CExprS%3E"],[2551,"impl-PartialEq-for-Interned%3C%5BT%5D%3E"],[2570,"impl-Display-for-Interned%3CT%3E"],[2571,"impl-Pretty-for-Interned%3CT%3E"],[2572,"impl-Debug-for-Interned%3CT%3E"],[2577,"impl-From%3C%26%5BT%5D%3E-for-Interned%3C%5BT%5D%3E"],[2578,"impl-From%3CVec%3CT%3E%3E-for-Interned%3C%5BT%5D%3E"],[2679,"impl-Interned%3CTyS%3E"],[2680,"impl-Interned%3CExprS%3E"],[2691,"impl-Interned%3CExprS%3E"],[2692,"impl-Interned%3CTyS%3E"],[2759,"impl-Pretty-for-Join%3C\'_,+I%3E"],[2760,"impl-Debug-for-Join%3C\'_,+I%3E"],[3750,"impl-PartialEq-for-Constant"],[3751,"impl-Constant"],[4068,"impl-Display-for-BinOp"],[4069,"impl-Pretty-for-BinOp"],[4070,"impl-Debug-for-BinOp"],[4071,"impl-Display-for-UnOp"],[4072,"impl-Pretty-for-UnOp"],[4073,"impl-Debug-for-UnOp"],[4074,"impl-Debug-for-Constant"],[4075,"impl-Display-for-Constant"],[4083,"impl-Debug-for-ClauseKind"],[4084,"impl-Pretty-for-ClauseKind"],[4092,"impl-Pretty-for-Sort"],[4093,"impl-Debug-for-Sort"],[4094,"impl-Debug-for-FuncSort"],[4095,"impl-Pretty-for-FuncSort"],[4096,"impl-Debug-for-PolyFuncSort"],[4097,"impl-Pretty-for-PolyFuncSort"],[4102,"impl-Debug-for-VariantSig"],[4103,"impl-Pretty-for-VariantSig"],[4104,"impl-Debug-for-BoundVariableKind"],[4105,"impl-Pretty-for-BoundVariableKind"],[4106,"impl-Pretty-for-Binder%3CFnOutput%3E"],[4107,"impl-Debug-for-Binder%3CT%3E"],[4108,"impl-Pretty-for-Binder%3CInterned%3CExprS%3E%3E"],[4109,"impl-Pretty-for-Binder%3CT%3E"],[4112,"impl-Pretty-for-FnSig"],[4113,"impl-Debug-for-FnSig"],[4115,"impl-Debug-for-Constraint"],[4116,"impl-Pretty-for-Constraint"],[4120,"impl-Pretty-for-TyS"],[4121,"impl-Debug-for-TyS"],[4123,"impl-Debug-for-PtrKind"],[4124,"impl-Pretty-for-PtrKind"],[4125,"impl-Pretty-for-Index"],[4126,"impl-Debug-for-Index"],[4127,"impl-Pretty-for-BaseTy"],[4128,"impl-Debug-for-BaseTy"],[4130,"impl-Debug-for-AliasKind"],[4131,"impl-Pretty-for-AliasKind"],[4132,"impl-Pretty-for-GenericArg"],[4133,"impl-Debug-for-GenericArg"],[4139,"impl-From%3Ci128%3E-for-Constant"],[4140,"impl-From%3Cu128%3E-for-Constant"],[4141,"impl-From%3Cusize%3E-for-Constant"],[4142,"impl-From%3Cbool%3E-for-Constant"],[4144,"impl-From%3Ci32%3E-for-Constant"],[4221,"impl-From%3C(Interned%3CExprS%3E,+TupleTree%3Cbool%3E)%3E-for-Index"],[4224,"impl-From%3CValueConst%3E-for-Index"],[4225,"impl-From%3CInterned%3CExprS%3E%3E-for-Index"],[4385,"impl-EarlyBinder%3CGenericPredicates%3E"],[4386,"impl-EarlyBinder%3CT%3E"],[5191,"impl-Pretty-for-EVar"],[5192,"impl-Debug-for-EVar"],[5209,"impl-From%3Cu32%3E-for-EVid"],[5212,"impl-From%3Cusize%3E-for-EVid"],[5230,"impl-EVid"],[5231,"impl-Idx-for-EVid"],[5373,"impl-Add%3CRhs%3E-for-Interned%3CExprS%3E"],[5374,"impl-Add%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5530,"impl-Div%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5531,"impl-Div%3CRhs%3E-for-Interned%3CExprS%3E"],[5651,"impl-Debug-for-Interned%3CExprS%3E"],[5652,"impl-Pretty-for-Interned%3CExprS%3E"],[5656,"impl-Debug-for-KVar"],[5657,"impl-Pretty-for-KVar"],[5658,"impl-Pretty-for-Var"],[5659,"impl-Debug-for-Var"],[5660,"impl-Pretty-for-Path"],[5661,"impl-Debug-for-Path"],[5662,"impl-Debug-for-Loc"],[5663,"impl-Pretty-for-Loc"],[5669,"impl-From%3C%26Interned%3CExprS%3E%3E-for-Interned%3CExprS%3E"],[5670,"impl-From%3CPath%3E-for-Interned%3CExprS%3E"],[5671,"impl-From%3Ci32%3E-for-Interned%3CExprS%3E"],[5672,"impl-From%3CName%3E-for-Interned%3CExprS%3E"],[5690,"impl-From%3CLocal%3E-for-Loc"],[5691,"impl-From%3CName%3E-for-Loc"],[5695,"impl-From%3Cu32%3E-for-KVid"],[5696,"impl-From%3Cusize%3E-for-KVid"],[5699,"impl-From%3Cu32%3E-for-Name"],[5700,"impl-From%3Cusize%3E-for-Name"],[5740,"impl-Idx-for-KVid"],[5741,"impl-KVid"],[5742,"impl-Idx-for-Name"],[5743,"impl-Name"],[5798,"impl-Mul%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5799,"impl-Mul%3CRhs%3E-for-Interned%3CExprS%3E"],[5836,"impl-Sub%3CRhs%3E-for-%26Interned%3CExprS%3E"],[5837,"impl-Sub%3CRhs%3E-for-Interned%3CExprS%3E"],[6535,"impl-From%3C%26Statement%3C\'tcx%3E%3E-for-UnsupportedMir"],[6536,"impl-From%3C%26Terminator%3C\'tcx%3E%3E-for-UnsupportedMir"],[8655,"impl-Pretty-for-Const"],[8656,"impl-Debug-for-Const"],[8659,"impl-Debug-for-Region"],[8660,"impl-Pretty-for-Region"]]},\ +"flux_refineck":{"doc":"Refinement type checking","t":"DHOOFFMAAAAAAAAFFMAADDENINNDDDLLLLMMMFFLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLMLLLLLKLLLLLLLLLLMKLLLMLLLLLLLLLLLLLLLLLLLKLLALLLLLLLLLLLLLLLLLLLLLLLLLMMLMLLLLLLLFFLLLLLLLLLLLLLLMMMMMMLLLMFLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFMLLLLLLEDNNQNNILLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLKKNNNDENNNDIDNNNNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLMLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLMMFFLLLLLMLLLLMALLMMMMMMMLMMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDRRRRRRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGNNDGDDDDDEDGESSGNDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLLMMMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLAFMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLMMLLLLLMLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLMMMLMMMMMLLLLLLMLLLLMLFLMMFMMLFMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLNDDNDSSSSSSELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNNGNGGNDNNGNNNNNGNNNNDGNENGNNNEEGNNNNNLLLLMMLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLMMMMLMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNGNEDNGENDNNLFLLLLLLMMMMLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLMALMLLLLLLLLLLLLLLLLLLLLLLLLLLNNNDDNDNDNISNNEEENNNFLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMFLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLKLLLMKLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLDDSSSSDNDDEDNGDESNNDMLLFLLLLLLLLMLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLMMLLMMMMMLLLLMLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLFFADRLLLLLLLLLLLLLLMLLLLLLDDLMLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLLLLLLLLLMLLLLLLLLLLLLENNNNNNDEDDDDDDDNDDNLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLMFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLMAMMMLLLMLLLLLMMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLMFFFFNNNEEDDNMLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLMLMAMLLLLLLLLLLLLLLLLLLLLLLLLLHGHMFFFFFFFHGHMFFFDDDDDLLLLMMMLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLMAALLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLWWDNGDNQQENIIDDNDDDNDLMLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLFLFFKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLMMLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMLLMKMLLLMLLLMLLLMAKMMLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLKLLLLLLLLLLLLLLLL","n":["CheckerConfig","DEFAULT_LOCALE_RESOURCE","_define_btys","_sig","call_error","check_fn","check_overflow","checker","constraint_gen","errors","fixpoint_encoding","ghost_statements","invariants","queue","refine_tree","report_errors","ret_error","scrape_quals","sigs","type_env","Checker","CheckerConfig","Guard","Match","Mode","None","Pred","RefineMode","ShapeMode","ShapeResult","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","bb_envs","bb_envs","body","bool_int_cast","bool_uint_cast","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_aggregate_operands","check_assert","check_assign_ty","check_basic_block","check_binary_op","check_call","check_cast","check_closure_obligs","check_constant","check_ghost_statement","check_ghost_statements_at","check_goto","check_goto_join_point","check_goto_join_point","check_goto_join_point","check_if","check_len","check_match","check_oblig_fn_trait_pred","check_oblig_generator_pred","check_operand","check_operands","check_overflow","check_rvalue","check_statement","check_successors","check_terminator","check_unary_op","clear","clear","clear","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","config","constr_gen","constr_gen","constr_gen","constr_gen","def_id","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dominators","drop","drop","drop","drop","drop","drop","enter_basic_block","enter_basic_block","enter_basic_block","errors","filterable","filterable","filterable","filterable","filterable","filterable","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generics","genv","ghost_stmts","ghost_stmts","init","init","init","init","init","init","init","int_bit_width","int_int_cast","into","into","into","into","into","into","into_bb_envs","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_exit_block","kvars","mode","output","queue","refparams","resume_ty","run","run_in_refine_mode","run_in_shape_mode","scrape_quals","snapshot_at_dominator","snapshot_at_dominator","snapshots","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","uint_bit_width","uint_int_cast","uint_uint_cast","visited","vzip","vzip","vzip","vzip","vzip","vzip","CheckerErrKind","CheckerError","Inference","InvalidGenericArg","Ok","OpaqueStruct","Query","ResultExt","borrow","borrow","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","deref","deref","deref_mut","deref_mut","drop","drop","filterable","filterable","fmt","from","from","from","from","from","from","from_cycle_error","from_cycle_error","init","init","into","into","into_diagnostic","into_query_param","into_query_param","kind","opaque_struct","span","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","with_span","with_src_info","Assert","Assign","Call","ConstrGen","ConstrReason","Div","Fold","Goto","InferCtxt","KVarGen","Obligations","Other","Overflow","Rem","Ret","Tag","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bty_subtyping","check_constraint","check_constructor","check_fn_call","check_generic_args","check_mk_array","check_pred","check_pred","check_ret","check_type_constr","clone","clone","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","def_id","def_id","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","dst_span","eq","eq","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evar_gen","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fresh","fresh","fresh_evars","fresh_infer_var","fresh_infer_var_for_hole","fresh_kvar","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generic_arg_subtyping","genv","genv","hash","hash","idx_subtyping","infcx","init","init","init","init","init","insert_obligations","instantiate_generic_args","instantiate_refine_args","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kvar_gen","kvar_gen","mk_generator_obligations","mk_obligations","new","new","new","new","obligations","obligs","opaque_subtyping","pack_closure_operands","pop_scope","pred_subtyping","predicates","pretty","project_bty","push_scope","reason","refparams","refparams","region_infcx","region_infcx","scopes","snapshot","solve","span","src_span","subtyping","subtyping","tag","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unify_exprs","vzip","vzip","vzip","vzip","vzip","with_dst","AssertError","AssignError","CallSpanNote","ConditionSpanNote","DivError","FoldError","GotoError","OverflowError","RefineError","RemError","UnknownError","_DERIVE_rustc_errors_AddToDiagnostic_FOR_CallSpanNote","_DERIVE_rustc_errors_AddToDiagnostic_FOR_ConditionSpanNote","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_AssertError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_AssignError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_DivError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_FoldError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_GotoError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_OverflowError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RefineError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_RemError","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_UnknownError","add_to_diagnostic_with","add_to_diagnostic_with","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","call","call_span_note","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","cond","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_diagnostic","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","msg","new","ret","span","span","span","span","span","span","span","span","span","span","span","span_note","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Bindings","Conj","Const","ConstInfo","ConstMap","Env","ExprCtxt","FixpointCtxt","FixpointKVar","KVarDecl","KVarEncoding","KVarStore","KVidMap","Key","MAX","MAX_AS_U32","PredSpans","Single","TagIdx","Uif","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","as_expr_cx","as_u32","as_usize","assume_const_val","backward_checked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buf","buf","check","clone","clone","clone","clone_into","clone_into","clone_into","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","comments","compare","compare","const_map","const_map","core","dbg_span","decode","def_id","def_span","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encoding","env","env","eq","eq","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expr_to_fixpoint","exprs_to_fixpoint","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fixpoint","fixpoint_const_map","fixpoint_kvars","fmt","fmt","forward_checked","fresh","fresh_inner","fresh_name","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_str","from_u32","from_u32_unchecked","from_usize","func_sort_to_fixpoint","func_to_fixpoint","fvars","genv","get","get_fvar","get_late_bvar","hash","hash","hash_builder","imm","index","index","init","init","init","init","init","init","init","init","init","init","inner","insert_fvar_map","into","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kvar_to_fixpoint","kvars","kvars","kvid_map","last_layer","layers","len","len","local_var_gen","name","new","new","new","new","new","new","orig","partial_cmp","populate_kvid_map","pred_to_fixpoint","pred_to_fixpoint_internal","private","push_layer_with_fresh_names","qualifier_to_fixpoint","remove_fvar_map","self_args","sort","sort_to_fixpoint","sorts","sorts","steps_between","stitch","sym","tag_idx","tags","tags_inv","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tuple_to_fixpoint","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","val","var_to_fixpoint","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_name_map","Global","GlobalVar","KVid","Local","LocalVar","MAX","MAX","MAX","MAX_AS_U32","MAX_AS_U32","MAX_AS_U32","Var","add","add","add","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","allocate_on","as_any","as_any","as_any","as_u32","as_u32","as_u32","as_usize","as_usize","as_usize","backward_checked","backward_checked","backward_checked","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","compare","compare","decode","decode","decode","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","encode","encode","encode","eq","eq","eq","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","filterable","filterable","fixpoint_generated","fmt","fmt","fmt","fmt","fmt","fmt","forward_checked","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_u32","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","from_usize","hash","hash","hash","hash","index","index","index","index","index","index","init","init","init","init","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","new","new","new","partial_cmp","partial_cmp","partial_cmp","private","private","private","steps_between","steps_between","steps_between","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","And","App","App","BinaryOp","BitVec","Bool","Conj","ConstInfo","Constant","Constraint","Expr","Expr","FixpointTypes","ForAll","Fst","Func","Func","Guard","IfThenElse","Int","Itf","KVar","KVar","Map","Pair","Pair","PolyFuncSort","Pred","Pred","Proj","Proj","Qualifier","Real","Set","Snd","Sort","SortCtor","Task","UnaryOp","Unit","Unit","Var","Var","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","args","body","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","comment","comments","constants","constraint","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","fsort","global","hash","hash","hash","hash","init","init","init","init","init","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","kvars","kvid","name","name","new","orig","params","qualifiers","scrape_quals","sort","sorts","sorts","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","Edge","EdgeMap","Fold","GhostStatement","GhostStatements","Location","LocationMap","Point","PtrToBorrow","StatementsAt","Unblock","Unfold","add_unblocks","all_nested_bodies","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","as_any","at","at_edge","at_location","base","base","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compute_ghost_statements","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","extend_at","filterable","filterable","filterable","filterable","fmt","fmt","fold_unfold","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","hash","init","init","init","init","insert","insert_at","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","new","point","points_to","statements_at","stmts","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","write_mir","Closure","Deref","Downcast","Elaboration","Env","Fold","FoldUnfoldAnalysis","Generator","Infer","Len","Mode","NAME","None","Other","PlaceNode","ProjKind","ProjResult","Tuple","Ty","Unfold","add_ghost_statements","basic_block","bb_envs","body","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_fold_unfolds","collect_fold_unfolds_at_goto","collect_folds_at_ret","collect_folds_at_ret","collect_unfolds","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","discriminants","downcast","downcast","downcast","downcast_struct","drop","drop","drop","drop","drop","drop","drop","field","fields","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fold","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","genv","goto","goto_join_point","goto_join_point","goto_join_point","init","init","init","init","init","init","init","insert_at","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","join","join","location","map","mode","new","new","operand","projection","projection","projection","projection","queue","ret","ret","ret","run","statement","stmts","terminator","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unfold","visited","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Children","CollectPointerToBorrows","MAX","MAX","MAX_AS_U32","MAX_AS_U32","Map","Place","PlaceIndex","PlaceInfo","PlaceOrValue","PointsToAnalysis","Reachable","Results","State","StateData","TOP","Unreachable","Value","ValueIndex","_marker","add","add","add_ghost_statements","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_from_iter","allocate_on","allocate_on","allocate_on","allocate_on","analysis","apply","apply_call_return_effect","apply_statement_effect","apply_switch_int_edge_effects","apply_terminator_effect","as_any","as_any","as_any","as_any","as_u32","as_u32","as_usize","as_usize","assign","backward_checked","backward_checked","before_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_value","cache_preorder_invoke","children","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","compare","compare","compare","debug_with_context","debug_with_context_rec","decode","decode","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encode","encode","entry_sets","eq","eq","eq","eq","equals","equals","equals","equals","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","excluded_locals","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","find","first_child","flood","flood_with","fmt","fmt","fmt","fmt","fmt","fmt","fmt_diff_with","fmt_with","fn_sig","for_each_aliasing_place","for_each_tracked_place","for_each_tracked_place_rec","for_each_value_inside","forward_checked","forward_checked","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_u32","from_u32","from_u32_unchecked","from_u32_unchecked","from_usize","from_usize","get","get_idx","get_tracked_idx","handle_assign","handle_call_return","handle_operand","handle_ref","handle_statement","handle_terminator","hash","hash","index","index","index","index","init","init","init","init","init","init","init","init","init","init","initialize_start_block","inner_values","inner_values_buffer","insert_idx","insert_place_idx","insert_ptr_to_borrows_at","insert_value_idx","into","into","into","into","into","into","into","into","into","into","into_iter","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","join","locals","map","map","map","new","new","new","new","new","new","new","next","next","next_sibling","partial_cmp","partial_cmp","places","private","private","proj_elem","projections","register","register_children","steps_between","steps_between","stmts","to_owned","to_owned","to_owned","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","tracked_places","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value_count","value_index","values","visit_block_end","visit_statement_after_primary_effect","visit_statement_before_primary_effect","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","check_invariant","check_invariants","errors","Invalid","_DERIVE_rustc_errors_IntoDiagnostic_diagnostic_handler_sess_G_FOR_Invalid","borrow","borrow_mut","collect_and_apply","deref","deref_mut","drop","filterable","from","from","from_cycle_error","init","into","into_diagnostic","into_query_param","span","to_predicate","to_result","try_from","try_into","type_id","vzip","Item","WorkQueue","as_any","bb","borrow","borrow","borrow_mut","borrow_mut","cmp","collect_and_apply","collect_and_apply","compare","compare","deref","deref","deref_mut","deref_mut","dominators","dominators","drop","drop","empty","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","from","from","from","from","from_cycle_error","from_cycle_error","heap","init","init","insert","into","into","into_query_param","into_query_param","partial_cmp","pop","set","to_predicate","to_predicate","to_result","to_result","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","AssumeInvariants","Comment","Conj","ForAll","Guard","Head","No","Node","NodeKind","NodePtr","ParentsIter","RefineCtxt","RefineSubtree","RefineTree","Scope","Snapshot","True","Unpacker","WeakNodePtr","Yes","as_any","as_subtree","as_subtree","assume_invariants","assume_invariants","assume_pred","bindings","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","branch","check_impl","check_pred","children","children_to_fixpoint","clear_children","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","contains","contains_all","define_var","define_vars","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downgrade","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold_bty","fold_ty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","has_free_vars","in_mut_ref","index","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into_fixpoint","into_iter","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_forall","is_head","is_leaf","iter","kind","name_gen","nbindings","new","new","new","next","next_name_idx","parent","pretty","ptr","ptr","ptr","push_comment","push_guard","push_node","rcx","refine_ctxt_at","refine_ctxt_at_root","refine_ctxt_at_root","replace_evars","replace_evars","root","root","scope","scope","shallow","shallow","simplify","simplify","snapshot","subtree_at","to_fixpoint","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","tree","tree","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unpack","unpack","unpack_exists","unpack_exists","unpack_inside_mut_ref","unpack_inside_mut_ref","unpacker","upgrade","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","yes","check_overflow","bindings_chain","flatten_conjs","fmt_children","preds_chain","Exists","Indexed","None","Output","Pre","Sig","SigTable","Some","args","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","extend","filterable","filterable","filterable","filterable","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","get","get_bin_op_sig","get_un_op_sig","init","init","init","init","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","map","new","out","overflow","pre","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_ty","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","BIN_OPS","E","UN_OPS","arc","mk_bool_bin_ops","mk_lnot","mk_neg","mk_not","mk_shift_ops","mk_signed_bin_ops","mk_unsigned_bin_ops","BIN_OPS","E","UN_OPS","arc","mk_neg","mk_signed_bin_ops","mk_unsigned_bin_ops","BasicBlockEnv","BasicBlockEnvData","BasicBlockEnvShape","Generalizer","TypeEnv","alloc","alloc_universal_loc","alloc_with_ty","assign","bindings","bindings","bindings","block_with","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_goto","clone","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","constrs","data","default","default_cx","default_cx","default_cx","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","drop","drop","drop","drop","drop","enter","enter","filterable","filterable","filterable","filterable","filterable","fmt","fmt","fmt","fmt","fmt","fmt","fold","fold_bty","fold_ty","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","generalize","get","init","init","init","init","init","into","into","into","into","into","into_bb_env","into_infer","into_parts","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","join","join_bty","join_generic_arg","join_idx","join_ty","local_decls","lookup_place","move_place","new","new","new","pack_bty","pack_generic_arg","pack_ty","preds","pretty","projection","ptr_to_borrow","replace_evars","scope","scope","scope","to_owned","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unblock","unfold","unpack","update","update_path","vars","visit_with","vzip","vzip","vzip","vzip","vzip","","","Binding","Box","CheckerResult","Cursor","Err","Error","Iter","LocKind","Local","LookupKey","LookupMode","LookupResult","NoUnfold","Ok","PlacesTree","Unfold","Unfolder","Universal","Updater","as_any","bindings","block_with","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","change_root","change_root","checker_conf","clone","clone","clone","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","cursor","cursor","cursor","default","default_cx","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast_enum","downcast_struct","downcast_struct","downcast_struct","downcast_struct","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equals","equivalent","equivalent","equivalent","equivalent","equivalent","field","field","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","filterable","flatten","fmap_mut","fmt","fmt","fmt","fmt","fold","fold","fold_field_at","fold_ty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","from_cycle_error","genv","get","get_loc","get_loc_mut","has_work","in_ref","index","init","init","init","init","init","init","init","init","init","insert","insertions","into","into","into","into","into","into","into","into","into","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","into_query_param","is_strg","iter","iter_flatten","kind","loc","loc","lookup","lookup_inner","lookup_unfolding","map","new","new","new","new_ty","next","path","paths","pos","pretty","proj","proj","rcx","remove","reset","run","should_continue","struct_variant","to_owned","to_owned","to_owned","to_path","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_predicate","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","to_result","try_fmap_mut","try_fold_binder","try_fold_bty","try_fold_expr","try_fold_region","try_fold_sort","try_fold_ty","try_fold_ty","try_fold_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unblock","unfold","unfold","unfold_box","unpack","unpack","unpack","unpack","unpack_for_downcast","update","update","visit_with","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"flux_refineck"],[20,"flux_refineck::checker"],[225,"flux_refineck::checker::errors"],[280,"flux_refineck::constraint_gen"],[487,"flux_refineck::errors"],[747,"flux_refineck::fixpoint_encoding"],[1088,"flux_refineck::fixpoint_encoding::fixpoint"],[1306,"flux_refineck::fixpoint_encoding::fixpoint::fixpoint_generated"],[1490,"flux_refineck::ghost_statements"],[1614,"flux_refineck::ghost_statements::fold_unfold"],[1822,"flux_refineck::ghost_statements::points_to"],[2207,"flux_refineck::invariants"],[2210,"flux_refineck::invariants::errors"],[2233,"flux_refineck::queue"],[2293,"flux_refineck::refine_tree"],[2640,"flux_refineck::refine_tree::AssumeInvariants"],[2641,"flux_refineck::refine_tree::pretty"],[2645,"flux_refineck::sigs"],[2741,"flux_refineck::sigs::default"],[2752,"flux_refineck::sigs::overflow"],[2759,"flux_refineck::type_env"],[2931,"flux_refineck::type_env::projection"],[3231,"flux_middle::global_env"],[3232,"rustc_span::span_encoding"],[3233,"flux_middle::rty::expr"],[3234,"core::option"],[3235,"rustc_span"],[3236,"flux_common::cache"],[3237,"rustc_span::def_id"],[3238,"core::result"],[3239,"alloc::vec"],[3240,"rustc_middle::arena"],[3241,"core::iter::traits::collect"],[3242,"rustc_hir"],[3243,"flux_middle::rty::expr"],[3244,"flux_middle::rty"],[3245,"rustc_type_ir::ty_kind"],[3246,"flux_middle::rty"],[3247,"flux_middle::rustc::mir"],[3248,"rustc_middle::mir"],[3249,"flux_middle::rustc::mir"],[3250,"flux_middle::rty"],[3251,"core::ops::function"],[3252,"rustc_infer::infer"],[3253,"core::convert"],[3254,"rustc_data_structures::graph::dominators"],[3255,"icu_provider_adapters::filter"],[3256,"core::fmt"],[3257,"core::fmt"],[3258,"flux_middle::rustc::mir"],[3259,"rustc_data_structures::unord"],[3260,"flux_middle::intern"],[3261,"rustc_middle::ty::context"],[3262,"core::any"],[3263,"flux_middle::queries"],[3264,"flux_middle::rty::evars"],[3265,"rustc_errors"],[3266,"rustc_errors::diagnostic_builder"],[3267,"core::any"],[3268,"flux_middle::rty"],[3269,"flux_middle::rty::expr"],[3270,"core::hash"],[3271,"flux_middle::rty"],[3272,"core::ops::function"],[3273,"core::marker"],[3274,"flux_fixpoint::constraint"],[3275,"flux_fixpoint::constraint"],[3276,"rustc_serialize::serialize"],[3277,"flux_middle::rty"],[3278,"flux_middle::rty::expr"],[3279,"std::io"],[3280,"flux_middle::rustc::ty"],[3281,"rustc_target::abi"],[3282,"rustc_middle::mir::statement"],[3283,"rustc_middle::mir"],[3284,"rustc_middle::mir::terminator"],[3285,"rustc_middle::mir"],[3286,"flux_middle::rty::expr"],[3287,"core::ops::function"],[3288,"alloc::collections::vec_deque"],[3289,"rustc_mir_dataflow::framework::engine"],[3290,"rustc_middle::mir"],[3291,"flux_common::index"],[3292,"alloc::string"],[3293,"flux_middle::rty::fold"]],"d":["","Raw content of Fluent resource for this crate, generated …","","","","","","","","","Encoding of the refinement tree into a fixpoint constraint.","Ghost statements are statements that are not part of the …","","","","","","","","","","","A Guard describes extra “control” information that …","The corresponding place was found to be of a particular …","","No extra information holds, e.g., for a plain goto.","A predicate that can be assumed, e.g., in the branches of …","","","The result of running the shape phase.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This checks obligations related to closures & generators; …","","","","","","","","","","","","","","","","","","","For check_terminator, the output Vec<BasicBlock, Guard> …","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","LocalDefId of the function-like item being checked.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Generics of the function being checked.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Exprs used to instantiate EarlyBinders for signature of …","The type used for the resume argument of a generator.","","","","","","","A snapshot of the refinement context at the end of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Snapshot of the refinement subtree where the obligations …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An alias for additional bindings introduced when ANF-ing …","Generate a conjunction of kvars, one per argument in …","","","","Environment used to map rty::Var into [fixpoint::Name]. …","","","","","How an rty::KVar is encoded in the fixpoint constraint","","","","Maximum value the index can take.","Maximum value the index can take, as a u32.","An alias for a list of predicate (conjuncts) and their …","Generate a single kvar appending the self arguments and …","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","Used to report bugs","","DefId of the item being checked. This could be a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Generate a fresh kvar under several layers of binders. The …","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","","","","","","","","","","","","","Extracts the value of this index as a usize.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Layers of late bound variables","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","","","","","","","","","","","","","","","","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","Creates a new index from a given usize.","","","","","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","interpreted (theory) function","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","This module implements a points-to analysis for mutable …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Maximum value the index can take.","Maximum value the index can take.","Maximum value the index can take, as a u32.","Maximum value the index can take, as a u32.","Partial mapping from [Place] to PlaceIndex, where some …","","This index uniquely identifies a place.","This is the information tracked for every PlaceIndex and …","Used as the result for r-value.","This implement a points to analysis for mutable references …","","","The dataflow state for an instance of [ValueAnalysis].","See State.","","","","This index uniquely identifies a tracked place and …","","","","","","","","","","","","","","Applies a single projection element, yielding the …","","","","","","","","","Extracts the value of this index as a u32.","Extracts the value of this index as a u32.","Extracts the value of this index as a usize.","Extracts the value of this index as a usize.","Helper method to interpret target = result.","","","","","","","","","","","","","","","","","","","","","","","","","Precompute the list of values inside root and store it …","Iterate over all direct children.","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns all locals with projections that have their …","","","","","","","","","","","Locates the given place, if it exists in the tree.","The left-most child.","","","","","","","","","","","","Invoke a function on the given place and all places that …","","","Invoke a function on each value in the given place and all …","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given u32.","Creates a new index from a given usize.","Creates a new index from a given usize.","Retrieve the value stored for a place, or ⊤ if it is not …","Retrieve the value stored for a place index, or ⊤ if it …","Retrieve the value stored for a place index if tracked","","","","","","The effect of a successful function call return should not …","","","","Extracts the value of this index as a usize.","","Extracts the value of this index as a usize.","","","","","","","","","","","","","","Low-level method that assigns to a place. This does …","Copies source to target, including all tracked places …","","Low-level method that assigns a value to a place. This …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Returns a map that only tracks places whose type has …","","","","","","Index of the sibling to the right of this node.","","","","","","The projection used to go from parent to this node (only …","","Register all non-excluded places that have scalar layout.","Potentially register the (local, projection) place and its …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","We store a ValueIndex if and only if the placed is tracked …","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A refinement context tracks all the refinement parameters …","A reference to a subtree rooted at a particular node in a …","A refinement tree tracks the “tree-like structure” of …","A ist of refinement variables and their sorts.","A snapshot of a RefineCtxt at a particular point during …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","Defines a fresh refinement variable with the given sort. …","Given a sort that may contain nested tuples, it destructs …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","Whether t has any free variables not in this scope","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns true if the node kind is ForAll.","Returns true if the node kind is Head.","","","","","Number of bindings between the root and this node’s …","","","","","","","","","","","","","","","","","","","","","","","Returns the scope at the snapshot if it is still valid or …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","We keep a reference to the underlying RefineTree to prove …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This set of signatures does not check for overflow. They …","","","","","","","This set of signatures checks for overflow and underflow. …","","","","","","","","","","","","","","","","","","When checking a borrow in the right hand side of an …","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","join(self, genv, other) consumes the bindings in other, to …","","","","","","","","","","","","","","","","","Converts a pointer ptr(mut, l) to a borrow &mut T for a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contains the error value","","","","","","","","","Contains the success value","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","In contrast (w.r.t. struct) downcast on enum works as …","downcast on struct works as follows Given a struct …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,31,0,31,31,0,0,0,8,8,8,8,46,47,21,0,0,21,46,47,72,31,8,21,46,47,72,31,8,21,21,21,21,21,21,21,21,21,21,21,21,28,46,47,21,21,21,21,21,21,21,8,21,21,21,21,21,28,46,47,8,8,21,46,47,72,31,8,21,28,21,46,47,21,21,46,47,72,31,8,21,46,47,72,31,8,21,21,46,47,72,31,8,28,46,47,0,21,46,47,72,31,8,8,21,21,46,46,47,47,72,72,31,31,8,8,21,46,47,72,31,8,21,21,21,21,21,21,46,47,72,31,8,0,0,21,46,47,72,31,8,72,21,46,47,72,31,8,21,47,21,21,21,21,21,21,21,21,8,0,21,21,8,21,46,47,72,31,8,21,46,47,72,31,8,21,46,47,72,31,8,21,46,47,72,31,8,21,46,47,72,31,8,0,0,0,21,21,46,47,72,31,8,0,0,83,83,259,83,83,0,27,83,27,83,27,83,27,83,27,83,27,83,27,83,83,27,27,83,83,83,83,27,83,27,83,27,83,27,27,83,27,27,27,27,83,27,83,27,83,27,83,27,83,27,83,259,259,95,95,95,0,0,95,95,95,0,0,0,95,95,95,95,0,11,11,95,95,11,11,95,95,11,95,59,42,89,11,95,59,42,89,11,95,89,89,59,59,59,59,59,89,59,89,11,95,11,95,59,42,89,11,95,59,89,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,11,11,95,11,95,11,11,11,11,11,95,95,95,95,95,89,59,42,89,11,95,11,11,95,100,100,89,89,89,89,59,59,42,42,89,89,11,11,95,95,59,42,89,11,95,89,59,89,11,95,89,59,59,42,89,11,95,89,89,89,59,42,89,11,95,59,42,89,11,95,59,89,0,0,59,42,89,11,89,89,89,59,89,89,42,0,89,89,11,59,89,59,89,89,42,89,59,11,59,89,89,11,95,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,59,42,89,11,95,89,59,42,89,11,95,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,113,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,114,114,115,117,110,113,114,118,119,120,121,122,123,114,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,115,117,117,110,110,113,113,114,114,118,118,119,119,120,120,121,121,122,122,123,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,120,114,114,115,117,110,113,114,118,119,120,121,122,123,114,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,115,117,110,113,114,118,119,120,121,122,123,0,99,140,0,0,0,0,0,0,0,0,0,0,0,124,124,0,99,0,140,124,124,124,99,99,124,124,99,99,124,140,125,124,124,125,124,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,260,261,125,124,136,99,124,136,99,124,125,156,145,126,142,124,73,136,99,140,125,124,124,125,126,262,126,124,125,125,73,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,124,136,125,126,124,140,124,140,124,124,124,124,124,140,140,140,140,140,126,126,125,156,145,126,142,124,73,136,99,140,0,0,125,124,124,124,73,73,145,125,125,156,156,145,145,126,126,142,142,124,124,124,124,73,73,136,136,99,99,140,140,125,156,145,126,142,124,73,136,99,140,124,124,124,124,0,126,145,125,73,145,145,124,140,262,125,124,124,125,156,145,126,142,124,73,136,99,140,263,145,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,125,125,73,125,145,145,260,261,145,142,125,156,145,126,124,73,156,124,125,125,125,124,145,0,145,136,142,0,156,136,124,0,142,125,125,125,124,136,99,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,124,125,156,145,126,142,124,73,136,99,140,125,156,145,126,142,124,73,136,99,140,126,125,156,145,126,142,124,73,136,99,140,142,126,125,156,145,126,142,124,73,136,99,140,125,163,0,0,163,0,162,146,133,162,146,133,0,162,146,133,162,162,146,146,133,133,163,163,162,162,146,146,133,133,163,163,162,146,133,162,146,133,162,146,133,162,146,133,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,162,146,133,163,162,162,146,146,133,133,162,146,133,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,162,146,133,162,146,133,162,162,162,162,162,146,146,146,146,146,133,133,133,133,133,162,146,133,163,0,162,162,146,133,163,163,162,146,133,162,162,162,162,146,146,146,146,133,133,133,133,163,163,163,163,162,146,133,163,162,146,133,162,146,133,162,146,133,162,146,133,163,162,162,146,146,133,133,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,162,146,133,162,146,133,162,146,133,162,146,133,163,162,146,133,163,162,146,133,163,162,163,162,146,133,163,162,146,133,163,162,146,133,163,162,146,133,163,264,153,265,265,153,153,266,0,265,0,0,264,0,266,165,0,153,266,265,153,267,0,264,164,153,265,0,0,266,0,265,0,153,164,165,0,0,0,265,153,265,265,267,165,165,165,165,268,268,153,164,148,165,131,153,164,148,165,131,153,164,148,165,153,164,148,165,153,164,148,165,131,269,270,270,270,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,153,164,148,153,153,164,164,148,148,165,165,131,131,153,164,148,165,131,148,268,153,164,148,165,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,270,269,271,268,148,271,148,270,270,271,269,270,153,164,148,165,153,164,148,165,131,153,164,148,165,131,153,164,148,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,153,164,148,165,131,45,0,44,0,0,45,0,0,44,0,44,44,68,0,45,45,45,45,45,68,68,68,272,273,68,44,167,45,68,44,167,45,45,45,68,44,167,45,0,68,44,167,45,68,44,167,45,68,44,167,45,45,45,45,45,45,45,45,68,68,44,167,45,44,45,0,68,68,44,44,167,167,45,45,68,44,167,45,45,68,44,167,45,167,68,68,44,167,45,68,44,167,45,68,167,0,68,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,44,167,45,68,173,173,173,0,0,178,0,173,0,181,0,172,178,181,0,0,0,173,173,178,0,170,170,170,170,179,180,181,171,178,173,170,179,180,181,171,178,173,171,173,171,173,170,179,180,181,171,178,173,173,171,171,173,173,170,179,180,181,171,178,173,173,170,179,180,181,171,178,173,170,0,171,173,0,170,179,180,181,171,178,173,173,173,170,179,180,181,171,178,173,171,178,173,173,170,170,179,179,180,180,181,181,171,171,178,178,173,173,170,179,180,181,171,178,173,170,170,172,179,180,170,179,180,181,171,178,173,180,170,179,180,181,171,178,173,170,179,180,181,171,178,173,171,173,170,171,170,170,171,170,172,179,180,171,170,172,179,180,170,170,180,170,171,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,170,179,180,181,171,178,173,171,170,170,179,180,181,171,178,173,0,0,182,183,182,183,0,196,0,0,0,0,197,0,0,0,196,197,196,0,274,182,183,0,182,182,183,183,182,182,183,183,274,185,186,186,186,186,182,183,197,194,182,183,182,183,194,182,183,207,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,185,185,182,183,197,194,197,194,182,183,197,194,182,183,186,207,208,196,185,203,182,183,197,194,182,182,183,183,0,0,182,183,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,182,183,274,182,183,197,194,182,183,197,194,182,182,182,182,182,183,183,183,183,183,197,197,197,197,197,194,194,194,194,194,0,186,207,208,196,185,203,182,183,197,194,185,203,194,194,185,203,182,183,197,194,194,194,186,185,185,185,185,182,183,186,186,207,207,208,208,196,196,185,185,203,203,182,182,182,182,183,183,183,183,197,197,194,194,186,207,208,196,185,203,182,183,197,194,182,183,182,183,182,183,194,194,194,186,186,186,186,186,186,182,183,182,182,183,183,186,207,208,196,185,203,182,183,197,194,186,185,185,194,194,207,194,186,207,208,196,185,203,182,183,197,194,208,186,207,208,196,185,203,182,183,197,194,194,185,186,207,208,186,207,208,185,203,182,183,208,208,203,182,183,185,182,183,203,185,185,185,182,183,207,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,207,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,186,207,208,196,185,203,182,183,197,194,185,203,194,207,207,207,186,207,208,196,185,203,182,183,197,194,0,0,0,0,0,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,0,0,217,217,217,218,217,218,217,217,218,217,217,217,218,217,218,217,218,217,218,218,217,217,217,217,217,217,217,217,218,217,217,218,218,217,218,218,217,218,218,217,218,217,218,217,218,218,217,218,217,218,217,218,217,218,217,218,217,218,0,228,228,228,228,228,225,0,0,0,0,0,0,0,0,0,228,0,0,225,144,79,22,22,221,22,144,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,22,22,22,223,0,76,219,219,79,76,22,49,223,220,228,221,225,226,144,219,144,144,22,22,79,76,22,49,223,220,228,221,225,226,144,219,219,79,76,22,49,223,220,228,221,225,226,144,219,219,79,76,22,49,223,220,228,221,225,226,144,219,144,144,144,144,144,144,144,79,76,22,49,223,220,228,221,225,226,144,219,79,79,76,76,22,22,144,144,219,221,221,79,79,76,76,22,22,49,49,223,223,220,220,228,228,221,221,225,225,226,226,144,144,219,219,79,76,22,49,223,220,228,221,225,226,144,219,144,221,144,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,79,226,79,76,22,49,223,220,228,221,225,226,144,219,223,223,223,144,223,219,223,79,221,226,226,219,223,0,22,49,226,22,219,219,221,76,79,76,22,223,79,76,22,49,221,221,79,223,22,22,223,219,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,76,22,221,221,221,221,221,221,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,79,76,22,49,223,220,228,221,225,226,144,219,22,221,221,221,221,221,22,220,79,76,22,49,223,220,228,221,225,226,144,219,225,275,0,0,0,0,234,234,276,0,0,0,0,276,233,233,276,234,231,233,276,234,231,233,276,234,231,0,233,276,234,231,233,276,234,231,233,276,234,231,231,233,276,234,231,233,233,276,276,234,234,231,231,233,276,234,231,231,0,0,233,276,234,231,233,276,234,231,233,276,234,231,231,231,233,0,233,233,276,234,231,233,276,234,231,234,233,276,234,231,233,276,234,231,233,276,234,231,233,276,234,231,0,0,0,277,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,23,23,23,23,236,240,23,23,236,74,240,238,23,23,236,74,240,238,23,23,23,23,236,74,240,238,23,240,74,23,236,74,23,236,74,240,238,23,236,74,240,238,23,23,236,74,240,238,23,236,74,236,74,240,238,23,236,236,74,74,23,23,23,238,238,236,236,74,74,240,240,238,238,23,23,236,74,240,238,23,238,23,236,74,240,238,23,236,74,240,238,23,236,23,238,236,74,240,238,23,236,236,236,236,236,23,23,23,236,238,23,236,236,236,238,0,0,23,23,74,236,74,23,236,74,240,238,23,236,74,240,238,23,238,238,238,238,238,238,240,236,74,240,238,23,236,74,240,238,23,236,74,240,238,23,23,23,23,236,23,238,240,236,74,240,238,23,0,0,0,249,0,0,279,256,255,0,249,0,0,0,0,279,0,0,0,249,0,249,244,244,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,245,246,245,247,248,249,247,248,249,244,252,253,245,250,246,247,248,249,244,245,250,247,247,244,252,253,245,245,250,250,246,247,248,249,244,252,253,245,250,246,247,248,249,0,245,0,0,256,252,253,244,252,253,245,250,246,247,248,249,249,249,249,249,249,249,249,245,250,244,252,253,245,250,246,247,248,249,247,247,247,247,249,249,0,244,250,250,244,244,252,252,253,253,245,245,250,250,246,246,247,247,248,248,249,249,244,252,253,245,250,246,247,248,249,245,247,247,247,245,245,245,244,252,253,245,250,246,247,248,249,247,245,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,244,247,247,248,255,246,247,247,247,247,245,250,246,250,246,244,247,246,0,255,246,245,247,246,245,245,0,247,248,249,246,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,247,250,250,250,250,250,245,250,247,244,252,253,245,250,246,247,248,249,244,252,253,245,250,246,247,248,249,244,248,244,252,253,245,250,246,247,248,249,244,245,247,245,256,252,253,245,245,244,250,247,244,252,253,245,250,246,247,248,249],"f":[0,0,0,0,[[1,2,[4,[3]]],5],[[1,6,7,8],[[10,[9,5]]]],0,0,0,0,0,0,0,0,0,[[1,[12,[11]]],[[10,[9,5]]]],[[1,2,[4,[3]]],5],0,0,0,0,0,0,0,0,0,0,0,0,0,[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],0,0,0,[[17,18],19],[[17,20],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1]],22,23,2,[14,[24]]],[[10,[[10,[[12,[[26,[25]]]],27]],27]]],28],[[[21,[-1]],22,23,2,24,29,30],[[10,[31,27]]],28],[[[21,[-1]],22,23,32,19,33],[[10,[9,27]]],28],[[[21,[-1]],22,23,34],[[10,[9,27]]],28],[[[21,[-1]],22,23,2,35,24,24],[[10,[19,27]]],28],[[[21,[-1]],22,23,2,[4,[36]],[38,[37]],[14,[39]],[14,[19]]],[[10,[19,27]]],28],[[[21,[-1]],40,19,41],[[10,[19,27]]],28],[[[21,[-1]],22,42],[[10,[9,27]]],28],[[[21,[-1]],43],[[10,[19,27]]],28],[[[21,[-1]],22,23,44,2],[[10,[9,27]]],28],[[[21,[-1]],22,23,45,2],[[10,[9,27]]],28],[[[21,[-1]],22,23,34,2,34],[[10,[9,27]]],28],[[[21,[-1]],22,23,2,34],[[10,[29,27]]],[]],[[[21,[46]],22,23,2,34],[[10,[29,27]]]],[[[21,[47]],22,23,2,34],[[10,[29,27]]]],[[19,48],[[12,[[9,[34,31]]]]]],[[[21,[-1]],22,23,2,32],[[10,[19,27]]],28],[[19,48],[[12,[[9,[34,31]]]]]],[[[21,[-1]],22,49,50],[[10,[9,27]]],28],[[[21,[-1]],22,49,51],[[10,[9,27]]],28],[[[21,[-1]],22,23,2,24],[[10,[19,27]]],28],[[[21,[-1]],22,23,2,[14,[24]]],[[10,[[12,[19]],27]]],28],0,[[[21,[-1]],22,23,2,52],[[10,[19,27]]],28],[[[21,[-1]],22,23,53],[[10,[9,27]]],28],[[[21,[-1]],22,23,34,2,[12,[[9,[34,31]]]]],[[10,[9,27]]],28],[[[21,[-1]],22,23,54,[4,[2]]],[[10,[[12,[[9,[34,31]]]],27]]],28],[[[21,[-1]],22,23,2,55,24],[[10,[19,27]]],28],[[[21,[-1]],34],9,[]],[[[21,[46]],34],9],[[[21,[47]],34],9],[8,8],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[[-1,1,58,-2,[14,[17]],22,2],59,[],[[60,[36]]]],[[[21,[-1]],22,2],59,28],[[46,1,58,-1,[14,[17]],22,2],59,[[60,[36]]]],[[47,1,58,-1,[14,[17]],22,2],59,[[60,[36]]]],0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[[21,[-1]]],[[62,[34]]],28],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[[21,[-1]],22,34],23,[]],[[[21,[46]],22,34],23],[[[21,[47]],22,34],23],0,[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[8,65],66],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,0,[[[21,[-1]]],68,28],0,[[],61],[[22,69,70,8],23],[[],61],[[],61],[[],61],[[],61],[[],61],[18,71],[[17,18,18],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[72,73],[[75,[7,[75,[34,74]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1]],34],29,28],0,0,0,0,0,0,[[1,76,7,[77,[7,68]],-1,[38,[37]],[4,[[78,[17]]]],8],[[10,[9,27]]],28],[[1,7,[77,[7,68]],72,8],[[10,[[9,[79,73]],27]]]],[[1,7,[77,[7,68]],8],[[10,[72,27]]]],0,[[69,[80,[34,[4,[49]]]],34],49],[[[21,[-1]],34],49,28],0,[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[20,71],[[17,20,18],19],[[17,20,20],19],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[83,65],66],[[[10,[-1]]],-1,[]],[-1,-1,[]],[84,83],[-1,-1,[]],[85,83],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[[27,86],[[87,[5]]]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[36,2],27],0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,2],[[10,[27]]],[]],[[-1,33],[[10,[27]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[-1,88,[]],[-1,88,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[89,22,90,90],[[10,[9,83]]]],[[89,22,23,91],[[10,[9,83]]]],[[59,22,[38,[92]],[14,[39]],[14,[19]]],[[10,[19,83]]]],[[59,22,23,[4,[36]],[38,[37]],[14,[39]],[14,[19]]],[[10,[[9,[[94,[93]],42]],83]]]],[[59,36,[14,[39]]],[[10,[9,83]]]],[[59,22,23,[14,[19]],19],[[10,[19,83]]]],[[59,22,-1,95],9,[[60,[17]]]],[[89,22,-1],9,[[60,[17]]]],[[59,22,23,[94,[93]]],[[10,[42,83]]]],[[89,22,23,96,19],[[10,[9,83]]]],[11,11],[95,95],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],0,[[11,11],29],[[95,95],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],0,[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[11,65],66],[[11,97,65],66],[[95,65],66],[[-1,[14,[[78,[98]]]],99],17,[]],[[100,[14,[[78,[98]]]],99],17],[[89,98],17],[[89,98,101],17],[[89,[14,[[78,[98]]]],102],17],[[89,[14,[[78,[98]]]],99],17],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[89,22,103,39,39],[[10,[9,83]]]],0,0,[[11,-1],9,104],[[95,-1],9,104],[[89,22,17,17,[105,[29]]],9],[[59,22,95],89],[[],61],[[],61],[[],61],[[],61],[[],61],[[89,[12,[106]]],9],[[89,[14,[39]]],[[12,[39]]]],[[89,1,[4,[36]]],[[10,[[12,[17]],83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[1,36,107,36],[[10,[[12,[106]],83]]]],[[1,36,[14,[39]],[14,[17]]],[[10,[[78,[106]],83]]]],[[1,58,36,[14,[17]],-1,2],59,100],[[[78,[106]],49],42],[[1,58,36,[14,[17]],22,100,11],89],[[95,2],11],[89,[[12,[106]]]],0,[[89,22,19,108],[[10,[9,83]]]],[[59,23,[14,[19]]],[[10,[[12,[19]],83]]]],[89,9],[[89,22,[94,[17]],[94,[17]]],9],0,0,[[89,19,36],[[10,[19,83]]]],[[89,22],9],0,0,0,0,0,0,0,[89,[[10,[109,85]]]],0,0,[[59,22,19,19,95],9],[[89,22,19,19],[[10,[9,83]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[89,17,17,29],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[11,[4,[3]]],11],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[110,111,-1],9,112],[[113,111,-1],9,112],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[2,[4,[3]]],114],0,[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[115,86],[[87,[-1]]],116],[[117,86],[[87,[-1]]],116],[[114,86],[[87,[-1]]],116],[[118,86],[[87,[-1]]],116],[[119,86],[[87,[-1]]],116],[[120,86],[[87,[-1]]],116],[[121,86],[[87,[-1]]],116],[[122,86],[[87,[-1]]],116],[[123,86],[[87,[-1]]],116],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[63,2,[4,[3]]],114],[[2,[4,[3]]],114],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[124,61],124],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[-1,88,[]],[-1,88,[]],[[[125,[-1]]],126,[127,128,129]],[124,130],[124,61],[[[132,[131]],133,134],[[132,[131]]]],[[124,61],[[4,[124]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[125,[-1]],6,[132,[131]],8],[[135,[[12,[-1]]]]],[127,128,129]],[124,124],[136,136],[99,99],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[124,124],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],0,0,0,0,[-1,124,138],0,[[[125,[-1]]],2,[127,128,129]],[[],73],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[124,-1],9,139],0,0,0,[[124,124],29],[[140,140],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[126,17],[[141,[131]]]],[[126,-1],[[12,[[141,[131]]]]],15],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],0,[1,[[143,[140,142]]]],0,[[124,65],66],[[124,65],66],[[124,61],[[4,[124]]]],[[73,[14,[[78,[98]]]],144,99],17],[[73,61,-1,99],17,15],[145,146],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[130,124],[[[10,[-1]]],-1,[]],[61,124],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[63,[[10,[124]]]],[130,124],[130,124],[61,124],[147,148],[[126,17],[[149,[131]]]],0,0,[[73,150],136],[[145,151],[[4,[146]]]],[[145,152,130],[[4,[146]]]],[[124,-1],9,104],[[140,-1],9,104],0,[[[125,[-1]],17,98,[12,[[9,[146,153,[141,[131]]]]]]],146,[127,128,129]],[124,61],[124,61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],0,[[145,151],146],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[125,[-1]],154,[12,[[9,[146,153,[141,[131]]]]]]],[[155,[131]]],[127,128,129]],0,0,0,[145,[[14,[146]]]],0,0,0,0,0,[[1,7,73],[[125,[-1]]],[127,128,129]],[[[12,[153]],150],156],[[],145],[[145,[143,[140,142]],2],126],[61,124],[[],73],0,[[124,124],[[4,[137]]]],[[[125,[-1]],150],9,[127,128,129]],[[[125,[-1]],17],[[9,[[12,[[9,[146,153,[141,[131]]]]]],[12,[[9,[[155,[131]],[4,[3]]]]]]]]],[127,128,129]],[[[125,[-1]],17,[12,[[9,[146,153,[141,[131]]]]]],[12,[[9,[[155,[131]],[4,[3]]]]]]],9,[127,128,129]],0,[[145,61],9],[[2,[143,[140,142]],157],[[158,[131]]]],[[145,151],9],0,0,[98,153],0,0,[[124,124],[[4,[61]]]],[[[12,[[9,[146,153,[141,[131]]]]]],[132,[131]]],[[132,[131]]]],0,[[[125,[-1]],-1],124,[159,127,128,129]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,160,[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[126,[14,[17]]],[[141,[131]]]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],0,[[126,161],146],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[125,[-1]],151,-2],-3,[127,128,129],57,[]],0,0,0,0,0,0,0,0,0,0,0,0,[[162,61],162],[[146,61],146],[[133,61],133],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[-1,88,[]],[-1,88,[]],[-1,88,[]],[162,130],[146,130],[133,130],[162,61],[146,61],[133,61],[[162,61],[[4,[162]]]],[[146,61],[[4,[146]]]],[[133,61],[[4,[133]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[162,162],[146,146],[133,133],[163,163],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[162,162],137],[[146,146],137],[[133,133],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[-1,162,138],[-1,146,138],[-1,133,138],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[[162,-1],9,139],[[146,-1],9,139],[[133,-1],9,139],[[162,162],29],[[146,146],29],[[133,133],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],0,[[162,65],66],[[162,65],66],[[146,65],66],[[133,65],66],[[163,65],66],[[163,65],66],[[162,61],[[4,[162]]]],[[146,61],[[4,[146]]]],[[133,61],[[4,[133]]]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[61,162],[130,162],[61,146],[[[10,[-1]]],-1,[]],[130,146],[-1,-1,[]],[[[10,[-1]]],-1,[]],[130,133],[-1,-1,[]],[61,133],[133,163],[146,163],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[130,162],[130,146],[130,133],[130,162],[130,146],[130,133],[61,162],[61,146],[61,133],[[162,-1],9,104],[[146,-1],9,104],[[133,-1],9,104],[[163,-1],9,104],[162,61],[162,61],[146,61],[146,61],[133,61],[133,61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[61,162],[61,146],[61,133],[[162,162],[[4,[137]]]],[[146,146],[[4,[137]]]],[[133,133],[[4,[137]]]],0,0,0,[[162,162],[[4,[61]]]],[[146,146],[[4,[61]]]],[[133,133],[[4,[61]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,160,[]],[-1,160,[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[153,153],[164,164],[148,148],[165,165],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,0,0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[153,65],[[10,[9,166]]]],[[164,65],[[10,[9,166]]]],[[148,65],[[10,[9,166]]]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,0,[[153,-1],9,104],[[164,-1],9,104],[[148,-1],9,104],[[165,-1],9,104],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[61,-1,153],148,15],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,160,[]],[-1,160,[]],[-1,160,[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[68,69],9],[[81,7],[[0,[56]]]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],[-1,88,[]],[[68,45],167],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[45,45],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[1,7],[[135,[[77,[7,68]]]]]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[[45,45],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[68,45,-1],9,15],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[44,65],66],[[45,65],66],0,[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[45,-1],9,104],[[],61],[[],61],[[],61],[[],61],[[167,44],9],[[68,45,44],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1,7],[[135,[68]]]],0,0,[[68,45],[[0,[56]]]],0,[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[68,81,69,-1],[[168,[9]]],169],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[68,1,69],135],[[[170,[-1]],34,171],135,172],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[171,171],[173,173],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[173,173,32,167],9],[[171,171,167],9],[[171,69,167],9],[[173,32,167],9],[[173,32,167],29],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[173,[[9,[173,29]]]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],0,[[1,174,175,176],[[135,[[12,[173]]]]]],[[171,1,32,176],135],[[173,1,176],[[135,[[9,[173,29]]]]]],[[1,174,175],[[135,[[12,[173]]]]]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[173,1,177],[[135,[[9,[173,29]]]]]],[[173,1],[[135,[[9,[[12,[173]],29]]]]]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[171,65],66],[[178,65],66],[[173,65],66],[173,29],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,[[[170,[-1]],34,34,171],135,172],[[[170,[-1]],34,34,171],[[135,[29]]],[]],[[[170,[179]],34,34,171],[[135,[29]]]],[[[170,[180]],34,34,171],[[135,[29]]]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[180,45,44],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[171,1,171],[[135,[29]]]],[[173,1,173,29],[[135,[[9,[29,29]]]]]],0,0,0,[[1,69,[75,[34,171]],-1],[[170,[-1]]],[]],[69,171],[[[170,[-1]],24,171],135,172],[[[170,[-1]],171,32,181],135,[]],[[[170,[179]],171,32,181],135],[[[170,[180]],171,32,181],135],[[171,1,32],[[135,[178]]]],0,[[[170,[-1]],34,171],9,[]],[[[170,[179]],34,171],9],[[[170,[180]],34,171],9],[[[170,[-1]]],135,172],[[[170,[-1]],53,171],135,172],0,[[[170,[-1]],54,171],135,172],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[171,1,32],[[135,[[9,[173,29]]]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[182,61],182],[[183,61],183],[[68,1,184,7],135],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[13,-1],[[14,[-2]]],15,[]],[[16,-1],[[14,[-2]]],15,[]],[[-1,13],-2,[],[]],[[-1,16],-2,[],[]],[[-1,16],-2,[],[]],[[-1,13],-2,[],[]],0,[[185,182,177],[[4,[182]]]],[[186,34,187],9],[[186,188,189],9],[[186,34,190,-1],9,191],[[186,192,189],193],[-1,88,[]],[-1,88,[]],[-1,88,[]],[-1,88,[]],[182,130],[183,130],[182,61],[183,61],[[194,195,196,185],9],[[182,61],[[4,[182]]]],[[183,61],[[4,[183]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[186,184]],[[185,182],9],[[185,182],[[0,[56]]]],[182,182],[183,183],[197,197],[194,194],[[197,197],9],[[194,194],9],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[182,182],137],[[183,183],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[[[198,[183,-1]],[4,[[198,[183,-1]]]],185,65],66,[159,128]],[[182,63,[198,[183,-1]],[4,[[198,[183,-1]]]],185,65],66,[159,128]],[-1,182,138],[-1,183,138],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[182,-1],9,139],[[183,-1],9,139],0,[[182,182],29],[[183,183],29],[[197,197],29],[[194,194],29],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[184,[[200,[199]]]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[185,195],[[4,[182]]]],0,[[194,195,185],9],[[194,195,185,[202,[201]]],9],[[185,65],66],[[203,65],66],[[182,65],66],[[183,65],66],[[197,65],66],[[194,65],66],[[194,194,186,65],66],[[194,186,65],66],0,[[185,195,-1],9,204],[[185,-1],9,204],[[185,182,[12,[177]],-1],9,204],[[185,182,-1],9,204],[[182,61],[[4,[182]]]],[[183,61],[[4,[183]]]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[130,182],[[[10,[-1]]],-1,[]],[61,182],[61,183],[[[10,[-1]]],-1,[]],[-1,-1,[]],[130,183],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[130,182],[130,183],[130,182],[130,183],[61,182],[61,183],[[194,195,185],[[202,[201]]]],[[194,182,185],[[202,[201]]]],[[194,182,185],[[4,[[202,[201]]]]]],[[186,205,206,194],9],[[186,187,194],9],[[186,190],[[4,[182]]]],[[186,205,194],[[202,[201]]]],[[186,188,194],9],[[186,192,194],193],[[182,-1],9,104],[[183,-1],9,104],[182,61],[182,61],[183,61],[183,61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[186,184],9],0,0,[[194,182,196,185],9],[[194,182,182,185],9],[[207,45,194,194],9],[[194,182,[202,[201]],185],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[194,194],29],0,0,0,0,[[185,[4,[[38,[37]]]]],186],[[185,68],207],[[185,182],208],[184,185],[[[4,[177]]],203],[61,182],[61,183],[208,4],0,0,[[182,182],[[4,[137]]]],[[183,183],[[4,[137]]]],0,0,0,0,0,[[185,184,[200,[199]]],9],[[185,182,209,[210,[[9,[182,177,209]]]]],9],[[182,182],[[4,[61]]]],[[183,183],[[4,[61]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],0,[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],0,0,0,[[207,[211,[186]],194,212,34],9],[[207,[211,[186]],188,189],9],[[207,[211,[186]],188,189],9],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1,6,7,213,2,214,8],[[10,[9,5]]]],[[1,6,7,[14,[215]],213,8],[[10,[9,5]]]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,56,57,[]],[61,-1,[]],[61,-1,[]],[61,9],[[-1,63],[[64,[-2]]],[],[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[],61],[-1,-2,[],[]],[[216,86],[[87,[-1]]],116],[-1,-2,[],[]],0,[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,-2,[],[]],0,0,[-1,88,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[217,217],137],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],137,[],[]],[[-1,-2],137,[],[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],0,0,[61,9],[61,9],[[61,[62,[34]]],218],[[217,217],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,[[],61],[[],61],[[218,34],29],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[217,217],[[4,[137]]]],[218,[[4,[34]]]],0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,88,[]],[79,76],[22,76],[[22,19,29],9],0,[[22,-1],9,[[60,[17]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[22,22],[[22,-1,-2,11],9,[[60,[17]]],[[60,[17]]]],[[22,-1,11],9,[[60,[17]]]],0,[[[125,[11]],[14,[219]]],[[4,[[132,[131]]]]]],[[76,49],9],[219,219],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[144,151],29],[[144,-1],29,15],[[22,98],151],[[22,98],17],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[219],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[219,220],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[144,144],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[79,65],66],[[79,97,65],66],[[76,97,65],66],[[76,65],66],[[22,65],66],[[22,97,65],66],[[144,97,65],66],[[144,65],66],[[219,97,65],66],[[221,90],90],[[221,19],19],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[144,-1],29,222],0,[[144,151]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[79,[125,[11]]],[[132,[131]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[223,29],[223,29],[223,29],[144,[[0,[56]]]],0,[219,[[224,[151]]]],0,[[],79],[[22,225],221],[219,226],[226,4],[219,61],0,0,0,0,0,[[22,-1],22,227],[[219,-1],9,[[60,[17]]]],[[219,228],219],0,[[76,49],[[4,[22]]]],[79,22],[76,22],[[22,109],9],[[223,109],9],0,0,[22,144],[49,[[4,[144]]]],[[221,29],221],0,[79,9],[223,9],[22,49],[[22,49],[[4,[76]]]],[[223,[125,[11]]],[[4,[[132,[131]]]]]],[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],0,0,[[-1,[94,[-2]]],[[10,[[94,[-2]]]]],[],222],[[-1,90],[[10,[90]]],[]],[[-1,[26,[229]]],[[10,[[26,[229]]]]],[]],[[-1,230],[[10,[230]]],[]],[[-1,98],[[10,[98]]],[]],[[-1,[26,[25]]],[[10,[[26,[25]]]]],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[22,19,225],19],[[221,19],19],[[221,29],221],0,[[221,29],221],0,[[22,225],221],[220,[[4,[219]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[29,225],0,[219,[[9,[[12,[[9,[151,98]]]],[12,[219]]]]]],[[[14,[219]]],[[12,[219]]]],[[[14,[219]],97,65],66],[219,[[9,[[12,[17]],[12,[219]]]]]],0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,9],[61,9],[61,9],[61,9],[[[231,[-1]],-2],9,[127,128,159],15],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[[231,[-1]],-1,[232,[90]]],233,[127,128,159]],[[35,90,90,29],233],[[55,90,29],233],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],[[231,[-1]]],[128,127]],0,0,0,[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[234,[232,[17]]],19],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[],[[0,[15]]]],[[],[[0,[15]]]],[[],[[0,[56]]]],[[],[[9,[55,233]]]],[[],[[0,[15]]]],[[],[[0,[56]]]],[[],[[0,[56]]]],0,0,0,0,[[],[[0,[56]]]],[[],[[0,[56]]]],[[],[[0,[56]]]],0,0,0,0,0,[[23,199],9],[[23,201,19],9],[[23,199,19],9],[[23,22,59,32,19],[[10,[9,83]]]],0,0,0,[[23,96,19],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[23,1,22,230,235,32],[[10,[19,83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[23,22,59,74,34],[[10,[9,83]]]],[23,23],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,[[],23],[81,97],[81,97],[81,97],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[23,1,22,32,176,8],[[10,[9,83]]]],[61,9],[61,9],[61,9],[61,9],[61,9],[[236,237],23],[[74,22,237],23],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[236,97,65],66],[[236,65],66],[[74,65],66],[[74,97,65],66],[[23,65],66],[[23,97,65],66],[[23,22,59,32],[[10,[9,83]]]],[[238,90],90],[[238,19],19],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[238,19],19],[[23,96],19],[[],61],[[],61],[[],61],[[],61],[[],61],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[236,73],74],[[23,144],[[10,[236,83]]]],[238,[[9,[[78,[239]],[12,[17]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[236,23],[[10,[29,83]]]],[[236,90,90],90],[[236,39,39],39],[[236,17,17,98,[12,[98]]],17],[[236,19,19],19],0,[[23,1,22,32],[[10,[19,83]]]],[[23,1,22,32],[[10,[19,83]]]],[[144,23],[[10,[236,83]]]],[[],238],[237,23],[[144,90],90],[[144,39],39],[[144,19],19],0,0,0,[[23,22,59,32],[[10,[9,83]]]],[[23,109],9],[74,144],0,0,[-1,-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[-1,[94,[-2]]],[[10,[[94,[-2]]]]],[],222],[[-1,90],[[10,[90]]],[]],[[-1,[26,[229]]],[[10,[[26,[229]]]]],[]],[[-1,230],[[10,[230]]],[]],[[-1,98],[[10,[98]]],[]],[[-1,[26,[25]]],[[10,[[26,[25]]]]],[]],[[240,-1],[[10,[240]]],241],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[23,22,32,29],9],[[23,1,22,32,8],[[10,[9,83]]]],[[23,22,29],9],[[236,96,19],9],[[23,96,19],9],0,[[240,-1],[[242,[9]]],243],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,88,[]],0,[[244,19],19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[245,96],9],[[246,96],9],0,[247,247],[248,248],[249,249],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],[[-1,-2],-3,56,57,[]],0,0,0,[[],247],[81,97],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[245,19],[[10,[19,83]]]],[61,-1,[]],[61,-1,[]],[[250,19],19],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[61,-1,[]],[[1,22,213,[14,[39]],176,251],[[10,[[12,[19]],83]]]],[[245,19,176],[[10,[19,83]]]],[[1,22,213,176,[14,[39]],251],[[10,[[12,[19]],83]]]],[[1,213,[14,[39]],251],[[10,[[12,[19]],83]]]],[[-1,213,[14,[39]],251],[[10,[[12,[19]]]]],[]],[[252,213,[14,[39]],251],[[10,[[12,[19]]]]]],[[253,213,[14,[39]],251],[[10,[[12,[19]],254]]]],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[61,9],[[249,249],29],[[-1,88],29,[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[-1,-2],29,[],[]],[[245,19,177],[[10,[19,83]]]],[[250,19,177],19],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[[-1,63],[[64,[-2]]],[],[]],[247,[[12,[[9,[96,249,19]]]]]],[[247,-1],9,204],[[247,65],66],[[247,97,65],66],[[249,65],66],[[249,97,65],66],[[247,22,59,19,29],[[10,[19,83]]]],[[244,22,59],[[10,[19,83]]]],[[250,[14,[19]],177],[[78,[19]]]],[[250,19],19],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[-1,-1,[]],[-1,-1,[]],[[[10,[-1]]],-1,[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],[[-1,[14,[67]],5],-2,[],[]],0,[[247,96],19],[[247,201],248],[[247,201],248],0,0,[[245,19],[[10,[9,83]]]],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[],61],[[247,201,249,19],9],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[247,[[0,[56]]]],[[247,-1],9,204],0,[-1,201,[]],0,[[247,-1],244,255],[[247,-1,-2],[[10,[244]]],255,256],[[247,1,22,-1],[[10,[244,83]]],255],0,[[1,22,-1,8],245,255],[[246,19],250],[-1,246,255],0,[246,[[4,[257]]]],[244,96],[247,[[12,[96]]]],0,0,[-1,[],[]],0,0,[[247,201],248],[246,9],[[245,247],[[10,[9,83]]]],[245,29],[[1,36],[[10,[[38,[[94,[258]]]],83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[246,96],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[[-1,81],-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[[247,-1],[[10,[9,-2]]],204,[]],[[-1,[94,[-2]]],[[10,[[94,[-2]]]]],[],222],[[-1,90],[[10,[90]]],[]],[[-1,[26,[229]]],[[10,[[26,[229]]]]],[]],[[-1,230],[[10,[230]]],[]],[[-1,98],[[10,[98]]],[]],[[245,19],[[10,[19,83]]]],[[-1,[26,[25]]],[[10,[[26,[25]]]]],[]],[[247,-1],[[10,[247]]],241],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],0,0,[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[-1,82,[]],[[244,22,29],9],[[245,19],[[10,[19,83]]]],[[247,1,22,-1,8],[[10,[9,83]]],255],[[245,19,19],201],[[-1,19],19,[]],[[252,19],19],[[253,19],19],[[245,19],19],[[245,19],19],[[244,19],19],[[247,246,19],9],[[247,-1],[[242,[9]]],243],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]]],"c":[],"p":[[3,"GlobalEnv",3231],[3,"Span",3232],[3,"ESpan",3233],[4,"Option",3234],[3,"ErrorGuaranteed",3235],[3,"QueryCache",3236],[3,"LocalDefId",3237],[3,"CheckerConfig",20],[15,"tuple"],[4,"Result",3238],[3,"Tag",280],[3,"Vec",3239],[3,"Arena",3240],[15,"slice"],[8,"IntoIterator",3241],[3,"Arena",3242],[6,"Expr",3233],[4,"IntTy",3243],[6,"Ty",3244],[4,"UintTy",3243],[3,"Checker",20],[3,"RefineCtxt",2293],[3,"TypeEnv",2759],[4,"Operand",3245],[3,"TyS",3244],[3,"Interned",3246],[3,"CheckerError",225],[8,"Mode",20],[15,"bool"],[4,"AssertKind",3245],[4,"Guard",20],[3,"Place",3245],[3,"SourceInfo",3247],[3,"BasicBlock",3247],[4,"BinOp",3245],[3,"DefId",3237],[6,"PolyFnSig",3244],[3,"EarlyBinder",3244],[4,"GenericArg",3244],[4,"CastKind",3245],[3,"Ty",3248],[3,"Obligations",280],[4,"Constant",3245],[4,"GhostStatement",1490],[4,"Point",1490],[3,"ShapeMode",20],[3,"RefineMode",20],[3,"SwitchTargets",3249],[3,"Snapshot",2293],[3,"FnTraitPredicate",3244],[3,"GeneratorObligPredicate",3244],[4,"Rvalue",3245],[3,"Statement",3245],[3,"Terminator",3245],[4,"UnOp",3249],[8,"Iterator",3250],[8,"FnOnce",3251],[3,"InferCtxt",3252],[3,"ConstrGen",280],[8,"Into",3253],[15,"usize"],[3,"Dominators",3254],[15,"str"],[3,"RequestFilterDataProvider",3255],[3,"Formatter",3256],[6,"Result",3256],[3,"QueryInfo",3257],[3,"GhostStatements",1490],[3,"Body",3245],[3,"FnSig",3244],[15,"u64"],[3,"ShapeResult",20],[3,"KVarStore",747],[3,"BasicBlockEnv",2759],[6,"FxHashMap",3258],[3,"RefineSubtree",2293],[3,"UnordMap",3259],[6,"List",3246],[3,"RefineTree",2293],[3,"IndexVec",3260],[3,"TyCtxt",3261],[3,"TypeId",3262],[4,"CheckerErrKind",225],[4,"QueryErr",3263],[3,"UnsolvedEvar",3264],[3,"Handler",3265],[3,"DiagnosticBuilder",3266],[8,"Any",3262],[3,"InferCtxt",280],[4,"BaseTy",3244],[4,"Constraint",3244],[6,"PolyVariant",3244],[3,"FnOutput",3244],[3,"Binder",3244],[4,"ConstrReason",280],[3,"Path",3233],[3,"PPrintCx",3267],[4,"Sort",3244],[4,"KVarEncoding",747],[8,"KVarGen",280],[4,"InferMode",3268],[4,"HoleKind",3233],[4,"Variance",3269],[8,"Hasher",3270],[4,"TupleTree",3244],[3,"Clause",3244],[6,"GenericArgs",3244],[3,"AliasTy",3244],[3,"EVarSol",3264],[3,"ConditionSpanNote",487],[3,"Diagnostic",3271],[8,"Fn",3251],[3,"CallSpanNote",487],[3,"RefineError",487],[3,"GotoError",487],[8,"EmissionGuarantee",3266],[3,"AssignError",487],[3,"DivError",487],[3,"RemError",487],[3,"AssertError",487],[3,"FoldError",487],[3,"OverflowError",487],[3,"UnknownError",487],[3,"TagIdx",747],[3,"FixpointCtxt",747],[3,"ExprCtxt",747],[8,"Hash",3270],[8,"Eq",3272],[8,"Copy",3273],[15,"u32"],[3,"FixpointTypes",1306],[4,"Constraint",3274],[3,"GlobalVar",1088],[4,"Constant",3274],[6,"QueryResult",3263],[3,"KVarDecl",747],[4,"Ordering",3272],[8,"Decoder",3275],[8,"Encoder",3275],[4,"Key",747],[4,"Expr",3274],[3,"ConstInfo",747],[6,"FxIndexMap",3276],[3,"Scope",2293],[3,"Env",747],[3,"LocalVar",1088],[3,"PolyFuncSort",3244],[3,"PolyFuncSort",1306],[4,"Func",3274],[3,"KVid",3233],[3,"Name",3233],[3,"DebruijnIndex",3269],[4,"Sort",1306],[3,"KVar",3233],[4,"Pred",3274],[3,"FixpointKVar",747],[3,"Qualifier",3244],[3,"Qualifier",3274],[8,"Debug",3256],[3,"String",3277],[4,"Var",3233],[3,"KVid",1088],[4,"Var",1088],[4,"SortCtor",1306],[4,"Proj",1306],[3,"Error",3256],[3,"StatementsAt",1490],[6,"Result",3278],[8,"Write",3279],[3,"FoldUnfoldAnalysis",1614],[3,"Env",1614],[8,"Mode",1614],[4,"PlaceNode",1614],[3,"AdtDef",3248],[6,"GenericArgs",3248],[3,"VariantIdx",3280],[3,"FieldIdx",3280],[4,"ProjResult",1614],[3,"Infer",1614],[3,"Elaboration",1614],[4,"ProjKind",1614],[3,"PlaceIndex",1822],[3,"ValueIndex",1822],[3,"Body",3247],[3,"Map",1822],[3,"PointsToAnalysis",1822],[4,"CallReturnPlaces",3281],[3,"Statement",3282],[3,"Location",3247],[4,"Operand",3249],[8,"SwitchIntEdgeEffects",3283],[3,"Terminator",3281],[4,"TerminatorEdges",3281],[3,"State",1822],[3,"PlaceRef",3282],[4,"PlaceOrValue",1822],[4,"StateData",1822],[3,"IndexSlice",3284],[3,"Local",3247],[3,"BitSet",3285],[4,"Loc",3233],[4,"FlatSet",3286],[3,"PlaceInfo",1822],[8,"FnMut",3251],[3,"Place",3249],[4,"Rvalue",3249],[3,"CollectPointerToBorrows",1822],[3,"Children",1822],[3,"Ty",3287],[3,"VecDeque",3288],[3,"Results",3289],[3,"BasicBlockData",3247],[3,"AdtDef",3244],[3,"Invariant",3244],[3,"Expr",3268],[3,"Invalid",2210],[3,"Item",2233],[3,"WorkQueue",2233],[3,"NodePtr",2293],[3,"WeakNodePtr",2293],[3,"Unpacker",2293],[8,"TypeFoldable",3290],[3,"Node",2293],[3,"IndexGen",3291],[4,"AssumeInvariants",2293],[3,"ParentsIter",2293],[8,"ToString",3277],[4,"NodeKind",2293],[3,"ExprS",3233],[4,"Region",3248],[3,"SigTable",2645],[15,"array"],[3,"Sig",2645],[4,"Output",2645],[4,"Mutability",3243],[3,"BasicBlockEnvShape",2759],[6,"LocalDecls",3245],[3,"Generalizer",2759],[4,"BoundVariableKind",3244],[3,"BasicBlockEnvData",2759],[8,"FallibleTypeFolder",3290],[4,"ControlFlow",3292],[8,"TypeVisitor",3290],[3,"LookupResult",2931],[3,"Unfolder",2931],[3,"Cursor",2931],[3,"PlacesTree",2931],[3,"Binding",2931],[4,"LocKind",2931],[3,"Updater",2931],[3,"Index",3244],[3,"Unfold",2931],[3,"NoUnfold",2931],[15,"never"],[8,"LookupKey",2931],[8,"LookupMode",2931],[4,"PlaceElem",3245],[3,"VariantSig",3244],[8,"ResultExt",225],[6,"Bindings",747],[6,"PredSpans",747],[6,"ConstMap",747],[6,"KVidMap",747],[6,"Pred",1306],[6,"Expr",1306],[6,"Constraint",1306],[6,"Func",1306],[6,"Qualifier",1306],[6,"KVar",1306],[6,"Task",1306],[6,"ConstInfo",1306],[6,"LocationMap",1490],[6,"EdgeMap",1490],[6,"Results",1822],[13,"Yes",2640],[4,"Pre",2645],[6,"E",2741],[6,"E",2752],[6,"CheckerResult",2931]],"b":[[250,"impl-From%3CQueryErr%3E-for-CheckerErrKind"],[252,"impl-From%3CUnsolvedEvar%3E-for-CheckerErrKind"],[373,"impl-Debug-for-Tag"],[374,"impl-Pretty-for-Tag"],[897,"impl-Display-for-TagIdx"],[898,"impl-Debug-for-TagIdx"],[914,"impl-From%3Cu32%3E-for-TagIdx"],[916,"impl-From%3Cusize%3E-for-TagIdx"],[950,"impl-Idx-for-TagIdx"],[951,"impl-TagIdx"],[1204,"impl-Debug-for-KVid"],[1205,"impl-Display-for-KVid"],[1208,"impl-Display-for-Var"],[1209,"impl-Debug-for-Var"],[1215,"impl-From%3Cusize%3E-for-KVid"],[1216,"impl-From%3Cu32%3E-for-KVid"],[1217,"impl-From%3Cusize%3E-for-LocalVar"],[1219,"impl-From%3Cu32%3E-for-LocalVar"],[1222,"impl-From%3Cu32%3E-for-GlobalVar"],[1224,"impl-From%3Cusize%3E-for-GlobalVar"],[1225,"impl-From%3CGlobalVar%3E-for-Var"],[1226,"impl-From%3CLocalVar%3E-for-Var"],[1246,"impl-Idx-for-KVid"],[1247,"impl-KVid"],[1248,"impl-Idx-for-LocalVar"],[1249,"impl-LocalVar"],[1250,"impl-Idx-for-GlobalVar"],[1251,"impl-GlobalVar"],[2029,"impl-From%3Cu32%3E-for-PlaceIndex"],[2031,"impl-From%3Cusize%3E-for-PlaceIndex"],[2032,"impl-From%3Cusize%3E-for-ValueIndex"],[2035,"impl-From%3Cu32%3E-for-ValueIndex"],[2067,"impl-Idx-for-PlaceIndex"],[2068,"impl-PlaceIndex"],[2069,"impl-Idx-for-ValueIndex"],[2070,"impl-ValueIndex"],[2425,"impl-Debug-for-RefineTree"],[2426,"impl-Pretty-for-RefineTree"],[2427,"impl-Pretty-for-RefineSubtree%3C\'_%3E"],[2428,"impl-Debug-for-RefineSubtree%3C\'_%3E"],[2429,"impl-Debug-for-RefineCtxt%3C\'_%3E"],[2430,"impl-Pretty-for-RefineCtxt%3C\'_%3E"],[2431,"impl-Pretty-for-Scope"],[2432,"impl-Debug-for-Scope"],[2820,"impl-Pretty-for-BasicBlockEnvShape"],[2821,"impl-Debug-for-BasicBlockEnvShape"],[2822,"impl-Debug-for-BasicBlockEnv"],[2823,"impl-Pretty-for-BasicBlockEnv"],[2824,"impl-Debug-for-TypeEnv%3C\'_%3E"],[2825,"impl-Pretty-for-TypeEnv%3C\'_%3E"],[3052,"impl-Debug-for-PlacesTree"],[3053,"impl-Pretty-for-PlacesTree"],[3054,"impl-Debug-for-LocKind"],[3055,"impl-Pretty-for-LocKind"]]},\ "flux_syntax":{"doc":"","t":"NNNNGNDDEGDNNNNNNELLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLMALLLLLMMMOLLLLLLLLLMMALLLLLLLLLLLLLLLOMMMMMMMCCCCCCCCCIFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAAAAAKDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDRRDERFFFFFMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNENNNNNNNNNNNNNNNNDENNNNNNNNNDNNNNNNNNNNNNDENNDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDENNNLMLLLLLLLLLLLLLLLLLLLLMLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLMLLLLLMLLLLLLLLLLLLLLLLLLLLLLMMLLLLMMLMMMMMMMMMMLLLLMLLLLLLLLLLLLLLLLLLLLLNNNNNENDENNNNEDEENNENNNNNNNNDNNENNNNDNNNDNENEDNDNNNEGDEDNDNNNNNNDNNENDENNNNNENNNDNNNDNNNNDDDNNNEDDNEDNNNNNDNDNDNNDENNNENDDDNLMMMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLMMMMMMMMMMMMMLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMAMMMMMMMMMMMMMILLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFFFFFFFFFFFFFFFFFFFFF","n":["Err","ExtraToken","IntTooLarge","InvalidToken","LalrpopError","Ok","ParseCtxt","ParseError","ParseErrorKind","ParseResult","ParseSess","UnexpectedEof","UnexpectedToken","UnexpectedToken","UnrecognizedEof","UnrecognizedToken","User","UserParseError","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","ctx","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","fmt","from","from","from","from","from","grammar","init","init","init","init","init","into","into","into","into","into","into_error","kind","lexer","map_err","map_span","new","next_node_id","next_node_id","next_node_id","offset","parent","parse","parse_expr","parse_flux_item","parse_fn_sig","parse_generics","parse_qual_names","parse_refined_by","parse_type","parse_type_alias","parse_variant","sess","span","surface","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","walk_list","error","expected","expected","location","location","token","token","ExprParser","FnSigParser","GenericsParser","ItemsParser","QualNamesParser","RefinedByParser","TyAliasParser","TyParser","VariantParser","__ToTriple","__action0","__action1","__action10","__action100","__action101","__action102","__action103","__action104","__action105","__action106","__action107","__action108","__action109","__action11","__action110","__action111","__action112","__action113","__action114","__action115","__action116","__action117","__action118","__action119","__action12","__action120","__action121","__action122","__action123","__action124","__action125","__action126","__action127","__action128","__action129","__action13","__action130","__action131","__action132","__action133","__action134","__action135","__action136","__action137","__action138","__action139","__action14","__action140","__action141","__action142","__action143","__action144","__action145","__action146","__action147","__action148","__action149","__action15","__action150","__action151","__action152","__action153","__action154","__action155","__action156","__action157","__action158","__action159","__action16","__action160","__action161","__action162","__action163","__action164","__action165","__action166","__action167","__action168","__action169","__action17","__action170","__action171","__action172","__action173","__action174","__action175","__action176","__action177","__action178","__action179","__action18","__action180","__action181","__action182","__action183","__action184","__action185","__action186","__action187","__action188","__action189","__action19","__action190","__action191","__action192","__action193","__action194","__action195","__action196","__action197","__action198","__action199","__action2","__action20","__action200","__action201","__action202","__action203","__action204","__action205","__action206","__action207","__action208","__action209","__action21","__action210","__action211","__action212","__action213","__action214","__action215","__action216","__action217","__action218","__action219","__action22","__action220","__action221","__action222","__action223","__action224","__action225","__action226","__action227","__action228","__action229","__action23","__action230","__action231","__action232","__action233","__action234","__action235","__action236","__action237","__action238","__action239","__action24","__action240","__action241","__action242","__action243","__action244","__action245","__action246","__action247","__action248","__action249","__action25","__action250","__action251","__action252","__action253","__action254","__action255","__action256","__action257","__action258","__action259","__action26","__action260","__action261","__action262","__action263","__action264","__action265","__action266","__action267","__action268","__action269","__action27","__action270","__action271","__action272","__action273","__action274","__action275","__action276","__action277","__action278","__action279","__action28","__action280","__action281","__action282","__action283","__action284","__action285","__action286","__action287","__action288","__action289","__action29","__action290","__action291","__action292","__action293","__action294","__action295","__action296","__action297","__action298","__action299","__action3","__action30","__action300","__action301","__action302","__action303","__action304","__action305","__action306","__action307","__action308","__action309","__action31","__action310","__action311","__action312","__action313","__action314","__action315","__action316","__action317","__action318","__action319","__action32","__action320","__action321","__action322","__action323","__action324","__action325","__action326","__action327","__action328","__action329","__action33","__action330","__action331","__action332","__action333","__action334","__action335","__action336","__action337","__action338","__action339","__action34","__action340","__action341","__action342","__action343","__action344","__action345","__action346","__action347","__action348","__action349","__action35","__action350","__action351","__action352","__action353","__action354","__action355","__action356","__action357","__action358","__action359","__action36","__action360","__action361","__action362","__action363","__action364","__action365","__action366","__action367","__action368","__action369","__action37","__action370","__action371","__action372","__action373","__action374","__action375","__action376","__action377","__action378","__action379","__action38","__action380","__action381","__action382","__action383","__action384","__action385","__action386","__action387","__action388","__action389","__action39","__action390","__action391","__action392","__action393","__action394","__action395","__action396","__action397","__action398","__action399","__action4","__action40","__action400","__action401","__action402","__action403","__action404","__action405","__action406","__action407","__action408","__action409","__action41","__action410","__action411","__action412","__action413","__action414","__action415","__action416","__action417","__action418","__action419","__action42","__action420","__action421","__action422","__action423","__action424","__action425","__action426","__action427","__action428","__action429","__action43","__action430","__action431","__action432","__action433","__action434","__action435","__action436","__action437","__action438","__action439","__action44","__action440","__action441","__action442","__action443","__action444","__action445","__action446","__action447","__action448","__action449","__action45","__action450","__action451","__action452","__action453","__action454","__action455","__action456","__action457","__action458","__action459","__action46","__action460","__action461","__action462","__action463","__action464","__action465","__action466","__action467","__action468","__action469","__action47","__action470","__action471","__action472","__action473","__action474","__action475","__action476","__action477","__action478","__action479","__action48","__action480","__action481","__action482","__action483","__action484","__action485","__action486","__action487","__action488","__action489","__action49","__action490","__action491","__action492","__action493","__action494","__action495","__action496","__action497","__action498","__action499","__action5","__action50","__action500","__action501","__action502","__action503","__action504","__action505","__action506","__action507","__action508","__action509","__action51","__action510","__action511","__action512","__action513","__action514","__action515","__action516","__action517","__action518","__action519","__action52","__action520","__action521","__action522","__action523","__action524","__action525","__action526","__action527","__action528","__action529","__action53","__action530","__action531","__action532","__action533","__action534","__action535","__action536","__action537","__action538","__action539","__action54","__action540","__action541","__action542","__action543","__action544","__action545","__action546","__action547","__action548","__action549","__action55","__action550","__action551","__action552","__action553","__action554","__action555","__action556","__action557","__action558","__action559","__action56","__action560","__action561","__action562","__action563","__action564","__action565","__action566","__action567","__action568","__action569","__action57","__action570","__action571","__action572","__action573","__action574","__action575","__action576","__action577","__action578","__action579","__action58","__action580","__action581","__action582","__action583","__action584","__action585","__action586","__action587","__action588","__action589","__action59","__action590","__action591","__action592","__action593","__action594","__action595","__action596","__action597","__action598","__action599","__action6","__action60","__action600","__action601","__action602","__action603","__action604","__action605","__action606","__action607","__action608","__action609","__action61","__action610","__action611","__action612","__action613","__action614","__action615","__action616","__action617","__action618","__action619","__action62","__action620","__action621","__action622","__action623","__action624","__action625","__action626","__action627","__action628","__action629","__action63","__action630","__action631","__action632","__action633","__action634","__action635","__action636","__action637","__action638","__action639","__action64","__action640","__action641","__action642","__action643","__action644","__action645","__action646","__action647","__action648","__action649","__action65","__action650","__action651","__action652","__action653","__action654","__action655","__action656","__action657","__action658","__action659","__action66","__action660","__action661","__action662","__action663","__action664","__action665","__action666","__action667","__action67","__action68","__action69","__action7","__action70","__action71","__action72","__action73","__action74","__action75","__action76","__action77","__action78","__action79","__action8","__action80","__action81","__action82","__action83","__action84","__action85","__action86","__action87","__action88","__action89","__action9","__action90","__action91","__action92","__action93","__action94","__action95","__action96","__action97","__action98","__action99","__parse__Expr","__parse__FnSig","__parse__Generics","__parse__Items","__parse__QualNames","__parse__RefinedBy","__parse__Ty","__parse__TyAlias","__parse__Variant","to_triple","ExprParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce385","__reduce386","__reduce387","__reduce388","__reduce389","__reduce39","__reduce390","__reduce391","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","FnSigParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce386","__reduce387","__reduce388","__reduce389","__reduce39","__reduce390","__reduce391","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","GenericsParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce385","__reduce387","__reduce388","__reduce389","__reduce39","__reduce390","__reduce391","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","ItemsParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce385","__reduce386","__reduce388","__reduce389","__reduce39","__reduce390","__reduce391","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","QualNamesParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce385","__reduce386","__reduce387","__reduce389","__reduce39","__reduce390","__reduce391","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","RefinedByParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce385","__reduce386","__reduce387","__reduce388","__reduce39","__reduce390","__reduce391","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","TyParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce385","__reduce386","__reduce387","__reduce388","__reduce389","__reduce39","__reduce391","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","TyAliasParser","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce385","__reduce386","__reduce387","__reduce388","__reduce389","__reduce39","__reduce390","__reduce392","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","Variant0","Variant1","Variant10","Variant11","Variant12","Variant13","Variant14","Variant15","Variant16","Variant17","Variant18","Variant19","Variant2","Variant20","Variant21","Variant22","Variant23","Variant24","Variant25","Variant26","Variant27","Variant28","Variant29","Variant3","Variant30","Variant31","Variant32","Variant33","Variant34","Variant35","Variant36","Variant37","Variant38","Variant39","Variant4","Variant40","Variant41","Variant42","Variant43","Variant44","Variant45","Variant46","Variant47","Variant48","Variant49","Variant5","Variant50","Variant51","Variant52","Variant53","Variant54","Variant55","Variant56","Variant57","Variant58","Variant59","Variant6","Variant60","Variant61","Variant62","Variant63","Variant64","Variant65","Variant66","Variant67","Variant68","Variant69","Variant7","Variant70","Variant71","Variant72","Variant73","Variant74","Variant75","Variant76","Variant77","Variant78","Variant79","Variant8","Variant80","Variant81","Variant82","Variant83","Variant84","Variant9","VariantParser","__ACTION","__EOF_ACTION","__StateMachine","__Symbol","__TERMINAL","__accepts","__action","__expected_tokens","__expected_tokens_from_states","__goto","__phantom","__pop_Variant0","__pop_Variant1","__pop_Variant10","__pop_Variant11","__pop_Variant12","__pop_Variant13","__pop_Variant14","__pop_Variant15","__pop_Variant16","__pop_Variant17","__pop_Variant18","__pop_Variant19","__pop_Variant2","__pop_Variant20","__pop_Variant21","__pop_Variant22","__pop_Variant23","__pop_Variant24","__pop_Variant25","__pop_Variant26","__pop_Variant27","__pop_Variant28","__pop_Variant29","__pop_Variant3","__pop_Variant30","__pop_Variant31","__pop_Variant32","__pop_Variant33","__pop_Variant34","__pop_Variant35","__pop_Variant36","__pop_Variant37","__pop_Variant38","__pop_Variant39","__pop_Variant4","__pop_Variant40","__pop_Variant41","__pop_Variant42","__pop_Variant43","__pop_Variant44","__pop_Variant45","__pop_Variant46","__pop_Variant47","__pop_Variant48","__pop_Variant49","__pop_Variant5","__pop_Variant50","__pop_Variant51","__pop_Variant52","__pop_Variant53","__pop_Variant54","__pop_Variant55","__pop_Variant56","__pop_Variant57","__pop_Variant58","__pop_Variant59","__pop_Variant6","__pop_Variant60","__pop_Variant61","__pop_Variant62","__pop_Variant63","__pop_Variant64","__pop_Variant65","__pop_Variant66","__pop_Variant67","__pop_Variant68","__pop_Variant69","__pop_Variant7","__pop_Variant70","__pop_Variant71","__pop_Variant72","__pop_Variant73","__pop_Variant74","__pop_Variant75","__pop_Variant76","__pop_Variant77","__pop_Variant78","__pop_Variant79","__pop_Variant8","__pop_Variant80","__pop_Variant81","__pop_Variant82","__pop_Variant83","__pop_Variant84","__pop_Variant9","__reduce","__reduce0","__reduce1","__reduce10","__reduce100","__reduce101","__reduce102","__reduce103","__reduce104","__reduce105","__reduce106","__reduce107","__reduce108","__reduce109","__reduce11","__reduce111","__reduce112","__reduce113","__reduce114","__reduce115","__reduce116","__reduce117","__reduce118","__reduce119","__reduce12","__reduce120","__reduce121","__reduce122","__reduce123","__reduce124","__reduce125","__reduce126","__reduce127","__reduce128","__reduce13","__reduce130","__reduce131","__reduce132","__reduce133","__reduce134","__reduce135","__reduce136","__reduce137","__reduce138","__reduce139","__reduce14","__reduce140","__reduce141","__reduce142","__reduce143","__reduce144","__reduce145","__reduce146","__reduce147","__reduce148","__reduce149","__reduce15","__reduce150","__reduce151","__reduce152","__reduce153","__reduce154","__reduce155","__reduce156","__reduce157","__reduce158","__reduce159","__reduce16","__reduce160","__reduce161","__reduce162","__reduce163","__reduce164","__reduce165","__reduce166","__reduce167","__reduce168","__reduce169","__reduce17","__reduce170","__reduce171","__reduce172","__reduce173","__reduce174","__reduce175","__reduce176","__reduce177","__reduce178","__reduce179","__reduce18","__reduce180","__reduce181","__reduce182","__reduce183","__reduce184","__reduce185","__reduce186","__reduce187","__reduce188","__reduce189","__reduce19","__reduce190","__reduce191","__reduce192","__reduce193","__reduce194","__reduce195","__reduce196","__reduce197","__reduce198","__reduce199","__reduce2","__reduce20","__reduce200","__reduce201","__reduce202","__reduce203","__reduce204","__reduce205","__reduce206","__reduce207","__reduce208","__reduce209","__reduce21","__reduce211","__reduce212","__reduce213","__reduce214","__reduce215","__reduce216","__reduce217","__reduce218","__reduce219","__reduce22","__reduce220","__reduce221","__reduce222","__reduce223","__reduce224","__reduce225","__reduce226","__reduce227","__reduce228","__reduce229","__reduce23","__reduce230","__reduce231","__reduce232","__reduce233","__reduce234","__reduce235","__reduce236","__reduce237","__reduce238","__reduce239","__reduce24","__reduce240","__reduce241","__reduce242","__reduce243","__reduce244","__reduce245","__reduce246","__reduce247","__reduce248","__reduce249","__reduce25","__reduce250","__reduce251","__reduce252","__reduce253","__reduce254","__reduce255","__reduce256","__reduce257","__reduce258","__reduce259","__reduce26","__reduce260","__reduce261","__reduce262","__reduce263","__reduce264","__reduce265","__reduce268","__reduce269","__reduce27","__reduce270","__reduce271","__reduce272","__reduce273","__reduce274","__reduce275","__reduce276","__reduce277","__reduce278","__reduce279","__reduce28","__reduce280","__reduce281","__reduce282","__reduce283","__reduce284","__reduce285","__reduce286","__reduce287","__reduce288","__reduce289","__reduce29","__reduce290","__reduce291","__reduce292","__reduce293","__reduce294","__reduce295","__reduce296","__reduce297","__reduce298","__reduce299","__reduce3","__reduce30","__reduce300","__reduce301","__reduce302","__reduce303","__reduce304","__reduce305","__reduce306","__reduce307","__reduce308","__reduce309","__reduce31","__reduce310","__reduce311","__reduce312","__reduce313","__reduce314","__reduce315","__reduce316","__reduce317","__reduce318","__reduce319","__reduce32","__reduce320","__reduce321","__reduce322","__reduce323","__reduce324","__reduce325","__reduce326","__reduce327","__reduce328","__reduce329","__reduce33","__reduce330","__reduce331","__reduce332","__reduce333","__reduce334","__reduce335","__reduce336","__reduce337","__reduce338","__reduce339","__reduce34","__reduce340","__reduce341","__reduce342","__reduce343","__reduce344","__reduce345","__reduce346","__reduce347","__reduce348","__reduce349","__reduce35","__reduce350","__reduce351","__reduce352","__reduce353","__reduce354","__reduce355","__reduce356","__reduce357","__reduce358","__reduce359","__reduce36","__reduce360","__reduce361","__reduce362","__reduce363","__reduce364","__reduce365","__reduce366","__reduce367","__reduce368","__reduce37","__reduce370","__reduce371","__reduce372","__reduce373","__reduce374","__reduce375","__reduce376","__reduce377","__reduce378","__reduce379","__reduce38","__reduce380","__reduce381","__reduce382","__reduce383","__reduce384","__reduce385","__reduce386","__reduce387","__reduce388","__reduce389","__reduce39","__reduce390","__reduce391","__reduce4","__reduce40","__reduce41","__reduce42","__reduce43","__reduce44","__reduce45","__reduce46","__reduce47","__reduce48","__reduce49","__reduce5","__reduce50","__reduce51","__reduce52","__reduce53","__reduce54","__reduce55","__reduce56","__reduce57","__reduce58","__reduce59","__reduce6","__reduce60","__reduce61","__reduce62","__reduce63","__reduce64","__reduce65","__reduce66","__reduce67","__reduce68","__reduce69","__reduce7","__reduce70","__reduce71","__reduce72","__reduce73","__reduce74","__reduce75","__reduce76","__reduce77","__reduce78","__reduce79","__reduce8","__reduce80","__reduce81","__reduce82","__reduce83","__reduce84","__reduce85","__reduce86","__reduce87","__reduce88","__reduce89","__reduce9","__reduce90","__reduce91","__reduce92","__reduce93","__reduce94","__reduce95","__reduce96","__reduce97","__reduce98","__reduce99","__simulate_reduce","__symbol_type_mismatch","__token_to_integer","__token_to_symbol","_priv","action","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","collect_and_apply","collect_and_apply","collect_and_apply","cx","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eof_action","error_action","error_recovery_symbol","expected_tokens","expected_tokens_from_states","from","from","from","goto","init","init","init","into","into","into","new","parse","reduce","simulate_reduce","start_location","start_state","token_to_index","token_to_symbol","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uses_error_recovery","And","And","AndAnd","As","Async","At","BinOpToken","BitVec","Bool","Brace","Bracket","Byte","ByteStr","ByteStrRaw","CStr","CStrRaw","Caret","Caret","Char","Check","CloseDelim","Colon","Comma","Cursor","Delimiter","Dot","Else","Ensures","Eq","EqEq","Err","FatArrow","Float","Fn","Frame","Ge","Gt","GtFollowedByGt","Ident","If","Iff","Ignore","Impl","Integer","Invalid","Invisible","Le","Lit","LitKind","Literal","Local","Location","Lt","Minus","Minus","ModSep","Mut","Ne","Not","Opaque","OpenDelim","Or","OrOr","Parenthesis","Percent","Percent","Plus","Plus","Pound","Qualifier","RArrow","Ref","Refine","Requires","Semi","Shl","Shr","Slash","Slash","Sort","Star","Star","Str","StrRaw","Strg","Symbols","Token","Trusted","Type","Where","advance","bitvec","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","clone_into","clone_into","close","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","cursor","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","ensures","equivalent","equivalent","equivalent","fmt","fmt","fn_","from","from","from","from","from","from","from","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_iter","kind","local","map_token","multiunzip","new","next","offset","opaque","push_token","qualifier","ref_","refine","requires","sort","stack","strg","suffix","symbol","symbs","to_owned","to_owned","to_owned","to_owned","tokens","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","Abs","Add","And","App","App","Arg","Array","ArrayLen","Async","At","Base","Base","Base","BaseSort","BaseTy","BaseTyKind","BinOp","BinaryOp","Bind","BindKind","BitVec","Bool","Byte","ByteStr","ByteStrRaw","CStr","CStrRaw","Char","ConstSig","Constr","Constr","Constraint","Constraint","Default","Div","Dot","EnumDef","Eq","Err","Exists","Expr","Expr","ExprKind","Float","FnRetTy","FnSig","Func","FuncDef","FuncDef","Ge","GeneralExists","GenericArg","GenericBounds","GenericParam","GenericParamKind","Generics","Gt","Ident","Ident","IfThenElse","Iff","Imp","ImplTrait","Indexed","Indices","Infer","Integer","Item","Le","Lit","LitKind","Literal","Lt","Mod","Mul","Mut","Mutability","Ne","Neg","No","NodeId","Not","Not","Or","Path","Path","Pound","Pred","QPath","QPathExpr","QualNames","Qualifier","Qualifier","Ref","Refine","RefineArg","RefineParam","RefinedBy","Slice","Sort","SortDecl","SortDecl","Spl","Str","StrRaw","StrgRef","StructDef","Sub","TraitRef","Tuple","Ty","Ty","Ty","TyAlias","TyKind","Type","Type","Type","UnOp","UnaryOp","VariantDef","VariantRet","WhereBoundPredicate","Yes","all_params","args","args","args","as_bty","as_usize","asyncness","body","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounded_ty","bounds","buf","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","collect_and_apply","compare","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","early_bound_params","ensures","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expr","fields","fields","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","generics","generics","generics","generics","global","hash","ident","index_params","indices","indices","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","invariants","invariants","is_hole","is_refined","kind","kind","kind","kind","kind","len","name","name","name","name","name","name","names","needs_resolving","needs_resolving","node_id","node_id","node_id","node_id","node_id","node_id","node_id","opaque","output","params","path","path","predicates","refine","refined_by","refined_by","refined_by","requires","ret","returns","segments","segments","sort","sort_vars","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","suffix","symbol","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","token_str","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","val","variants","visit","node_id","span","sort","inputs","output","bind","bty","bty","indices","params","pred","pred","ty","Visitor","visit_array_len","visit_async","visit_base_sort","visit_bty","visit_constraint","visit_enum_def","visit_expr","visit_fn_ret_ty","visit_fn_sig","visit_fun_arg","visit_generic_arg","visit_generic_param","visit_generics","visit_ident","visit_indices","visit_literal","visit_path","visit_qpath_expr","visit_refine_arg","visit_refine_param","visit_refined_by","visit_sort","visit_struct_def","visit_trait_ref","visit_ty","visit_variant","visit_variant_ret","visit_where_predicate","walk_base_sort","walk_bty","walk_constraint","walk_enum_def","walk_expr","walk_fn_ret_ty","walk_fn_sig","walk_fun_arg","walk_generic_arg","walk_generic_param","walk_generics","walk_indices","walk_path","walk_qpath_expr","walk_refine_arg","walk_refine_param","walk_refined_by","walk_sort","walk_struct_def","walk_trait_ref","walk_ty","walk_variant","walk_variant_ret","walk_where_predicate"],"q":[[0,"flux_syntax"],[107,"flux_syntax::LalrpopError"],[114,"flux_syntax::grammar"],[802,"flux_syntax::grammar::__parse__Expr"],[1429,"flux_syntax::grammar::__parse__FnSig"],[2056,"flux_syntax::grammar::__parse__Generics"],[2683,"flux_syntax::grammar::__parse__Items"],[3310,"flux_syntax::grammar::__parse__QualNames"],[3937,"flux_syntax::grammar::__parse__RefinedBy"],[4564,"flux_syntax::grammar::__parse__Ty"],[5191,"flux_syntax::grammar::__parse__TyAlias"],[5818,"flux_syntax::grammar::__parse__Variant"],[6445,"flux_syntax::lexer"],[6662,"flux_syntax::surface"],[7512,"flux_syntax::surface::Async"],[7514,"flux_syntax::surface::GenericParamKind"],[7515,"flux_syntax::surface::Sort"],[7517,"flux_syntax::surface::TyKind"],[7525,"flux_syntax::surface::visit"],[7578,"core::iter::traits::iterator"],[7579,"core::ops::function"],[7580,"core::fmt"],[7581,"core::fmt"],[7582,"lalrpop_util"],[7583,"rustc_ast::tokenstream"],[7584,"alloc::vec"],[7585,"core::result"],[7586,"core::any"],[7587,"rustc_span::symbol"],[7588,"core::option"],[7589,"core::marker"],[7590,"alloc::string"],[7591,"lalrpop_util::state_machine"],[7592,"lalrpop_util::state_machine"],[7593,"lalrpop_util::state_machine"],[7594,"rustc_span"],[7595,"core::cmp"],[7596,"core::hash"]],"d":["Contains the error value","Generated by the parser when it encounters additional, …","","Generated by the parser when it encounters a token (or …","","Contains the success value","","","","","","","","","Generated by the parser when it encounters an EOF it did …","Generated by the parser when it encounters a token it did …","Custom error type.","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The set of expected tokens: these names are taken from the …","The set of expected tokens: these names are taken from the …","","The end of the final token","The unexpected token of type T with a span given by the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","{ ... }","[ ... ]","","","","","","","","","","","","","","Describes how a sequence of token trees is delimited. …","","","","","","","","","","","","","","","","","","","","","Ø ... Ø An invisible delimiter, that may, for example, …","","A literal token.","","","","","","","","","","","","","","","","( ... )","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","a sort-constructor application, e.g., Set<int>","","","","","","","","A base sort, e.g., int or bool.","ty","","","","","","@n or #n, the span corresponds to the span of the …","","a bitvector sort, e.g., BitVec(32)","","","","","","","","","example a: i32{a > 0}","Constrained type: an exists without binder","","","","","","","","","B{v: r}","","","","","","","A function sort of the form (bi,...) -> bo where bi.. and …","A global function definition. It can be either an …","","","","","","","","","","","a base sort, e.g. int or bool","","","","The NodeId is used to resolve the type to a corresponding …","B[r]","","","","","","A literal token.","","","","","","","","","","","A NodeId is a unique identifier we assign to some AST …","","","","","","","A predicate that needs to hold","","","","","","Mutable or shared reference","","","","","","","","","","","","example v: &strg i32","","","","","","","A type with an optional binder, e.g, i32, x: i32 or …","","","","A type constraint on a location","","","","","","","","","","","example: i32<@n>","","","","Body of the function. If not present this definition …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","Equivalent to f(&iter.collect::<Vec<_>>()).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","example: *x: i32{v. v = n+1} or just x > 10","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Binders are not allowed at this position, but we parse …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","Whether the struct contains any path that needs to be …","Whether the enum contains any path that needs to be …","","","","","","","","","","","","","example: where I: Iterator<Item = i32{v:0<=v}>","","","","","example: requires n > 0","","example i32{v:v >= 0}","","","","","","","","","","","source span","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[19,112,6,112,0,19,0,0,0,0,0,6,14,6,112,112,112,0,11,14,10,3,6,11,14,10,3,6,11,14,10,3,6,11,3,11,14,10,3,6,11,14,10,3,6,11,14,10,3,6,6,11,14,10,3,6,0,11,14,10,3,6,11,14,10,3,6,6,10,0,11,11,11,11,3,3,11,11,0,3,3,3,3,3,3,3,3,3,11,10,0,11,14,10,3,6,11,14,10,3,6,11,14,10,3,6,0,113,114,115,116,114,115,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,64,63,64,68,63,64,68,63,64,68,64,63,64,68,63,64,68,63,64,68,64,64,64,64,64,63,64,68,64,63,64,68,63,64,68,68,68,64,64,64,64,64,64,63,64,68,63,64,68,63,64,68,64,0,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,73,72,73,74,72,73,74,72,73,74,73,72,73,74,72,73,74,72,73,74,73,73,73,73,73,72,73,74,73,72,73,74,72,73,74,74,74,73,73,73,73,73,73,72,73,74,72,73,74,72,73,74,73,0,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,76,75,76,77,75,76,77,75,76,77,76,75,76,77,75,76,77,75,76,77,76,76,76,76,76,75,76,77,76,75,76,77,75,76,77,77,77,76,76,76,76,76,76,75,76,77,75,76,77,75,76,77,76,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,79,78,79,80,78,79,80,78,79,80,79,78,79,80,78,79,80,78,79,80,79,79,79,79,79,78,79,80,79,78,79,80,78,79,80,80,80,79,79,79,79,79,79,78,79,80,78,79,80,78,79,80,79,0,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,82,81,82,83,81,82,83,81,82,83,82,81,82,83,81,82,83,81,82,83,82,82,82,82,82,81,82,83,82,81,82,83,81,82,83,83,83,82,82,82,82,82,82,81,82,83,81,82,83,81,82,83,82,0,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,85,84,85,86,84,85,86,84,85,86,85,84,85,86,84,85,86,84,85,86,85,85,85,85,85,84,85,86,85,84,85,86,84,85,86,86,86,85,85,85,85,85,85,84,85,86,84,85,86,84,85,86,85,0,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,88,87,88,89,87,88,89,87,88,89,88,87,88,89,87,88,89,87,88,89,88,88,88,88,88,87,88,89,88,87,88,89,87,88,89,89,89,88,88,88,88,88,88,87,88,89,87,88,89,87,88,89,88,0,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,91,90,91,92,90,91,92,90,91,92,91,90,91,92,90,91,92,90,91,92,91,91,91,91,91,90,91,92,91,90,91,92,90,91,92,92,92,91,91,91,91,91,91,90,91,92,90,91,92,90,91,92,91,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,94,93,94,95,93,94,95,93,94,95,94,93,94,95,93,94,95,93,94,95,94,94,94,94,94,93,94,95,94,93,94,95,93,94,95,95,95,94,94,94,94,94,94,93,94,95,93,94,95,93,94,95,94,13,119,13,13,13,13,0,13,120,121,121,120,120,120,120,120,13,119,120,13,13,13,13,0,0,13,13,13,13,13,120,13,120,13,0,13,13,13,13,13,13,13,13,120,13,121,13,0,0,13,13,0,13,13,119,13,13,13,13,13,13,119,13,121,13,119,13,119,13,13,13,13,13,13,13,119,119,13,119,13,13,119,120,120,13,0,0,13,13,13,96,122,96,122,123,13,12,119,121,96,122,123,13,12,119,121,13,12,13,12,119,121,123,96,122,123,13,12,119,121,123,12,96,122,123,13,12,119,121,96,122,123,13,12,119,121,96,122,123,13,12,119,121,122,121,121,121,13,12,122,96,122,123,13,12,119,121,96,122,123,13,12,119,121,96,122,123,13,12,119,121,96,35,122,96,96,96,96,96,122,96,122,122,122,122,122,96,122,35,35,96,13,12,119,121,96,96,122,123,13,12,119,121,96,122,123,13,12,119,121,96,122,123,13,12,119,121,40,33,33,48,101,0,53,0,0,100,103,37,53,0,0,0,0,101,40,0,48,120,120,120,120,120,120,120,0,44,53,0,41,107,33,101,0,33,120,53,0,40,0,120,0,0,37,0,20,33,53,0,0,0,0,0,33,0,48,101,33,33,53,53,0,37,120,0,33,0,0,101,33,33,33,124,0,33,34,50,0,124,34,33,0,55,100,43,101,0,0,0,20,53,103,0,0,0,55,0,0,20,103,120,120,44,0,33,0,53,0,107,44,0,0,103,43,41,0,101,0,0,0,50,25,46,47,22,26,16,22,47,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,42,42,54,16,48,50,99,100,18,101,57,33,34,16,48,50,99,100,18,101,57,33,124,34,31,120,35,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,124,25,24,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,25,22,16,16,16,16,124,124,124,31,31,31,46,104,28,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,34,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,27,104,22,51,46,16,27,25,45,52,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,104,105,51,26,32,26,56,18,35,54,49,46,47,32,39,31,24,104,105,27,104,105,28,22,26,51,104,47,23,45,108,22,51,27,104,105,22,28,22,51,57,39,47,46,23,27,28,25,106,22,42,26,56,99,52,51,18,57,31,35,35,16,48,50,99,100,18,101,57,33,124,34,31,120,35,31,35,100,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,27,16,49,20,46,47,23,32,103,27,104,105,28,45,25,24,39,37,48,106,22,43,107,50,42,108,44,26,53,56,55,99,52,40,100,51,41,18,101,57,33,124,34,31,120,35,99,105,0,125,125,126,127,127,128,129,128,129,130,128,130,130,0,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[[],3],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[4,5],[4,5],[[6,7],8],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,[[],4],[[],4],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[6,9],10],0,0,[[11,[15,[12,13,14]]],10],[[11,12,12],9],[[3,9],11],[11,16],[3,16],0,0,0,0,[[3,17,9],[[19,[18]]]],[[3,17,9],[[19,[[21,[20]]]]]],[[3,17,9],[[19,[22]]]],[[3,17,9],[[19,[23]]]],[[3,17,9],[[19,[24]]]],[[3,17,9],[[19,[25]]]],[[3,17,9],[[19,[26]]]],[[3,17,9],[[19,[27]]]],[[3,17,9],[[19,[28]]]],0,0,0,[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[11,[5,[12,23,12]]],23],[[11,[5,[12,27,12]]],27],[[11,[5,[12,31,12]]],32],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,12,12]]],[[29,[33,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,31,12]],[5,[12,12,12]]],[[29,[32,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],34],[[11,[5,[12,13,12]]],34],[[11,[5,[12,35,12]]],35],[[11,[5,[12,12,12]],[5,[12,36,12]],[5,[12,12,12]]],31],[[11,[5,[12,[21,[18]],12]]],[[21,[18]]]],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,37,12]]],32],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,[38,[[21,[39]]]],12]],[5,[12,[38,[[21,[39]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,[21,[40]],12]]],[[38,[[21,[40]]]]]],[[11,12,12],[[38,[[21,[40]]]]]],[[11,[5,[12,[21,[41]],12]]],[[38,[[21,[41]]]]]],[[11,12,12],[[38,[[21,[41]]]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,[21,[40]],12]]],[[21,[40]]]],[[11,[5,[12,12,12]],[5,[12,[21,[39]],12]],[5,[12,12,12]]],25],[[11,[5,[12,[21,[41]],12]]],[[21,[41]]]],[[11,[5,[12,18,12]]],[[38,[18]]]],[[11,12,12],[[38,[18]]]],[[11,[5,[12,13,12]],[5,[12,18,12]]],18],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,37,12]]],39],[[11,[5,[12,31,12]]],39],[[11,[5,[12,[21,[42]],12]]],[[21,[42]]]],[[11,[5,[12,[21,[43]],12]]],[[21,[43]]]],[[11,[5,[12,[21,[44]],12]]],[[21,[44]]]],[[11,[5,[12,[21,[20]],12]]],[[21,[20]]]],[[11,[5,[12,[21,[26]],12]]],[[21,[26]]]],[[11,[5,[12,45,12]]],[[38,[45]]]],[[11,12,12],[[38,[45]]]],[[11,[5,[12,[21,[26]],12]]],[[38,[[21,[26]]]]]],[[11,12,12],[[38,[[21,[26]]]]]],[[11,[5,[12,13,12]]],[[38,[13]]]],[[11,12,12],[[38,[13]]]],[[11,[5,[12,[21,[42]],12]]],[[38,[[21,[42]]]]]],[[11,12,12],[[38,[[21,[42]]]]]],[[11,[5,[12,13,12]],[5,[12,[21,[42]],12]]],[[21,[42]]]],[[11,[5,[12,46,12]]],20],[[11,[5,[12,[21,[43]],12]]],[[38,[[21,[43]]]]]],[[11,12,12],[[38,[[21,[43]]]]]],[[11,[5,[12,13,12]],[5,[12,[21,[43]],12]]],[[21,[43]]]],[[11,[5,[12,18,12]]],[[38,[18]]]],[[11,12,12],[[38,[18]]]],[[11,[5,[12,13,12]],[5,[12,18,12]]],18],[[11,[5,[12,26,12]]],[[38,[26]]]],[[11,12,12],[[38,[26]]]],[[11,[5,[12,13,12]],[5,[12,26,12]]],26],[[11,[5,[12,[5,[13,23,13]],12]]],[[38,[[5,[13,23,13]]]]]],[[11,[5,[12,47,12]]],20],[[11,12,12],[[38,[[5,[13,23,13]]]]]],[[11,[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]]],[[5,[13,23,13]]]],[[11,[5,[12,[21,[48]],12]]],[[21,[48]]]],[[11,[5,[12,[21,[31]],12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]]],[[38,[[21,[31]]]]]],[[11,12,12],[[38,[[21,[31]]]]]],[[11,[5,[12,13,12]]],[[38,[13]]]],[[11,12,12],[[38,[13]]]],[[11,[5,[12,13,12]]],13],[[11,12,12],[[21,[20]]]],[[11,[5,[12,49,12]]],20],[[11,[5,[12,[21,[20]],12]]],[[21,[20]]]],[[11,[5,[12,20,12]]],20],[[11,[5,[12,[21,[39]],12]]],[[38,[[21,[39]]]]]],[[11,12,12],[[38,[[21,[39]]]]]],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]]],[[38,[[21,[39]]]]]],[[11,12,12],[[38,[[21,[39]]]]]],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,[21,[26]],12]]],[[38,[[21,[26]]]]]],[[11,[5,[12,12,12]],[5,[12,[38,[13]],12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,12,12]]],[[29,[46,[15,[12,13,14]]]]]],[[11,12,12],[[38,[[21,[26]]]]]],[[11,12,12],12],[[11,[5,[12,[21,[32]],12]]],[[21,[32]]]],[[11,12,12],12],[[11,[5,[12,[21,[32]],12]],[5,[12,[38,[32]],12]]],[[21,[32]]]],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,37,12]]],39],[[11,[5,[12,20,12]]],[[21,[20]]]],[[11,[5,[12,[21,[20]],12]],[5,[12,20,12]]],[[21,[20]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,[38,[31]],12]]],[[21,[31]]]],[[11,[5,[12,25,12]]],25],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[31]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,37,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],47],[[11,[5,[12,[21,[48]],12]],[5,[12,[38,[48]],12]]],[[21,[48]]]],[[11,[5,[12,[21,[26]],12]],[5,[12,[38,[26]],12]]],[[21,[26]]]],[[11,[5,[12,[21,[44]],12]],[5,[12,[38,[44]],12]]],[[21,[44]]]],[[11,[5,[12,[21,[43]],12]],[5,[12,[38,[43]],12]]],[[21,[43]]]],[[11,[5,[12,[21,[42]],12]],[5,[12,[38,[42]],12]]],[[21,[42]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,[21,[41]],12]],[5,[12,[38,[41]],12]]],[[21,[41]]]],[[11,[5,[12,[21,[40]],12]],[5,[12,[38,[40]],12]]],[[21,[40]]]],[[11,12,12],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]]],[[21,[31]]]],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[31]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,37,12]],[5,[12,13,12]]],47],[[11,[5,[12,31,12]],[5,[12,13,12]]],31],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,[21,[18]],12]],[5,[12,[38,[18]],12]]],[[21,[18]]]],[[11,[5,[12,18,12]]],[[38,[18]]]],[[11,12,12],[[38,[18]]]],[[11,12,12],[[21,[18]]]],[[11,[5,[12,[21,[18]],12]]],[[21,[18]]]],[[11,[5,[12,18,12]],[5,[12,13,12]]],18],[[11,[5,[12,[21,[39]],12]],[5,[12,[38,[39]],12]]],[[21,[39]]]],[[11,[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,13,12]],[5,[12,[21,[31]],12]],[5,[12,13,12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,40,12]]],[[38,[40]]]],[[11,12,12],[[38,[40]]]],[[11,12,12],[[21,[40]]]],[[11,[5,[12,[21,[40]],12]]],[[21,[40]]]],[[11,[5,[12,40,12]],[5,[12,13,12]]],40],[[11,[5,[12,41,12]]],[[38,[41]]]],[[11,12,12],[[38,[41]]]],[[11,12,12],[[21,[41]]]],[[11,[5,[12,[21,[41]],12]]],[[21,[41]]]],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]]],49],[[11,[5,[12,41,12]],[5,[12,13,12]]],41],[[11,12,12],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,39,12]],[5,[12,13,12]]],39],[[11,[5,[12,42,12]]],[[38,[42]]]],[[11,12,12],[[38,[42]]]],[[11,12,12],[[21,[42]]]],[[11,[5,[12,[21,[42]],12]]],[[21,[42]]]],[[11,[5,[12,42,12]],[5,[12,13,12]]],42],[[11,[5,[12,43,12]]],[[38,[43]]]],[[11,[5,[12,[21,[31]],12]]],24],[[11,12,12],[[38,[43]]]],[[11,12,12],[[21,[43]]]],[[11,[5,[12,[21,[43]],12]]],[[21,[43]]]],[[11,[5,[12,43,12]],[5,[12,13,12]]],43],[[11,[5,[12,44,12]]],[[38,[44]]]],[[11,12,12],[[38,[44]]]],[[11,12,12],[[21,[44]]]],[[11,[5,[12,[21,[44]],12]]],[[21,[44]]]],[[11,[5,[12,44,12]],[5,[12,13,12]]],44],[[11,[5,[12,26,12]]],[[38,[26]]]],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,35,12]],[5,[12,12,12]],[5,[12,13,12]]],[[29,[48,[15,[12,13,14]]]]]],[[11,12,12],[[38,[26]]]],[[11,12,12],[[21,[26]]]],[[11,[5,[12,[21,[26]],12]]],[[21,[26]]]],[[11,[5,[12,26,12]],[5,[12,13,12]]],26],[[11,[5,[12,48,12]]],[[38,[48]]]],[[11,12,12],[[38,[48]]]],[[11,12,12],[[21,[48]]]],[[11,[5,[12,[21,[48]],12]]],[[21,[48]]]],[[11,[5,[12,48,12]],[5,[12,13,12]]],48],[[11,[5,[12,31,12]]],[[38,[31]]]],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,[21,[48]],12]],[5,[12,12,12]],[5,[12,13,12]]],48],[[11,12,12],[[38,[31]]]],[[11,12,12],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]]],[[21,[31]]]],[[11,[5,[12,31,12]],[5,[12,13,12]]],31],[[11,[5,[12,[21,[39]],12]],[5,[12,[38,[39]],12]]],[[21,[39]]]],[[11,[5,[12,32,12]]],[[38,[32]]]],[[11,12,12],[[38,[32]]]],[[11,12,12],[[21,[32]]]],[[11,[5,[12,[21,[32]],12]]],[[21,[32]]]],[[11,[5,[12,32,12]],[5,[12,13,12]]],32],[[11,[5,[12,31,12]]],48],[[11,[5,[12,32,12]]],[[21,[32]]]],[[11,[5,[12,[21,[32]],12]],[5,[12,32,12]]],[[21,[32]]]],[[11,[5,[12,39,12]]],[[38,[39]]]],[[11,12,12],[[38,[39]]]],[[11,12,12],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,39,12]],[5,[12,13,12]]],39],[[11,[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,48,12]]],[[21,[48]]]],[[11,[5,[12,48,12]]],37],[[11,[5,[12,[21,[48]],12]],[5,[12,48,12]]],[[21,[48]]]],[[11,[5,[12,26,12]]],[[21,[26]]]],[[11,[5,[12,[21,[26]],12]],[5,[12,26,12]]],[[21,[26]]]],[[11,[5,[12,44,12]]],[[21,[44]]]],[[11,[5,[12,[21,[44]],12]],[5,[12,44,12]]],[[21,[44]]]],[[11,[5,[12,43,12]]],[[21,[43]]]],[[11,[5,[12,[21,[43]],12]],[5,[12,43,12]]],[[21,[43]]]],[[11,[5,[12,42,12]]],[[21,[42]]]],[[11,[5,[12,[21,[42]],12]],[5,[12,42,12]]],[[21,[42]]]],[[11,[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,13,12]],[5,[12,[21,[48]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,48,12]]],37],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,41,12]]],[[21,[41]]]],[[11,[5,[12,[21,[41]],12]],[5,[12,41,12]]],[[21,[41]]]],[[11,[5,[12,40,12]]],[[21,[40]]]],[[11,[5,[12,[21,[40]],12]],[5,[12,40,12]]],[[21,[40]]]],[[11,[5,[12,39,12]]],[[38,[39]]]],[[11,12,12],[[38,[39]]]],[[11,[5,[12,18,12]]],[[21,[18]]]],[[11,[5,[12,[21,[18]],12]],[5,[12,18,12]]],[[21,[18]]]],[[11,[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,[21,[20]],12]]],[[21,[20]]]],[[11,[5,[12,48,12]],[5,[12,13,12]],[5,[12,48,12]]],37],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,12,12]]],50],[[11,[5,[12,12,12]],[5,[12,12,12]]],50],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]]],[[38,[[21,[39]]]]]],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,[38,[[21,[39]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,[38,[[21,[39]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,13,12]],[5,[12,26,12]]],[[38,[26]]]],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,[38,[[5,[13,23,13]]]],12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[43]]]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,[38,[[5,[13,23,13]]]],12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[43]]]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]]],[[38,[[5,[13,23,13]]]]]],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,[38,[[5,[13,23,13]]]],12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[26]],12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[43]]]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[43]]]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[43]]]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[43]]]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[43]]]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]]],[[38,[[21,[39]]]]]],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,13,12]],[5,[12,[21,[43]],12]]],[[38,[[21,[43]]]]]],[[11,[5,[12,12,12]],[5,[12,[38,[13]],12]],[5,[12,12,12]]],50],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[18]],12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[18]],12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[18]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,13,12]]],[[38,[13]]]],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,12,12]]],[[29,[46,[15,[12,13,14]]]]]],[[11,[5,[12,12,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,[38,[45]],12]],[5,[12,12,12]]],28],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,12,12]]],[[29,[46,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,18,12]]],[[38,[18]]]],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,51,12]],[5,[12,13,12]],[5,[12,52,12]],[5,[12,13,12]]],45],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,[38,[[21,[42]]]],12]],[5,[12,12,12]]],22],[[11,[5,[12,13,12]],[5,[12,[21,[42]],12]]],[[38,[[21,[42]]]]]],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,51,12]],[5,[12,12,12]],[5,[12,12,12]]],45],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,13,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]],[5,[12,13,12]]],[[21,[26]]]],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,13,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]],[5,[12,13,12]]],[[21,[26]]]],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,[21,[44]],12]]],[[21,[44]]]],[[11,[5,[12,12,12]],[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]],[5,[12,12,12]]],22],[[11,[5,[12,13,12]],[5,[12,18,12]]],[[38,[18]]]],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],53],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]]],53],[[11,[5,[12,44,12]],[5,[12,13,12]]],[[21,[44]]]],[[11,[5,[12,[21,[44]],12]],[5,[12,44,12]],[5,[12,13,12]]],[[21,[44]]]],[[11,[5,[12,[38,[44]],12]]],[[21,[44]]]],[[11,[5,[12,[21,[44]],12]],[5,[12,[38,[44]],12]]],[[21,[44]]]],[[11,[5,[12,48,12]],[5,[12,13,12]]],[[21,[48]]]],[[11,[5,[12,[21,[48]],12]],[5,[12,48,12]],[5,[12,13,12]]],[[21,[48]]]],[[11,[5,[12,[21,[43]],12]]],[[21,[43]]]],[[11,[5,[12,[38,[48]],12]]],[[21,[48]]]],[[11,[5,[12,[21,[48]],12]],[5,[12,[38,[48]],12]]],[[21,[48]]]],[[11,[5,[12,43,12]],[5,[12,13,12]]],[[21,[43]]]],[[11,[5,[12,[21,[43]],12]],[5,[12,43,12]],[5,[12,13,12]]],[[21,[43]]]],[[11,[5,[12,[38,[43]],12]]],[[21,[43]]]],[[11,[5,[12,[21,[43]],12]],[5,[12,[38,[43]],12]]],[[21,[43]]]],[[11,[5,[12,41,12]],[5,[12,13,12]]],[[21,[41]]]],[[11,[5,[12,[21,[41]],12]],[5,[12,41,12]],[5,[12,13,12]]],[[21,[41]]]],[[11,[5,[12,[38,[41]],12]]],[[21,[41]]]],[[11,[5,[12,[21,[41]],12]],[5,[12,[38,[41]],12]]],[[21,[41]]]],[[11,[5,[12,24,12]]],24],[[11,[5,[12,[21,[42]],12]]],[[21,[42]]]],[[11,[5,[12,32,12]],[5,[12,13,12]]],[[21,[32]]]],[[11,[5,[12,[21,[32]],12]],[5,[12,32,12]],[5,[12,13,12]]],[[21,[32]]]],[[11,[5,[12,[38,[32]],12]]],[[21,[32]]]],[[11,[5,[12,[21,[32]],12]],[5,[12,[38,[32]],12]]],[[21,[32]]]],[[11,[5,[12,31,12]],[5,[12,13,12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,31,12]],[5,[12,13,12]]],[[21,[31]]]],[[11,[5,[12,[38,[31]],12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,[38,[31]],12]]],[[21,[31]]]],[[11,[5,[12,31,12]],[5,[12,13,12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,31,12]],[5,[12,13,12]]],[[21,[31]]]],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,26,12]]],43],[[11,[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,20,12]]],[[21,[20]]]],[[11,[5,[12,[21,[20]],12]],[5,[12,20,12]]],[[21,[20]]]],[[11,12,12],[[21,[20]]]],[[11,[5,[12,[21,[20]],12]]],[[21,[20]]]],[[11,[5,[12,18,12]],[5,[12,13,12]]],[[21,[18]]]],[[11,[5,[12,[21,[18]],12]],[5,[12,18,12]],[5,[12,13,12]]],[[21,[18]]]],[[11,[5,[12,[38,[18]],12]]],[[21,[18]]]],[[11,[5,[12,[21,[18]],12]],[5,[12,[38,[18]],12]]],[[21,[18]]]],[[11,[5,[12,18,12]]],43],[[11,[5,[12,40,12]],[5,[12,13,12]]],[[21,[40]]]],[[11,[5,[12,[21,[40]],12]],[5,[12,40,12]],[5,[12,13,12]]],[[21,[40]]]],[[11,[5,[12,[38,[40]],12]]],[[21,[40]]]],[[11,[5,[12,[21,[40]],12]],[5,[12,[38,[40]],12]]],[[21,[40]]]],[[11,[5,[12,39,12]],[5,[12,13,12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]],[5,[12,13,12]]],[[21,[39]]]],[[11,[5,[12,[38,[39]],12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,[38,[39]],12]]],[[21,[39]]]],[[11,[5,[12,39,12]],[5,[12,13,12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]],[5,[12,13,12]]],[[21,[39]]]],[[11,[5,[12,12,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,54,12]],[5,[12,12,12]]],42],[[11,[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,[38,[39]],12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,[38,[39]],12]]],[[21,[39]]]],[[11,[5,[12,26,12]],[5,[12,13,12]]],[[21,[26]]]],[[11,[5,[12,[21,[26]],12]],[5,[12,26,12]],[5,[12,13,12]]],[[21,[26]]]],[[11,[5,[12,[38,[26]],12]]],[[21,[26]]]],[[11,[5,[12,[21,[26]],12]],[5,[12,[38,[26]],12]]],[[21,[26]]]],[[11,[5,[12,42,12]],[5,[12,13,12]]],[[21,[42]]]],[[11,[5,[12,[21,[42]],12]],[5,[12,42,12]],[5,[12,13,12]]],[[21,[42]]]],[[11,[5,[12,51,12]]],54],[[11,[5,[12,[38,[42]],12]]],[[21,[42]]]],[[11,[5,[12,[21,[42]],12]],[5,[12,[38,[42]],12]]],[[21,[42]]]],[[11,[5,[12,13,12]],[5,[12,12,12]]],50],[[11,[5,[12,12,12]]],50],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,35,12]],[5,[12,12,12]],[5,[12,13,12]]],[[29,[48,[15,[12,13,14]]]]]],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[48]],12]],[5,[12,12,12]],[5,[12,13,12]]],48],[[11,[5,[12,55,12]]],56],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,12,12]]],[[29,[33,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],44],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,51,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],44],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,26,12]]],44],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]],[5,[12,12,12]]],22],[[11,[5,[12,26,12]]],44],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,12,12]]],22],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,12,12]]],[[29,[32,[15,[12,13,14]]]]]],[[11,[5,[12,[21,[32]],12]],[5,[12,12,12]]],23],[[11,[5,[12,36,12]],[5,[12,12,12]]],31],[[11,[5,[12,[21,[40]],12]],[5,[12,12,12]]],52],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,12,12]],[5,[12,53,12]],[5,[12,12,12]]],26],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,35,12]],[5,[12,12,12]]],18],[[11,[5,[12,57,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,12,12]]],18],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[18]],12]],[5,[12,13,12]],[5,[12,12,12]]],18],[[11,[5,[12,57,12]],[5,[12,12,12]]],18],[[11,[5,[12,34,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,[21,[31]],12]],[5,[12,[38,[[21,[41]]]],12]],[5,[12,[38,[[21,[40]]]],12]],[5,[12,12,12]]],51],[[11,[5,[12,22,12]]],22],[[11,[5,[12,56,12]]],53],[[11,[5,[12,[21,[31]],12]],[5,[12,12,12]]],57],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,12,12]]],[[29,[46,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,12,12]]],[[29,[46,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,12,12]]],40],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,12,12]]],40],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],40],[[11,[5,[12,[21,[39]],12]],[5,[12,12,12]]],25],[[11,[5,[12,53,12]]],26],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,56,12]],[5,[12,13,12]],[5,[12,52,12]],[5,[12,13,12]]],53],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,12,12]]],27],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,35,12]],[5,[12,12,12]],[5,[12,13,12]]],[[29,[53,[15,[12,13,14]]]]]],[[11,[5,[12,[38,[[21,[26]]]],12]],[5,[12,[38,[45]],12]],[5,[12,12,12]]],28],[[11,[5,[12,51,12]],[5,[12,12,12]]],45],[[11,[5,[12,26,12]],[5,[12,13,12]],[5,[12,54,12]],[5,[12,12,12]]],42],[[11,[5,[12,13,12]]],50],[[11,12,12],50],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,35,12]],[5,[12,13,12]]],[[29,[48,[15,[12,13,14]]]]]],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[48]],12]],[5,[12,13,12]]],48],[[11,[5,[12,56,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],53],[[11,[5,[12,13,12]],[5,[12,13,12]]],[[29,[33,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]]],18],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],22],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],53],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,18,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,26,12]],[5,[12,[38,[18]],12]],[5,[12,13,12]]],53],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,23,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[43]],12]]],22],[[11,[5,[12,13,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]]],53],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[42]],12]]],22],[[11,[5,[12,50,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[44]],12]],[5,[12,13,12]]],22],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,31,12]]],[[29,[32,[15,[12,13,14]]]]]],[[11,[5,[12,[21,[32]],12]]],23],[[11,[5,[12,36,12]]],31],[[11,[5,[12,[21,[40]],12]]],52],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,13,12]],[5,[12,26,12]]],53],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]]],18],[[11,[5,[12,35,12]]],18],[[11,[5,[12,57,12]],[5,[12,13,12]],[5,[12,31,12]]],18],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[18]],12]],[5,[12,13,12]]],18],[[11,[5,[12,57,12]]],18],[[11,[5,[12,34,12]],[5,[12,18,12]]],18],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],53],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,18,12]],[5,[12,33,12]],[5,[12,18,12]]],18],[[11,[5,[12,[21,[31]],12]],[5,[12,[38,[[21,[41]]]],12]],[5,[12,[38,[[21,[40]]]],12]]],51],[[11,[5,[12,[21,[31]],12]]],57],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],[[29,[46,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],[[29,[46,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,31,12]]],40],[[11,[5,[12,13,12]],[5,[12,31,12]]],40],[[11,[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,18,12]]],40],[[11,[5,[12,[21,[39]],12]]],25],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,12,12]],[5,[12,35,12]],[5,[12,12,12]],[5,[12,13,12]]],[[29,[53,[15,[12,13,14]]]]]],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[38,[[21,[26]]]],12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,35,12]],[5,[12,13,12]]],[[29,[53,[15,[12,13,14]]]]]],[[11,[5,[12,[38,[[21,[26]]]],12]],[5,[12,[38,[45]],12]]],28],[[11,[5,[12,51,12]]],45],[[11,[5,[12,26,12]],[5,[12,13,12]],[5,[12,54,12]]],42],[[11,[5,[12,44,12]]],[[21,[44]]]],[[11,12,12],[[21,[44]]]],[[11,[5,[12,13,12]],[5,[12,54,12]]],53],[[11,[5,[12,[21,[44]],12]],[5,[12,44,12]]],[[21,[44]]]],[[11,[5,[12,[21,[44]],12]]],[[21,[44]]]],[[11,[5,[12,48,12]]],[[21,[48]]]],[[11,12,12],[[21,[48]]]],[[11,[5,[12,[21,[48]],12]],[5,[12,48,12]]],[[21,[48]]]],[[11,[5,[12,[21,[48]],12]]],[[21,[48]]]],[[11,[5,[12,51,12]]],56],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]]],56],[[11,[5,[12,51,12]]],53],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]]],53],[[11,[5,[12,28,12]]],28],[[11,[5,[12,12,12]],[5,[12,55,12]],[5,[12,12,12]]],56],[[11,[5,[12,51,12]],[5,[12,13,12]],[5,[12,52,12]],[5,[12,13,12]]],53],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,52,12]],[5,[12,13,12]]],53],[[11,[5,[12,51,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],53],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],53],[[11,[5,[12,43,12]]],[[21,[43]]]],[[11,12,12],[[21,[43]]]],[[11,[5,[12,[21,[43]],12]],[5,[12,43,12]]],[[21,[43]]]],[[11,[5,[12,[21,[43]],12]]],[[21,[43]]]],[[11,[5,[12,[21,[26]],12]],[5,[12,[38,[45]],12]]],28],[[11,[5,[12,[38,[45]],12]]],28],[[11,[5,[12,51,12]]],55],[[11,[5,[12,41,12]]],[[21,[41]]]],[[11,12,12],[[21,[41]]]],[[11,[5,[12,[21,[41]],12]],[5,[12,41,12]]],[[21,[41]]]],[[11,[5,[12,[21,[41]],12]]],[[21,[41]]]],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,26,12]],[5,[12,13,12]]],55],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,26,12]]],27],[[11,[5,[12,[21,[31]],12]],[5,[12,[21,[41]],12]],[5,[12,[38,[[21,[40]]]],12]]],51],[[11,[5,[12,[21,[31]],12]],[5,[12,[38,[[21,[40]]]],12]]],51],[[11,[5,[12,32,12]]],[[21,[32]]]],[[11,12,12],[[21,[32]]]],[[11,[5,[12,[21,[32]],12]],[5,[12,32,12]]],[[21,[32]]]],[[11,[5,[12,[21,[32]],12]]],[[21,[32]]]],[[11,[5,[12,31,12]]],[[21,[31]]]],[[11,12,12],[[21,[31]]]],[[11,[5,[12,13,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]]],[[21,[26]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,31,12]]],[[21,[31]]]],[[11,[5,[12,[21,[31]],12]]],[[21,[31]]]],[[11,[5,[12,18,12]]],[[21,[18]]]],[[11,12,12],[[21,[18]]]],[[11,[5,[12,[21,[18]],12]],[5,[12,18,12]]],[[21,[18]]]],[[11,[5,[12,[21,[18]],12]]],[[21,[18]]]],[[11,[5,[12,40,12]]],[[21,[40]]]],[[11,12,12],[[21,[40]]]],[[11,[5,[12,[21,[40]],12]],[5,[12,40,12]]],[[21,[40]]]],[[11,[5,[12,[21,[40]],12]]],[[21,[40]]]],[[11,[5,[12,13,12]],[5,[12,[21,[26]],12]],[5,[12,13,12]]],[[21,[26]]]],[[11,[5,[12,[21,[31]],12]],[5,[12,[21,[41]],12]],[5,[12,[21,[40]],12]]],51],[[11,[5,[12,[21,[31]],12]],[5,[12,[21,[41]],12]]],51],[[11,[5,[12,[21,[31]],12]],[5,[12,[21,[40]],12]]],51],[[11,[5,[12,[21,[31]],12]]],51],[[11,[5,[12,39,12]]],[[21,[39]]]],[[11,12,12],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,39,12]]],[[21,[39]]]],[[11,12,12],[[21,[39]]]],[[11,[5,[12,13,12]],[5,[12,[21,[41]],12]],[5,[12,13,12]]],[[21,[41]]]],[[11,[5,[12,[21,[39]],12]],[5,[12,39,12]]],[[21,[39]]]],[[11,[5,[12,[21,[39]],12]]],[[21,[39]]]],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[21,[31]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,37,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],47],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,37,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],47],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,[21,[31]],12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,37,12]],[5,[12,13,12]]],47],[[11,[5,[12,13,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,13,12]],[5,[12,37,12]],[5,[12,13,12]]],47],[[11,[5,[12,26,12]]],[[21,[26]]]],[[11,12,12],[[21,[26]]]],[[11,[5,[12,[21,[26]],12]],[5,[12,26,12]]],[[21,[26]]]],[[11,[5,[12,[21,[26]],12]]],[[21,[26]]]],[[11,[5,[12,13,12]],[5,[12,[21,[41]],12]],[5,[12,13,12]]],[[21,[41]]]],[[11,[5,[12,[21,[26]],12]],[5,[12,45,12]]],28],[[11,[5,[12,[21,[26]],12]]],28],[[11,[5,[12,45,12]]],28],[[11,12,12],28],[[11,[5,[12,42,12]]],[[21,[42]]]],[[11,12,12],[[21,[42]]]],[[11,[5,[12,[21,[42]],12]],[5,[12,42,12]]],[[21,[42]]]],[[11,[5,[12,[21,[42]],12]]],[[21,[42]]]],[[11,[5,[12,31,12]],[5,[12,13,12]],[5,[12,26,12]]],41],[[11,[5,[12,26,12]]],41],[[11,[5,[12,13,12]],[5,[12,[21,[40]],12]],[5,[12,13,12]]],[[21,[40]]]],[[11,[5,[12,26,12]]],26],[[11,[5,[12,12,12]],[5,[12,[21,[31]],12]],[5,[12,[38,[[21,[41]]]],12]],[5,[12,[38,[[21,[40]]]],12]],[5,[12,12,12]]],51],[[11,[5,[12,12,12]],[5,[12,[21,[40]],12]],[5,[12,12,12]]],52],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,12,12]]],40],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,12,12]]],40],[[11,[5,[12,18,12]]],40],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,[21,[39]],12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],40],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,34,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,18,12]]],18],[[11,[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,12,12]],[5,[12,35,12]],[5,[12,12,12]]],18],[[11,[5,[12,12,12]],[5,[12,57,12]],[5,[12,13,12]],[5,[12,31,12]],[5,[12,12,12]]],18],[[11,[5,[12,12,12]],[5,[12,[21,[32]],12]],[5,[12,12,12]]],23],[[11,[5,[12,12,12]],[5,[12,31,12]],[5,[12,13,12]],[5,[12,[21,[18]],12]],[5,[12,13,12]],[5,[12,12,12]]],18],[[11,[5,[12,12,12]],[5,[12,57,12]],[5,[12,12,12]]],18],[[11,[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],18],[[11,[5,[12,13,12]],[5,[12,12,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,12,12]]],18],[[11,[5,[12,13,12]],[5,[12,13,12]],[5,[12,18,12]],[5,[12,13,12]]],18],[[11,[5,[12,12,12]],[5,[12,[21,[31]],12]],[5,[12,12,12]]],57],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],[[11,[5,[12,13,12]]],33],0,0,0,0,0,0,0,0,0,[-1,[[29,[[5,[12,13,12]],[15,[12,13,14]]]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,63,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,63,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,63,12]]]],[60,[5]]],[[38,[[29,[18,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,63,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[64]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],63],0,[[64,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[64,58],58],[[64,58],58],[[64,[67,[64]]]],[[64,58],[[21,[62]]]],[[64,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[64,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],68],[[68,11,-1],[[29,[18,[15,[12,13,14]]]]],69],[[64,58,38,[21,[58]],[21,[[70,[64]]]]],[[38,[[71,[64]]]]]],[[64,58],[[65,[64]]]],[64],[64],[64,[[38,[4]]]],[[64,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[64,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,72,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,72,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,72,12]]]],[60,[5]]],[[38,[[29,[22,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,72,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[73]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],72],0,[[73,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[73,58],58],[[73,58],58],[[73,[67,[73]]]],[[73,58],[[21,[62]]]],[[73,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[73,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],74],[[74,11,-1],[[29,[22,[15,[12,13,14]]]]],69],[[73,58,38,[21,[58]],[21,[[70,[73]]]]],[[38,[[71,[73]]]]]],[[73,58],[[65,[73]]]],[73],[73],[73,[[38,[4]]]],[[73,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[73,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,75,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,75,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,75,12]]]],[60,[5]]],[[38,[[29,[23,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,75,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[76]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],75],0,[[76,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[76,58],58],[[76,58],58],[[76,[67,[76]]]],[[76,58],[[21,[62]]]],[[76,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[76,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],77],[[77,11,-1],[[29,[23,[15,[12,13,14]]]]],69],[[76,58,38,[21,[58]],[21,[[70,[76]]]]],[[38,[[71,[76]]]]]],[[76,58],[[65,[76]]]],[76],[76],[76,[[38,[4]]]],[[76,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[76,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,78,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,78,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,78,12]]]],[60,[5]]],[[38,[[29,[[21,[20]],[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,78,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[79]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],78],0,[[79,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[79,58],58],[[79,58],58],[[79,[67,[79]]]],[[79,58],[[21,[62]]]],[[79,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[79,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],80],[[80,11,-1],[[29,[[21,[20]],[15,[12,13,14]]]]],69],[[79,58,38,[21,[58]],[21,[[70,[79]]]]],[[38,[[71,[79]]]]]],[[79,58],[[65,[79]]]],[79],[79],[79,[[38,[4]]]],[[79,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[79,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,81,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,81,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,81,12]]]],[60,[5]]],[[38,[[29,[24,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,81,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[82]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],81],0,[[82,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[82,58],58],[[82,58],58],[[82,[67,[82]]]],[[82,58],[[21,[62]]]],[[82,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[82,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],83],[[83,11,-1],[[29,[24,[15,[12,13,14]]]]],69],[[82,58,38,[21,[58]],[21,[[70,[82]]]]],[[38,[[71,[82]]]]]],[[82,58],[[65,[82]]]],[82],[82],[82,[[38,[4]]]],[[82,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[82,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,84,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,84,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,84,12]]]],[60,[5]]],[[38,[[29,[25,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,84,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[85]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],84],0,[[85,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[85,58],58],[[85,58],58],[[85,[67,[85]]]],[[85,58],[[21,[62]]]],[[85,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[85,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],86],[[86,11,-1],[[29,[25,[15,[12,13,14]]]]],69],[[85,58,38,[21,[58]],[21,[[70,[85]]]]],[[38,[[71,[85]]]]]],[[85,58],[[65,[85]]]],[85],[85],[85,[[38,[4]]]],[[85,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[85,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,87,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,87,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,87,12]]]],[60,[5]]],[[38,[[29,[26,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,87,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[88]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],87],0,[[88,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[88,58],58],[[88,58],58],[[88,[67,[88]]]],[[88,58],[[21,[62]]]],[[88,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[88,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],89],[[89,11,-1],[[29,[26,[15,[12,13,14]]]]],69],[[88,58,38,[21,[58]],[21,[[70,[88]]]]],[[38,[[71,[88]]]]]],[[88,58],[[65,[88]]]],[88],[88],[88,[[38,[4]]]],[[88,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[88,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,90,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,90,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,90,12]]]],[60,[5]]],[[38,[[29,[27,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,90,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[91]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],90],0,[[91,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[91,58],58],[[91,58],58],[[91,[67,[91]]]],[[91,58],[[21,[62]]]],[[91,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[91,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],92],[[92,11,-1],[[29,[27,[15,[12,13,14]]]]],69],[[91,58,38,[21,[58]],[21,[[70,[91]]]]],[[38,[[71,[91]]]]]],[[91,58],[[65,[91]]]],[91],[91],[91,[[38,[4]]]],[[91,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[91,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[38,[58]],[59,[58]],[38,[4]],[60,[5]]],61],[[58,4],58],[58,[[21,[62]]]],[[[59,[58]],[60,[5]]],[[21,[62]]]],[[58,4],58],0,[[[21,[[5,[12,93,12]]]]],[[5,[12,13,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,36,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[21,[43]]]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,18,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[18]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[21,[42]]]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,44,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,48,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,43,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[43]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,41,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,32,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,31,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,20,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[13]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,40,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,39,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,42,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[42]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,12,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[44]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[39]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[44]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,50,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[48]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,56,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,55,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,33,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[48]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[41]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[32]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[21,[39]]]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[18]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[40]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[26]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[43]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[21,[26]]]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,22,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,47,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[41]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[21,[41]]]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,54,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,26,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[32]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,23,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[31]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,52,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[20]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,35,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,51,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,57,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,24,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,46,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[26]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[40]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[21,[40]]]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[39]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,25,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,37,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,49,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[21,[31]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[21,[31]]]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,27,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,53,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[5,[13,23,13]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,34,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,28,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,45,12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[45]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[42]],12]]]],[[[21,[[5,[12,93,12]]]]],[[5,[12,[38,[[5,[13,23,13]]]],12]]]],[[11,58,[38,[12]],[21,[58]],[21,[[5,[12,93,12]]]],[60,[5]]],[[38,[[29,[28,[15,[12,13,14]]]]]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[11,[38,[12]],[21,[[5,[12,93,12]]]],[60,[5]]],[[5,[4,4]]]],[[58,[60,[5]]],[[65,[94]]]],[[],66],[[13,[60,[5]]],[[38,[4]]]],[[4,13,[60,[5]]],93],0,[[94,58,4],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[[94,58],58],[[94,58],58],[[94,[67,[94]]]],[[94,58],[[21,[62]]]],[[94,[59,[58]]],[[21,[62]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[94,58,4],58],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],95],[[95,11,-1],[[29,[28,[15,[12,13,14]]]]],69],[[94,58,38,[21,[58]],[21,[[70,[94]]]]],[[38,[[71,[94]]]]]],[[94,58],[[65,[94]]]],[94],[94],[94,[[38,[4]]]],[[94,4]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[94,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[96,[[38,[5]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[13,13],[12,12],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],0,[[],12],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],0,[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[13,7],8],[[12,7],8],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[96,97],5],[-1,[[5,[-2,-3,-4]]],[],[],[],[]],[[17,98],96],[96,38],0,0,[[96,98,13,98],5],0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[25,[[0,[1]]]],0,0,0,[26,[[38,[56]]]],[16,4],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[16,16],[48,48],[50,50],[99,99],[100,100],[18,18],[101,101],[57,57],[33,33],[34,34],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],-3,1,2,[]],[[-1,-2],102,[],[]],[[],25],[[],24],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,-1,[]],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],0,0,[[16,16],61],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],[[-1,-2],61,[],[]],0,0,0,[[16,7],8],[[49,7],8],[[20,7],8],[[46,7],8],[[47,7],8],[[23,7],8],[[32,7],8],[[103,7],8],[[27,7],8],[[104,7],8],[[105,7],8],[[28,7],8],[[45,7],8],[[25,7],8],[[24,7],8],[[39,7],8],[[37,7],8],[[48,7],8],[[106,7],8],[[22,7],8],[[43,7],8],[[107,7],8],[[50,7],8],[[42,7],8],[[108,7],8],[[44,7],8],[[26,7],8],[[53,7],8],[[56,7],8],[[55,7],8],[[99,7],8],[[52,7],8],[[40,7],8],[[100,7],8],[[51,7],8],[[41,7],8],[[18,7],8],[[101,7],8],[[57,7],8],[[33,7],8],[[34,7],8],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,0,0,0,0,[[16,-1],5,109],0,0,0,0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[51,61],[26,61],0,0,0,0,0,0,0,0,0,0,0,0,0,[104,61],[105,61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,62,[]],[-1,62,[]],[100,110],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],0,[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],[-1,30,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,99],5,[]],[[-1,50],5,[]],[[-1,48],5,[]],[[-1,56],5,[]],[[-1,43],5,[]],[[-1,105],5,[]],[[-1,18],5,[]],[[-1,107],5,[]],[[-1,22],5,[]],[[-1,44],5,[]],[[-1,41],5,[]],[[-1,32],5,[]],[[-1,23],5,[]],[[-1,31],5,[]],[[-1,52],5,[]],[[-1,35],5,[]],[[-1,51],5,[]],[[-1,57],5,[]],[[-1,40],5,[]],[[-1,39],5,[]],[[-1,25],5,[]],[[-1,37],5,[]],[[-1,104],5,[]],[[-1,108],5,[]],[[-1,26],5,[]],[[-1,28],5,[]],[[-1,45],5,[]],[[-1,42],5,[]],[[-1,48],5,111],[[-1,56],5,111],[[-1,43],5,111],[[-1,105],5,111],[[-1,18],5,111],[[-1,107],5,111],[[-1,22],5,111],[[-1,44],5,111],[[-1,41],5,111],[[-1,32],5,111],[[-1,23],5,111],[[-1,52],5,111],[[-1,51],5,111],[[-1,57],5,111],[[-1,40],5,111],[[-1,39],5,111],[[-1,25],5,111],[[-1,37],5,111],[[-1,104],5,111],[[-1,108],5,111],[[-1,26],5,111],[[-1,28],5,111],[[-1,45],5,111],[[-1,42],5,111]],"c":[],"p":[[8,"Iterator",7578],[8,"FnOnce",7579],[3,"ParseSess",0],[15,"usize"],[15,"tuple"],[4,"ParseErrorKind",0],[3,"Formatter",7580],[6,"Result",7580],[3,"Span",7581],[3,"ParseError",0],[3,"ParseCtxt",0],[3,"Location",6445],[4,"Token",6445],[4,"UserParseError",0],[4,"ParseError",7582],[3,"NodeId",6662],[3,"TokenStream",7583],[3,"Expr",6662],[6,"ParseResult",0],[4,"Item",6662],[3,"Vec",7584],[3,"FnSig",6662],[3,"Generics",6662],[3,"QualNames",6662],[3,"RefinedBy",6662],[3,"Ty",6662],[3,"TyAlias",6662],[3,"VariantDef",6662],[4,"Result",7585],[3,"TypeId",7586],[3,"Ident",6662],[3,"GenericParam",6662],[4,"BinOp",6662],[4,"UnOp",6662],[3,"Lit",6662],[3,"Symbol",7587],[4,"Sort",6662],[4,"Option",7588],[3,"RefineParam",6662],[4,"RefineArg",6662],[4,"GenericArg",6662],[3,"WhereBoundPredicate",6662],[4,"Constraint",6662],[4,"Arg",6662],[3,"VariantRet",6662],[3,"Qualifier",6662],[3,"FuncDef",6662],[4,"BaseSort",6662],[3,"SortDecl",6662],[4,"Async",6662],[3,"Path",6662],[3,"Indices",6662],[4,"TyKind",6662],[6,"GenericBounds",6662],[4,"BaseTyKind",6662],[3,"BaseTy",6662],[3,"QPathExpr",6662],[15,"i16"],[15,"slice"],[3,"PhantomData",7589],[15,"bool"],[3,"String",7590],[4,"__Symbol",802],[3,"__StateMachine",802],[4,"SimulatedReduce",7591],[15,"never"],[6,"ErrorRecovery",7591],[3,"ExprParser",802],[8,"IntoIterator",7592],[6,"SymbolTriple",7591],[6,"ParseResult",7591],[4,"__Symbol",1429],[3,"__StateMachine",1429],[3,"FnSigParser",1429],[4,"__Symbol",2056],[3,"__StateMachine",2056],[3,"GenericsParser",2056],[4,"__Symbol",2683],[3,"__StateMachine",2683],[3,"ItemsParser",2683],[4,"__Symbol",3310],[3,"__StateMachine",3310],[3,"QualNamesParser",3310],[4,"__Symbol",3937],[3,"__StateMachine",3937],[3,"RefinedByParser",3937],[4,"__Symbol",4564],[3,"__StateMachine",4564],[3,"TyParser",4564],[4,"__Symbol",5191],[3,"__StateMachine",5191],[3,"TyAliasParser",5191],[4,"__Symbol",5818],[3,"__StateMachine",5818],[3,"VariantParser",5818],[3,"Cursor",6445],[3,"Token",7593],[3,"BytePos",7594],[3,"ArrayLen",6662],[4,"BindKind",6662],[4,"ExprKind",6662],[4,"Ordering",7595],[4,"GenericParamKind",6662],[3,"StructDef",6662],[3,"EnumDef",6662],[3,"ConstSig",6662],[4,"FnRetTy",6662],[3,"TraitRef",6662],[8,"Hasher",7596],[15,"str"],[8,"Visitor",7525],[6,"LalrpopError",0],[13,"User",107],[13,"UnrecognizedEof",107],[13,"UnrecognizedToken",107],[13,"InvalidToken",107],[13,"ExtraToken",107],[8,"__ToTriple",114],[4,"BinOpToken",6445],[4,"LitKind",6662],[4,"Delimiter",6445],[3,"Symbols",6445],[3,"Frame",6445],[4,"Mutability",6662],[13,"Yes",7512],[13,"Refine",7514],[13,"Func",7515],[13,"Exists",7517],[13,"Indexed",7517],[13,"GeneralExists",7517]],"b":[]},\ "flux_tests":{"doc":"","t":"RFFF","n":["FLUX_SYSROOT","find_file_in_target_dir","find_flux_path","rustc_flags"],"q":[[0,"flux_tests"],[4,"std::path"],[5,"alloc::string"],[6,"alloc::vec"]],"d":["","","","Rustc flags to pass Flux when running tests"],"i":[0,0,0,0],"f":[0,[1,2],[[],2],[[],[[4,[3]]]]],"c":[],"p":[[15,"str"],[3,"PathBuf",4],[3,"String",5],[3,"Vec",6]],"b":[]},\ "rustc_flux":{"doc":"","t":"FF","n":["main","run"],"q":[[0,"rustc_flux"],[2,"anyhow"]],"d":["",""],"i":[0,0],"f":[[[],1],[[],[[3,[2]]]]],"c":[],"p":[[15,"tuple"],[15,"i32"],[6,"Result",2]],"b":[]},\ diff --git a/doc/src/flux_desugar/desugar.rs.html b/doc/src/flux_desugar/desugar.rs.html index f34d0f67e8..b784160a9e 100644 --- a/doc/src/flux_desugar/desugar.rs.html +++ b/doc/src/flux_desugar/desugar.rs.html @@ -1193,6 +1193,23 @@ 1193 1194 1195 +1196 +1197 +1198 +1199 +1200 +1201 +1202 +1203 +1204 +1205 +1206 +1207 +1208 +1209 +1210 +1211 +1212
      mod env;
       mod gather;
       use std::iter;
      @@ -2286,12 +2303,29 @@
                   .try_collect_exhaust()
           }
       
      +    fn try_parse_int_lit(&self, span: Span, s: &str) -> Result<i128> {
      +        let parsed_int = if s.len() <= 2 {
      +            s.parse::<i128>()
      +        } else {
      +            match &s[0..2] {
      +                "0x" => i128::from_str_radix(&s[2..], 16), // hex
      +                "0o" => i128::from_str_radix(&s[2..], 8),  // octal
      +                "0b" => i128::from_str_radix(&s[2..], 2),  // binary
      +                _ => s.parse::<i128>(),                    // must be decimal
      +            }
      +        };
      +
      +        if let Ok(n) = parsed_int {
      +            Ok(n) // convert error types
      +        } else {
      +            Err(self.emit_err(errors::IntTooLarge { span }))
      +        }
      +    }
      +
           fn desugar_lit(&self, span: Span, lit: surface::Lit) -> Result<fhir::Lit> {
               match lit.kind {
                   surface::LitKind::Integer => {
      -                let Ok(n) = lit.symbol.as_str().parse::<i128>() else {
      -                    return Err(self.emit_err(errors::IntTooLarge { span }));
      -                };
      +                let n = self.try_parse_int_lit(span, lit.symbol.as_str())?;
                       let suffix = lit.suffix.unwrap_or(SORTS.int);
                       if suffix == SORTS.int {
                           Ok(fhir::Lit::Int(n))
      diff --git a/doc/src/flux_fhir_analysis/conv.rs.html b/doc/src/flux_fhir_analysis/conv.rs.html
      index ebac1ddf8b..c924bc5ee9 100644
      --- a/doc/src/flux_fhir_analysis/conv.rs.html
      +++ b/doc/src/flux_fhir_analysis/conv.rs.html
      @@ -2399,7 +2399,7 @@
               if let Some(def_id) = self.is_record() {
                   let i = genv
                       .field_index(def_id, fld.name)
      -                .unwrap_or_else(|| span_bug!(fld.span, "field not found `{fld:?}`"));
      +                .unwrap_or_else(|| span_bug!(fld.span, "field `{fld:?}` not found in {def_id:?}"));
                   rty::Expr::tuple_proj(self.to_expr(), i as u32, None)
               } else {
                   span_bug!(fld.span, "expected record sort")
      diff --git a/doc/src/flux_fhir_analysis/lib.rs.html b/doc/src/flux_fhir_analysis/lib.rs.html
      index a6dc37b9c9..0ce6b1baf8 100644
      --- a/doc/src/flux_fhir_analysis/lib.rs.html
      +++ b/doc/src/flux_fhir_analysis/lib.rs.html
      @@ -590,7 +590,7 @@
                           let wfckresults = genv.check_wf(def_id)?;
                           conv::conv_ty(genv, ty, &wfckresults)?
                       }
      -                _ => bug!("non-type def"),
      +                k => bug!("non-type def {k:?} {def_id:?}"),
                   }
               }
               DefKind::Impl { .. } | DefKind::Struct | DefKind::Enum | DefKind::AssocTy => {
      diff --git a/doc/src/flux_middle/global_env.rs.html b/doc/src/flux_middle/global_env.rs.html
      index 53ff089134..0c1db27b5d 100644
      --- a/doc/src/flux_middle/global_env.rs.html
      +++ b/doc/src/flux_middle/global_env.rs.html
      @@ -440,6 +440,8 @@
       440
       441
       442
      +443
      +444
       
    use std::{borrow::Borrow, rc::Rc};
     
     use flux_common::bug;
    @@ -789,6 +791,7 @@
             sort_args: List<fhir::Sort>,
             fld: Symbol,
         ) -> Option<fhir::Sort> {
    +        let def_id = self.lookup_extern(def_id).unwrap_or(def_id);
             let poly_sort = if let Some(local_id) = def_id.as_local() {
                 self.map().refined_by(local_id).field_sort(fld, &sort_args)
             } else {
    @@ -800,6 +803,7 @@
         }
     
         pub fn field_index(&self, def_id: DefId, fld: Symbol) -> Option<usize> {
    +        let def_id = self.lookup_extern(def_id).unwrap_or(def_id);
             if let Some(local_id) = def_id.as_local() {
                 self.map().refined_by(local_id).field_index(fld)
             } else {
    diff --git a/doc/src/flux_middle/rty/mod.rs.html b/doc/src/flux_middle/rty/mod.rs.html
    index 0c3d2dc004..fd4cb5ee69 100644
    --- a/doc/src/flux_middle/rty/mod.rs.html
    +++ b/doc/src/flux_middle/rty/mod.rs.html
    @@ -2131,6 +2131,7 @@
     2131
     2132
     2133
    +2134
     
    //! Defines how flux represents refinement types internally. Definitions in this module are used
     //! during refinement type checking. A couple of important differences between definitions in this
     //! module and in [`crate::fhir`] are:
    @@ -2739,8 +2740,9 @@
             if let Some(index) = param_index.checked_sub(self.parent_count) {
                 Ok(self.params[index].clone())
             } else {
    -            genv.generics_of(self.parent.expect("parent_count > 0 but no parent?"))?
    -                .param_at(param_index, genv)
    +            let parent = self.parent.expect("parent_count > 0 but no parent?");
    +            let parent_generics = genv.generics_of(parent)?;
    +            parent_generics.param_at(param_index, genv)
             }
         }
     
    diff --git a/doc/src/flux_middle/rty/projections.rs.html b/doc/src/flux_middle/rty/projections.rs.html
    index 2eac0a557c..8ca6466f16 100644
    --- a/doc/src/flux_middle/rty/projections.rs.html
    +++ b/doc/src/flux_middle/rty/projections.rs.html
    @@ -437,6 +437,13 @@
     437
     438
     439
    +440
    +441
    +442
    +443
    +444
    +445
    +446
     
    use std::iter;
     
     #[allow(unused_imports)]
    @@ -452,7 +459,7 @@
     
     use super::{
         fold::{FallibleTypeFolder, TypeSuperFoldable},
    -    AliasKind, AliasTy, BaseTy, BoundRegion, Clause, ClauseKind, Expr, GenericArg,
    +    AliasKind, AliasTy, BaseTy, BoundRegion, Clause, ClauseKind, Expr, GenericArg, GenericArgs,
         ProjectionPredicate, Region, Ty, TyKind,
     };
     use crate::{
    @@ -511,17 +518,17 @@
                     //    to infer a substitution
                     //        IntoIter<{v. i32[v] | v > 0}, Global> against IntoIter<T, A>
                     //            => {T -> {v. i32[v] | v > 0}, A -> Global}
    -                let rustc_self_ty = self
    +                let impl_trait_ref = self
                         .tcx()
                         .impl_trait_ref(impl_def_id)
                         .unwrap()
    -                    .skip_binder()
    -                    .self_ty();
    +                    .skip_binder();
     
                     let generics = self.tcx().generics_of(impl_def_id);
     
    -                let args =
    -                    TVarSubst::mk_subst(self.tcx(), generics, &rustc_self_ty, obligation.self_ty());
    +                let mut subst = TVarSubst::new(generics);
    +                subst.infer_from_args(impl_trait_ref.args, &obligation.args);
    +                let args = subst.finish(self.tcx(), generics);
     
                     // 2. Get the associated type in the impl block and apply the substitution to it
                     let assoc_type_id = self
    @@ -770,16 +777,16 @@
     }
     
     impl TVarSubst {
    -    fn mk_subst<'tcx>(
    +    fn new(generics: &rustc_middle::ty::Generics) -> Self {
    +        Self { args: vec![None; generics.count()] }
    +    }
    +
    +    fn finish<'tcx>(
    +        self,
             tcx: TyCtxt<'tcx>,
             generics: &'tcx rustc_middle::ty::Generics,
    -        src: &rustc_middle::ty::Ty,
    -        dst: &Ty,
         ) -> Vec<GenericArg> {
    -        let mut subst = TVarSubst { args: vec![None; generics.count()] };
    -        subst.infer_from_ty(src, dst);
    -        subst
    -            .args
    +        self.args
                 .into_iter()
                 .enumerate()
                 .map(|(idx, arg)| {
    @@ -807,7 +814,14 @@
             }
         }
     
    -    fn infer_from_arg(&mut self, src: &rustc_middle::ty::GenericArg, dst: &GenericArg) {
    +    fn infer_from_args(&mut self, src: rustc_middle::ty::GenericArgsRef, dst: &GenericArgs) {
    +        debug_assert_eq!(src.len(), dst.len());
    +        for (src, dst) in iter::zip(src, dst) {
    +            self.infer_from_arg(src, dst);
    +        }
    +    }
    +
    +    fn infer_from_arg(&mut self, src: rustc_middle::ty::GenericArg, dst: &GenericArg) {
             match dst {
                 GenericArg::Ty(dst) => {
                     self.infer_from_ty(&src.as_type().unwrap(), dst);
    @@ -829,7 +843,7 @@
                     {
                         debug_assert_eq!(src_subst.len(), dst_subst.len());
                         for (src_arg, dst_arg) in iter::zip(*src_subst, dst_subst) {
    -                        self.infer_from_arg(&src_arg, dst_arg);
    +                        self.infer_from_arg(src_arg, dst_arg);
                         }
                     } else {
                         bug!("unexpected type {dst:?}");
    diff --git a/doc/src/flux_refineck/sigs/default.rs.html b/doc/src/flux_refineck/sigs/default.rs.html
    index 5160a18f15..4c81905ec5 100644
    --- a/doc/src/flux_refineck/sigs/default.rs.html
    +++ b/doc/src/flux_refineck/sigs/default.rs.html
    @@ -166,13 +166,28 @@
     166
     167
     168
    +169
    +170
    +171
    +172
    +173
    +174
    +175
    +176
    +177
    +178
    +179
    +180
    +181
    +182
    +183
     
    use std::sync::LazyLock;
     
     use flux_middle::{
         rty::{BaseTy, BinOp, Expr, INT_TYS, UINT_TYS},
         rustc::mir,
     };
    -use itertools::iproduct;
    +use itertools::{chain, iproduct};
     
     use super::{Sig, SigTable};
     use crate::{
    @@ -198,6 +213,7 @@
     
         table.extend(mk_neg());
         table.extend([mk_not()]);
    +    table.extend(mk_lnot());
     
         table
     });
    @@ -334,4 +350,18 @@
         define_btys! { let bool = BaseTy::Bool; }
         (mir::UnOp::Not, s!(fn(a: bool) -> bool[a.not()]))
     }
    +
    +pub(crate) fn mk_lnot() -> impl IntoIterator<Item = (mir::UnOp, Sig<1>)> {
    +    let int_lnots = INT_TYS.map(|int_ty| {
    +        define_btys! { let Int = BaseTy::Int(int_ty); };
    +        (mir::UnOp::Not, s!(fn(a: Int) -> Int{v: E::tt()}))
    +    });
    +
    +    let uint_lnots = UINT_TYS.map(|uint_ty| {
    +        define_btys! { let Uint = BaseTy::Uint(uint_ty); };
    +        (mir::UnOp::Not, s!(fn(a: Uint) -> Uint{v: E::tt()}))
    +    });
    +
    +    chain!(int_lnots, uint_lnots)
    +}
     
\ No newline at end of file diff --git a/doc/src/flux_refineck/sigs/overflow.rs.html b/doc/src/flux_refineck/sigs/overflow.rs.html index 5ccf6404ce..bc1e8f5e21 100644 --- a/doc/src/flux_refineck/sigs/overflow.rs.html +++ b/doc/src/flux_refineck/sigs/overflow.rs.html @@ -142,6 +142,7 @@ 142 143 144 +145
use std::sync::LazyLock;
 
 use flux_middle::{
@@ -173,6 +174,7 @@
 
     table.extend(mk_neg());
     table.extend([super::default::mk_not()]);
+    table.extend(super::default::mk_lnot());
 
     table
 });
diff --git a/doc/type.impl/flux_middle/rty/struct.Binder.js b/doc/type.impl/flux_middle/rty/struct.Binder.js
index 943a699a51..a02edf8256 100644
--- a/doc/type.impl/flux_middle/rty/struct.Binder.js
+++ b/doc/type.impl/flux_middle/rty/struct.Binder.js
@@ -1,3 +1,3 @@
 (function() {var type_impls = {
-"flux_middle":[["
source§

impl<T> Binder<T>

source

pub fn new(value: T, vars: List<BoundVariableKind>) -> Binder<T>

source

pub fn with_sorts(value: T, sorts: impl IntoIterator<Item = Sort>) -> Binder<T>

source

pub fn with_sort(value: T, sort: Sort) -> Binder<T>

source

pub fn vars(&self) -> &List<BoundVariableKind>

source

pub fn as_ref(&self) -> Binder<&T>

source

pub fn skip_binder(self) -> T

source

pub fn rebind<U>(self, value: U) -> Binder<U>

source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> Binder<U>

source

pub fn try_map<U, E>(\n self,\n f: impl FnOnce(T) -> Result<U, E>\n) -> Result<Binder<U>, E>

",0,"flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> Binder<T>where\n T: TypeFoldable,

source

pub fn replace_bound_vars(\n &self,\n replace_region: impl FnMut(BoundRegion) -> Region,\n replace_expr: impl FnMut(&Sort, InferMode) -> Expr\n) -> T

source

pub fn replace_bound_exprs(&self, exprs: &[Expr]) -> T

source

pub fn replace_bound_expr(&self, expr: &Expr) -> T

source

pub fn replace_bound_exprs_with(\n &self,\n f: impl FnMut(&Sort, InferMode) -> Expr\n) -> T

",0,"flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl Binder<Ty>

source

pub fn into_ty(self) -> Ty

",0,"flux_middle::rty::PolyTy"],["
source§

impl<T, __D: TyDecoder> Decodable<__D> for Binder<T>where\n T: Decodable<__D>,

source§

fn decode(__decoder: &mut __D) -> Self

","Decodable<__D>","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T, __E: TyEncoder> Encodable<__E> for Binder<T>where\n T: Encodable<__E>,

source§

fn encode(&self, __encoder: &mut __E)

","Encodable<__E>","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeVisitable for Binder<T>where\n T: TypeVisitable,

source§

fn visit_with<V: TypeVisitor>(&self, visitor: &mut V) -> ControlFlow<V::BreakTy>

source§

fn has_escaping_bvars(&self) -> bool

source§

fn fvars(&self) -> FxHashSet<Name>

Returns the set of all free variables.\nFor example, Vec<i32[n]>{v : v > m} returns {n, m}.
source§

fn opaque_refine_args(&self) -> OpaqueArgsMap

Returns the set of all opaque type aliases def ids
","TypeVisitable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeSuperFoldable for Binder<T>where\n T: TypeFoldable,

source§

fn try_super_fold_with<F: FallibleTypeFolder>(\n &self,\n folder: &mut F\n) -> Result<Self, F::Error>

source§

fn super_fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

","TypeSuperFoldable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeFoldable for Binder<T>where\n T: TypeFoldable,

source§

fn try_fold_with<F: FallibleTypeFolder>(\n &self,\n folder: &mut F\n) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>(\n &self,\n genv: &GlobalEnv<'_, 'tcx>,\n infcx: &InferCtxt<'tcx>,\n callsite_def_id: DefId,\n refine_params: &[Expr]\n) -> QueryResult<Self>

source§

fn normalize(&self, defns: &Defns) -> Self

Normalize expressions by applying beta reductions for tuples and lambda abstractions.
source§

fn replace_holes(&self, f: impl FnMut(&[List<Sort>], HoleKind) -> Expr) -> Self

Replaces all holes with the result of calling a closure. The closure takes a list with\nall the layers of bound variables at the point the hole was found. Each layer corresponds\nto the list of sorts bound at that level. The list is ordered from outermost to innermost\nbinder, i.e., the last element is the binder closest to the hole.
source§

fn with_holes(&self) -> Self

Turns each TyKind::Indexed into a TyKind::Exists with a TyKind::Constr and a\nhole. It also replaces all existing predicates with a hole.\nFor example, Vec<{v. i32[v] | v > 0}>[n] becomes {n. Vec<{v. i32[v] | *}>[n] | *}.
source§

fn replace_evars(&self, evars: &EVarSol) -> Self

source§

fn shift_in_escaping(&self, amount: u32) -> Self

source§

fn shift_out_escaping(&self, amount: u32) -> Self

","TypeFoldable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Clone> Clone for Binder<T>

source§

fn clone(&self) -> Binder<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeSuperVisitable for Binder<T>where\n T: TypeVisitable,

source§

fn super_visit_with<V: TypeVisitor>(\n &self,\n visitor: &mut V\n) -> ControlFlow<V::BreakTy>

","TypeSuperVisitable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> StructuralEq for Binder<T>

","StructuralEq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: PartialEq> PartialEq for Binder<T>

source§

fn eq(&self, other: &Binder<T>) -> bool

This method tests for self and other values to be equal, and is used\nby ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
","PartialEq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> StructuralPartialEq for Binder<T>

","StructuralPartialEq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> Pretty for Binder<T>where\n T: Pretty,

source§

default fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

","Pretty","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Hash> Hash for Binder<T>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where\n H: Hasher,\n Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
","Hash","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Pretty> Debug for Binder<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
","Debug","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Eq> Eq for Binder<T>

","Eq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"]] +"flux_middle":[["
source§

impl<T> Binder<T>

source

pub fn new(value: T, vars: List<BoundVariableKind>) -> Binder<T>

source

pub fn with_sorts(value: T, sorts: impl IntoIterator<Item = Sort>) -> Binder<T>

source

pub fn with_sort(value: T, sort: Sort) -> Binder<T>

source

pub fn vars(&self) -> &List<BoundVariableKind>

source

pub fn as_ref(&self) -> Binder<&T>

source

pub fn skip_binder(self) -> T

source

pub fn rebind<U>(self, value: U) -> Binder<U>

source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> Binder<U>

source

pub fn try_map<U, E>(\n self,\n f: impl FnOnce(T) -> Result<U, E>\n) -> Result<Binder<U>, E>

",0,"flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> Binder<T>where\n T: TypeFoldable,

source

pub fn replace_bound_vars(\n &self,\n replace_region: impl FnMut(BoundRegion) -> Region,\n replace_expr: impl FnMut(&Sort, InferMode) -> Expr\n) -> T

source

pub fn replace_bound_exprs(&self, exprs: &[Expr]) -> T

source

pub fn replace_bound_expr(&self, expr: &Expr) -> T

source

pub fn replace_bound_exprs_with(\n &self,\n f: impl FnMut(&Sort, InferMode) -> Expr\n) -> T

",0,"flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl Binder<Ty>

source

pub fn into_ty(self) -> Ty

",0,"flux_middle::rty::PolyTy"],["
source§

impl<T, __D: TyDecoder> Decodable<__D> for Binder<T>where\n T: Decodable<__D>,

source§

fn decode(__decoder: &mut __D) -> Self

","Decodable<__D>","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T, __E: TyEncoder> Encodable<__E> for Binder<T>where\n T: Encodable<__E>,

source§

fn encode(&self, __encoder: &mut __E)

","Encodable<__E>","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeVisitable for Binder<T>where\n T: TypeVisitable,

source§

fn visit_with<V: TypeVisitor>(&self, visitor: &mut V) -> ControlFlow<V::BreakTy>

source§

fn has_escaping_bvars(&self) -> bool

source§

fn fvars(&self) -> FxHashSet<Name>

Returns the set of all free variables.\nFor example, Vec<i32[n]>{v : v > m} returns {n, m}.
source§

fn opaque_refine_args(&self) -> OpaqueArgsMap

Returns the set of all opaque type aliases def ids
","TypeVisitable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeSuperFoldable for Binder<T>where\n T: TypeFoldable,

source§

fn try_super_fold_with<F: FallibleTypeFolder>(\n &self,\n folder: &mut F\n) -> Result<Self, F::Error>

source§

fn super_fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

","TypeSuperFoldable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeFoldable for Binder<T>where\n T: TypeFoldable,

source§

fn try_fold_with<F: FallibleTypeFolder>(\n &self,\n folder: &mut F\n) -> Result<Self, F::Error>

source§

fn fold_with<F: TypeFolder>(&self, folder: &mut F) -> Self

source§

fn normalize_projections<'tcx>(\n &self,\n genv: &GlobalEnv<'_, 'tcx>,\n infcx: &InferCtxt<'tcx>,\n callsite_def_id: DefId,\n refine_params: &[Expr]\n) -> QueryResult<Self>

source§

fn normalize(&self, defns: &Defns) -> Self

Normalize expressions by applying beta reductions for tuples and lambda abstractions.
source§

fn replace_holes(&self, f: impl FnMut(&[List<Sort>], HoleKind) -> Expr) -> Self

Replaces all holes with the result of calling a closure. The closure takes a list with\nall the layers of bound variables at the point the hole was found. Each layer corresponds\nto the list of sorts bound at that level. The list is ordered from outermost to innermost\nbinder, i.e., the last element is the binder closest to the hole.
source§

fn with_holes(&self) -> Self

Turns each TyKind::Indexed into a TyKind::Exists with a TyKind::Constr and a\nhole. It also replaces all existing predicates with a hole.\nFor example, Vec<{v. i32[v] | v > 0}>[n] becomes {n. Vec<{v. i32[v] | *}>[n] | *}.
source§

fn replace_evars(&self, evars: &EVarSol) -> Self

source§

fn shift_in_escaping(&self, amount: u32) -> Self

source§

fn shift_out_escaping(&self, amount: u32) -> Self

","TypeFoldable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Clone> Clone for Binder<T>

source§

fn clone(&self) -> Binder<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> TypeSuperVisitable for Binder<T>where\n T: TypeVisitable,

source§

fn super_visit_with<V: TypeVisitor>(\n &self,\n visitor: &mut V\n) -> ControlFlow<V::BreakTy>

","TypeSuperVisitable","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> StructuralEq for Binder<T>

","StructuralEq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: PartialEq> PartialEq for Binder<T>

source§

fn eq(&self, other: &Binder<T>) -> bool

This method tests for self and other values to be equal, and is used\nby ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
","PartialEq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> StructuralPartialEq for Binder<T>

","StructuralPartialEq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T> Pretty for Binder<T>where\n T: Pretty,

source§

default fn fmt(&self, cx: &PPrintCx<'_>, f: &mut Formatter<'_>) -> Result

source§

fn default_cx(tcx: TyCtxt<'_>) -> PPrintCx<'_>

","Pretty","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Hash> Hash for Binder<T>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where\n H: Hasher,\n Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
","Hash","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Pretty> Debug for Binder<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
","Debug","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"],["
source§

impl<T: Eq> Eq for Binder<T>

","Eq","flux_middle::rty::PolyVariant","flux_middle::rty::PolyFnSig","flux_middle::rty::PolyTy"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/print.html b/print.html index df083949eb..5300a3e62f 100644 --- a/print.html +++ b/print.html @@ -650,6 +650,20 @@

Sample output total time: 16995.32ms total time: 17014.19ms

+

Macro expansion

+

For example if you have code like in path/to/file.rs

+
#![allow(unused)]
+fn main() {
+#[extern_spec]
+#[flux::refined_by(elems: Set<T>)]
+struct HashSet<T, S = RandomState>;
+}
+

and you want to see what the extern_spec macro expands it out to, then run

+
cargo x run -- -Zunpretty=expanded path/to/file.rs
+
+

Or you can run the xtask command directly

+
cargo x expand path/to/file.rs
+

High-level Architecture

Flux is implemented as a compiler driver. We hook into the compiler by implementing the Callbacks trait. The implementation is located is in the flux-driver crate, and it is the main entry point to Flux.

Crates

diff --git a/searchindex.js b/searchindex.js index 920bd98254..51a2cfdddf 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["index.html","guide/install.html#installing-flux","guide/install.html#requirements","guide/install.html#installing","guide/run.html#running-flux","guide/run.html#running-on-a-file-rustc-flux","guide/run.html#running-on-a-package-cargo-flux","guide/run.html#a-tiny-example","guide/run.html#a-note-about-the-flux-driver-binary","guide/run.html#editor-support","guide/run.html#rust-analyzer-in-vscode","guide/run.html#configuration","guide/run.html#environment-variables","guide/run.html#config-file","guide/run.html#crate-config","guide/run.html#query-caching","guide/specs.html#flux-specification-guide","guide/specs.html#refinement-types","guide/specs.html#argument-syntax","guide/specs.html#extern-specs","guide/specs.html#import-the-procedural-macros","guide/specs.html#extern-functions","guide/specs.html#extern-structs-and-impls","guide/specs.html#grammar-of-refinements","dev/develop.html#developers-guide","dev/develop.html#regression-tests","dev/develop.html#testing-flux-on-a-file","dev/develop.html#reporting-locations-where-errors-are-emitted","dev/develop.html#running-outside-the-project","dev/develop.html#profiling-flux","dev/develop.html#sample-output","dev/architecture.html#high-level-architecture","dev/architecture.html#crates","dev/architecture.html#intermediate-representations","dev/architecture.html#surface","dev/architecture.html#fhir","dev/architecture.html#rty","dev/architecture.html#simplified-rustc","dev/architecture.html#lifting-and-refining","blog/01-introducing-flux.html#introducing-flux","blog/01-introducing-flux.html#indexed-types","blog/01-introducing-flux.html#post-conditions","blog/01-introducing-flux.html#pre-conditions","blog/01-introducing-flux.html#index-parameters-and-expressions","blog/01-introducing-flux.html#existential-types","blog/01-introducing-flux.html#summary","blog/02-ownership.html#ownership-in-flux","blog/02-ownership.html#exclusive-ownership","blog/02-ownership.html#borrowing-shared-references","blog/02-ownership.html#refinement-parameters","blog/02-ownership.html#borrowing-mutable-references","blog/02-ownership.html#aliased-references","blog/02-ownership.html#borrowing-strong-references","blog/02-ownership.html#summary","blog/03-vectors.html#refined-vectors","blog/03-vectors.html#refining-vectors-to-track-their-size","blog/03-vectors.html#creating-vectors","blog/03-vectors.html#pushing-values","blog/03-vectors.html#popping-values","blog/03-vectors.html#using-the-api","blog/03-vectors.html#querying-the-size","blog/03-vectors.html#random-access","blog/03-vectors.html#memoization","blog/03-vectors.html#binary-search","blog/03-vectors.html#summary","about.html#about-flux","about.html#team","about.html#code","about.html#thanks","about.html#limitations"],"index":{"documentStore":{"docInfo":{"0":{"body":25,"breadcrumbs":1,"title":1},"1":{"body":0,"breadcrumbs":3,"title":2},"10":{"body":26,"breadcrumbs":4,"title":3},"11":{"body":0,"breadcrumbs":2,"title":1},"12":{"body":117,"breadcrumbs":3,"title":2},"13":{"body":68,"breadcrumbs":3,"title":2},"14":{"body":36,"breadcrumbs":3,"title":2},"15":{"body":23,"breadcrumbs":3,"title":2},"16":{"body":5,"breadcrumbs":4,"title":3},"17":{"body":209,"breadcrumbs":3,"title":2},"18":{"body":77,"breadcrumbs":3,"title":2},"19":{"body":41,"breadcrumbs":3,"title":2},"2":{"body":10,"breadcrumbs":2,"title":1},"20":{"body":38,"breadcrumbs":4,"title":3},"21":{"body":131,"breadcrumbs":3,"title":2},"22":{"body":214,"breadcrumbs":4,"title":3},"23":{"body":61,"breadcrumbs":3,"title":2},"24":{"body":0,"breadcrumbs":3,"title":2},"25":{"body":145,"breadcrumbs":3,"title":2},"26":{"body":103,"breadcrumbs":4,"title":3},"27":{"body":33,"breadcrumbs":5,"title":4},"28":{"body":82,"breadcrumbs":4,"title":3},"29":{"body":17,"breadcrumbs":3,"title":2},"3":{"body":77,"breadcrumbs":2,"title":1},"30":{"body":150,"breadcrumbs":3,"title":2},"31":{"body":18,"breadcrumbs":5,"title":3},"32":{"body":183,"breadcrumbs":3,"title":1},"33":{"body":34,"breadcrumbs":4,"title":2},"34":{"body":19,"breadcrumbs":3,"title":1},"35":{"body":27,"breadcrumbs":3,"title":1},"36":{"body":21,"breadcrumbs":3,"title":1},"37":{"body":23,"breadcrumbs":4,"title":2},"38":{"body":32,"breadcrumbs":4,"title":2},"39":{"body":81,"breadcrumbs":4,"title":2},"4":{"body":6,"breadcrumbs":3,"title":2},"40":{"body":26,"breadcrumbs":4,"title":2},"41":{"body":55,"breadcrumbs":4,"title":2},"42":{"body":61,"breadcrumbs":4,"title":2},"43":{"body":64,"breadcrumbs":5,"title":3},"44":{"body":154,"breadcrumbs":4,"title":2},"45":{"body":72,"breadcrumbs":3,"title":1},"46":{"body":56,"breadcrumbs":4,"title":2},"47":{"body":141,"breadcrumbs":4,"title":2},"48":{"body":123,"breadcrumbs":5,"title":3},"49":{"body":72,"breadcrumbs":4,"title":2},"5":{"body":31,"breadcrumbs":5,"title":4},"50":{"body":116,"breadcrumbs":5,"title":3},"51":{"body":82,"breadcrumbs":4,"title":2},"52":{"body":153,"breadcrumbs":5,"title":3},"53":{"body":67,"breadcrumbs":3,"title":1},"54":{"body":48,"breadcrumbs":4,"title":2},"55":{"body":70,"breadcrumbs":6,"title":4},"56":{"body":60,"breadcrumbs":4,"title":2},"57":{"body":48,"breadcrumbs":4,"title":2},"58":{"body":46,"breadcrumbs":4,"title":2},"59":{"body":50,"breadcrumbs":4,"title":2},"6":{"body":24,"breadcrumbs":5,"title":4},"60":{"body":40,"breadcrumbs":4,"title":2},"61":{"body":122,"breadcrumbs":4,"title":2},"62":{"body":80,"breadcrumbs":3,"title":1},"63":{"body":108,"breadcrumbs":4,"title":2},"64":{"body":39,"breadcrumbs":3,"title":1},"65":{"body":5,"breadcrumbs":1,"title":1},"66":{"body":15,"breadcrumbs":1,"title":1},"67":{"body":5,"breadcrumbs":1,"title":1},"68":{"body":12,"breadcrumbs":1,"title":1},"69":{"body":6,"breadcrumbs":1,"title":1},"7":{"body":85,"breadcrumbs":3,"title":2},"8":{"body":39,"breadcrumbs":5,"title":4},"9":{"body":8,"breadcrumbs":3,"title":2}},"docs":{"0":{"body":"Flux is a refinement type checker for Rust that lets you specify a range of correctness properties and have them be verified at compile time. See the examples -- listed in the summary on the left -- to learn about Refinement types and Rust. You can try it online here .","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Install » Installing Flux","id":"1","title":"Installing Flux"},"10":{"body":"Add this to the workspace settings i.e. .vscode/settings.json { \"rust-analyzer.check.overrideCommand\": [ \"cargo\", \"flux\", \"--workspace\", \"--message-format=json-diagnostic-rendered-ansi\" ]\n} Note: Make sure to edit the paths in the above snippet to point to the correct locations on your machine.","breadcrumbs":"Run » Rust-Analyzer in VSCode","id":"10","title":"Rust-Analyzer in VSCode"},"11":{"body":"","breadcrumbs":"Run » Configuration","id":"11","title":"Configuration"},"12":{"body":"You can set various env variables to customize the behavior of flux. FLUX_CONFIG tells flux where to find a config file for these settings. By default, flux searches its directory for a flux.toml or .flux.toml. FLUX_SYSROOT tells cargo-flux and rustc-flux where to find the flux-driver binary. Defaults to the default installation location in ~/.flux. FLUX_LOG_DIR=path/to/log/ sets the directory where constraints, timing and cache are saved. Defaults to ./log/. FLUX_DUMP_CONSTRAINT=1 tell flux to dump constraints generated for each function. FLUX_DUMP_CHECKER_TRACE=1 saves the checker's trace (useful for debugging!) FLUX_DUMP_TIMINGS=1 saves the profile information FLUX_DUMP_MIR=1 saves the low-level MIR for each analyzed function FLUX_POINTER_WIDTH=N the size of (either 32 or 64), used to determine if an integer cast is lossy (default 64). FLUX_CHECK_DEF=name only checks definitions containing name as a substring FLUX_CACHE=1\" switches on query caching and saves the cache in FLUX_CACHE_FILE FLUX_CACHE_FILE=file.json customizes the cache file, default FLUX_LOG_DIR/cache.json FLUX_CHECK_OVERFLOW=1 checks for over and underflow on arithmetic integer operations, default 0. When set to 0, it still checks for underflow on unsigned integer subtraction.","breadcrumbs":"Run » Environment Variables","id":"12","title":"Environment Variables"},"13":{"body":"The config file is a .toml file that contains on each line the lowercase name of a flux command line flag without the FLUX_ prefix. Set environment variables take priority over the config file. The config file should be in the project root. For example, suppose your project root contains the following flux.toml. log_dir = \"./test\"\ndump_timings = true\ndump_mir = true\ncache = true and you run in the project root FLUX_DUMP_MIR=0 cargo-flux check then flux will create the directory ./test/ and write ./test/timings, a file containing profiling information. It will not dump the MIR because that setting was overridden by setting the environment variable FLUX_DUMP_MIR=0.","breadcrumbs":"Run » Config file","id":"13","title":"Config file"},"14":{"body":"Some flags can be configured on a per-crate basis using the custom inner attribute #![flux::cfg]. This annotation relies on the unstable custom inner attributes feature. To be able to use with a non-nightly compiler you have to put it under a cfg_attr. For example, to enable overflow checking: #![cfg_attr(flux, flux::cfg(check_overflow = true))] The only flag supported now is overflow checking.","breadcrumbs":"Run » Crate Config","id":"14","title":"Crate Config"},"15":{"body":"FLUX_CACHE=1 persistently caches the safe fixpoint queries for each DefId in FLUX_LOG_DIR/FLUX_CACHE_FILE, and on subsequent runs, skips queries that are already in the cache, which considerably speeds up cargo-flux check on an entire crate.","breadcrumbs":"Run » Query Caching","id":"15","title":"Query Caching"},"16":{"body":"This is a WIP guide to writing specifications in flux.","breadcrumbs":"Specs » Flux Specification Guide","id":"16","title":"Flux Specification Guide"},"17":{"body":"Indexed Type : An indexed type B[r] is composed of a base Rust type B and a refinement index r. The meaning of the index depends on the type. Some examples are i32[n]: denotes the (singleton) set of i32 values equal to n. List[n]: values of type List of length n. Refinement parameter : Function signatures can be parametric on refinement variables. Refinement parameters are declared using the @n syntax. For example, the following signature: fn(i32[@n]) -> i32[n + 1] binds n over the entire scope of the function to specify that it takes an i32 equal to n and returns an i32 equal to n + 1. This is analogous to languages like Haskell where a lower case letter can be used to quantify over a type, e.g., the type a -> a in Haskell is polymorphic on the type a which is bound for the scope of the entire function type. Existential Type : An existential type B{v: r(v)} is composed of a base type B, a refinement variable v and a refinement predicate r on v. Intuitively, a Rust value x has type B{v: r(v)} if there exists a refinement value a such that r(a) holds and x has type B[x]. i32{v: v > 0}: set of positive i32 values. List{v: v > 0}: set of non-empty lists. Constraint Type : A constraint type has the form {T | r} where T is any type (not just a base type). Intuitively, a value has type {T | r} if it has type T and also r holds. They can be used to constraint a refinement parameter. For example, the following signature constraint the refinement parameter n to be less than n. fn({i32[@n] | n < 10}) -> i32[n + 1] Constraint types serve a similar role as existentials as they can also be used to constraint some refinement value with a predicate, but an existential type can only be used to constraint refinement variable that it bound locally, in contrast constraint types can be used to constraint a \"non-local\" parameter. This can be seen in the example above where the parameter n cannot be bound locally because it has to be used in the return type.","breadcrumbs":"Specs » Refinement Types","id":"17","title":"Refinement Types"},"18":{"body":"The @n syntax used to declare refinements parameters can be hard to read sometimes. Flux also supports a syntax that let you bind refinement parameters using colons similar to the syntax used to declare arguments in a function. We call this argument syntax . This syntax desugars to one of the refinements forms discussed above. For example, the following signature fn(x: i32, y: i32) -> i32[x + y] desugars to fn(i32[@x], i32[@y]) -> i32[x + y] It is also possible to attach some constraint to the parameters when using argument syntax. For example, to specify that y must be greater than x using argument syntax we can write: fn(x: i32, y: i32{x > y}) -> i32[x + y] This will desugar to: fn(i32[@x], {i32[@y] | x > y}) -> i32[x + y]","breadcrumbs":"Specs » Argument Syntax","id":"18","title":"Argument Syntax"},"19":{"body":"Sometimes you may want to refine a struct or function that outside your code. We refer to such a specification as an \"extern spec,\" which is short for \"external specification.\" Flux right now has rudimentary support for extern specs: they are supported for functions, impls, and structs. Impls are only supported for structs and if you have multiple impls for a struct (such as &[T] and [T]), those may conflict. Structs only support opaque refinements.","breadcrumbs":"Specs » Extern specs","id":"19","title":"Extern specs"},"2":{"body":"rustup liquid-fixpoint z3 Be sure that the liquid-fixpoint and z3 executables are in your $PATH.","breadcrumbs":"Install » Requirements","id":"2","title":"Requirements"},"20":{"body":"In order to use an extern spec you need to add a dependency on flux_rs . Right now this needs to be done as a local dependency since it is not published. Below is an example of how you can include it, although the version may be different. [dependencies]\nflux-rs = { path = \"path-to-flux/flux/flux-rs\", version = \"0.1.0\" } Then in your code you will need to include the extern_spec attribute macro. use flux_rs::extern_spec;","breadcrumbs":"Specs » Import the procedural macros","id":"20","title":"Import the procedural macros"},"21":{"body":"An example of refining an extern function can be found here . To define an extern spec on a function, you need to do three things, which happen to correspond to each of the below lines. #[extern_spec(std::mem)]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\nfn swap(a: &mut i32, b: &mut i32); Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::mem. You can use this path to qualify the function. So in the above example, the function we are targeting has the full path of std::mem::swap. Add a #[flux::sig(...)] attribute. This is required for any extern spec on a function. This signature behaves as if the #[flux::trusted] attribute was added, because we can't actually check the implementation. We just verify some simple things, like that the function arguments have compatible types. Write a function stub that matches the external function. If you do the above, you can use std::mem::swap as if it were refined by the above type. You shouldn't need to know the details, but here's how the macro works. It parses the std::mem into a module path and then transforms the function into #[flux::extern_spec]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\n#[allow(unused, dead_code)]\nfn __flux_extern_spec_swap(a: &mut i32, b: &mut i32) { std::mem::swap(a, b)\n} It does this to get information about the function std::mem::swap and its arguments (this turns out to be difficult to do without giving the compiler something to inspect and type check).","breadcrumbs":"Specs » Extern functions","id":"21","title":"Extern functions"},"22":{"body":"An example of refining an extern struct and impl can be found here . A simpler example just involving structs can be found here . The syntax for an extern spec on a struct is very similar to that for a function. Once again, each line in the example happens to correspond to a step. #[extern_spec(std::string)]\n#[flux::refined_by(len: int)]\nstruct String; Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::string. You can use this path to qualify the function. So in the above example, the struct we are targeting has the full path of std::string::String. Add a #[flux::refined_by(...)] attribute. This is required for any extern spec on a struct. Right now these attributes behave as if they were opaque (#[flux::opaque]), although we may support non-opaque extern structs. Write a stub for the extern struct. If you do the above, you can use std::string::String as if it were refined by an integer index. The syntax for an extern impl is a little different than that for functions or structs. #[extern_spec(std::string)]\nimpl String { #[flux::sig(fn() -> String[0])] fn new() -> String; #[flux::sig(fn(&String[@n]) -> usize[n])] fn len(s: &String) -> usize;\n} You still need to add the #[extern_spec] attribute, with the same optional argument of the path as above. You need to write out the impl block for the struct you want to refine. This struct does not need an extern spec, since by refining the impl you're only refining its methods. Write an extern spec for each function you wish to refine (this may be a subset). This is written just like a function extern spec with the caveat that the self parameter is not presently supported. So for example, instead of writing fn len(&self) -> usize;, you need to write fn len(s: &String) -> usize;. If you do the above, you can use the above methods ofstd::string::String as if they were refined. You shouldn't need to know the details, but here's how the above two macros expand. For structs: #[flux::extern_spec]\n#[allow(unused, dead_code)]\n#[flux::refined_by(len: int)]\nstruct __FluxExternSpecString(std::string::String); For impls (this was translated manually so there might be some bugs): #[allow(unused, dead_code)]\nstruct __FluxExternImplStructString; #[allow(unused, dead_code)]\nimpl __FluxExternImplStructString { #[flux::extern_spec] #[flux::sig(fn() -> String[0])] #[allow(unused, dead_code)] fn __flux_extern_spec_new() -> String { std::string::String::new::<>() } #[flux::extern_spec] #[flux::sig(fn(&String[@n]) -> usize[n])] #[allow(unused, dead_code)] fn __flux_extern_spec_len(s: &String) -> usize { std::string::String::len::<>(s) }\n}","breadcrumbs":"Specs » Extern structs and impls","id":"22","title":"Extern structs and impls"},"23":{"body":"r ::= n // numbers 1,2,3... | x // identifiers x,y,z... | x.f // index-field access | r + r // addition | r - r // subtraction | n * e // multiplication by constant | if r { r } else { r } // if-then-else | f(r...) // function application | true | false // booleans | r == r // equality | r != r // not equal | r < r // less than | r <= r // less than or equal | r > r // greater than | r >= r // greater than or equal | r || r // disjunction | r && r // conjunction | r => r // implication | !r // negation","breadcrumbs":"Specs » Grammar of Refinements","id":"23","title":"Grammar of Refinements"},"24":{"body":"","breadcrumbs":"Develop » Developer's Guide","id":"24","title":"Developer's Guide"},"25":{"body":"You can run the various regression tests in the tests/pos and tests/neg directories using cargo xtask test This will build the flux binary and then run it against the entire test suite. You can optionally pass a filter to only run tests containing some substring. For example: $ cargo xtask test impl_trait Compiling xtask v0.1.0 (/path/to/flux/xtask) Finished dev [unoptimized + debuginfo] target(s) in 0.29s Running `target/debug/xtask test impl_trait`\n$ cargo build Finished dev [unoptimized + debuginfo] target(s) in 0.05s\n$ cargo test -p flux-tests -- --test-args impl_trait Compiling flux-tests v0.1.0 (/path/to/flux/flux-tests) Finished test [unoptimized + debuginfo] target(s) in 0.62s Running tests/compiletest.rs (target/debug/deps/compiletest-1241128f1f51caa4) running 5 tests\ntest [ui] pos/surface/impl_trait04.rs ... ok\ntest [ui] pos/surface/impl_trait03.rs ... ok\ntest [ui] pos/surface/impl_trait01.rs ... ok\ntest [ui] pos/surface/impl_trait00.rs ... ok\ntest [ui] pos/surface/impl_trait02.rs ... ok test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 191 filtered out; finished in 0.10s running 2 tests\ntest [compile-fail] neg/surface/impl_trait00.rs ... ok\ntest [compile-fail] neg/surface/impl_trait02.rs ... ok test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 207 filtered out; finished in 0.09s","breadcrumbs":"Develop » Regression Tests","id":"25","title":"Regression Tests"},"26":{"body":"When working on Flux, you may want to test your changes by running it against a test file. You can use cargo xtask run to run Flux on a single input file. The command will set appropriate flags to be able to use custom Flux attributes and macros, plus some extra flags useful for debugging. For example: $ cat test.rs\n#[flux::sig(fn(x: i32) -> i32[x + 1])]\nfn add1(x: i32) -> i32 { x + 1\n}\n$ cargo xtask run test.rs The command will use a super set of the flags passed when running regression tests. Thus, a common workflow is to identify a failing test and run it directly with cargo xtask run, or alternatively copy it to a different file. You may also find useful to create a directory in the root of the project and add it to .git/info/exclude . You can keep files there, outside of version control, and test Flux against them. I have a directory called attic/ where I keep a file named playground.rs. To run Flux on it, I do cargo xtask run attic/playground.rs.","breadcrumbs":"Develop » Testing Flux on a File","id":"26","title":"Testing Flux on a File"},"27":{"body":"When you use cargo xtask run you'll see that we report the location an error was emitted, e.g., error[FLUX]: refinement type error --> attic/playground.rs:4:5 |\n4 | 0 | ^ a postcondition cannot be proved\n-Ztrack-diagnostics: created at crates/flux-refineck/src/lib.rs:114:15 <------- this You can also pass -Ztrack-diagnostics=y to enable it if you are not using cargo xtask run","breadcrumbs":"Develop » Reporting locations where errors are emitted","id":"27","title":"Reporting locations where errors are emitted"},"28":{"body":"To run Flux in a package outside the flux repo you need to install the binaries globally. You can do that using cargo xtask install. If you are continuously testing new changes it could be annoying to do it each time. To deal with this, you can set the FLUX_SYSROOT environment variable to change the location where cargo-flux and rustc-flux load the flux-driver. You can set it globally to point to the target/debug directory inside your local copy of the repo. This way you won't have to run cargo xtask install after every change, and you can be sure you'll be using the latest local debug build. Just be aware that the rustc-flux and cargo-flux binaries are built for a specific toolchain, and you will get a dynamic linking error if the flux-driver was compiled with a different one. This is to say, you should at least run cargo xtask install every time after the toolchain is updated.","breadcrumbs":"Develop » Running outside the project","id":"28","title":"Running outside the project"},"29":{"body":"Set FLUX_DUMP_TIMINGS=true to have flux write timing diagnostics to ./log/timings. Right now this is extremely simple, it just provides some details for the spans under flux_typeck and flux_driver.","breadcrumbs":"Develop » Profiling Flux","id":"29","title":"Profiling Flux"},"3":{"body":"The only way to use flux is to build it from source. First you need to clone the repository git clone https://github.com/flux-rs/flux\ncd flux To build the source you need a nightly version of rustc. We pin the version using a toolchain file (more info here ). If you are using rustup, no special action is needed as it should install the correct rustc version and components based on the information on that file. Next, run the following to build and install flux binaries cargo xtask install This will install two binaries rustc-flux and cargo-flux in your cargo home. These two binaries should be used respectively to run flux on either a single file or on a project using cargo. The installation process will also copy some files to $HOME/.flux.","breadcrumbs":"Install » Installing","id":"3","title":"Installing"},"30":{"body":"Below is a sample output for an invocation of cargo-flux check that took 19 seconds. The missing 2 seconds approximately accounts for the time it takes for cargo check to run. Note that check_crate contains everything running under check_top, which is why the sum of the spans is greater than 19 seconds. check_top Checker::infer num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 2.62ms max: 24.12ms total time: 229.64ms Checker::check num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 5.24ms max: 159.91ms total time: 2028.47ms FixpointCtx::check num events: 205 min non-zero: 22.02ms 1st quartile: 26.21ms 2nd quartile: 28.31ms 3rd quartile: 40.37ms max: 1867.51ms total time: 9106.36ms\ntotal time: 11364.47ms check_crate Callbacks::check_wf num events: 1 min non-zero: 18.35ms 1st quartile: 18.87ms 2nd quartile: 18.87ms 3rd quartile: 18.87ms max: 18.87ms total time: 18.87ms Callbacks::check_crate num events: 1 min non-zero: 16986.93ms 1st quartile: 16995.32ms 2nd quartile: 16995.32ms 3rd quartile: 16995.32ms max: 16995.32ms total time: 16995.32ms\ntotal time: 17014.19ms","breadcrumbs":"Develop » Sample output","id":"30","title":"Sample output"},"31":{"body":"Flux is implemented as a compiler driver . We hook into the compiler by implementing the Callbacks trait. The implementation is located is in the flux-driver crate, and it is the main entry point to Flux.","breadcrumbs":"Develop » Architecture » High-level Architecture","id":"31","title":"High-level Architecture"},"32":{"body":"crates/flux-bin: Contains the cargo-flux and rustc-flux binaries used to launch the flux-driver. crates/flux-common: Common utility definitions used across all crates. crates/flux-config: Crate containing logic associated with global configuration flags that change the behavior of Flux, e.g, to enable or disable overflow checking. crates/flux-desugar: Implementation of name resolution and desugaring from Flux surface syntax into Flux high-level intermediate representation (fhir). This includes name resolution. crates/flux-driver: Main entry point to Flux. It contains the flux-driver binary and the implementation of the Callbacks trait. crates/flux-errors: Utility definitions for user facing error reporting. crates/flux-fhir-analysis: Implements the \"analyses\" performed in the fhir, most notably well-formedness checking and conversion from fhir into rty. crates/flux-fixpoint: Code to interact with the Liquid Fixpoint binary. crates/flux-macros: Procedural macros used internally to implement Flux. crates/flux-metadata: Logic for saving Flux crate metadata that can be used to import refined signatures from external crates. crates/flux-middle: This crate contains common type definitions that are used by the rest of Flux like the rty and fhir intermediate representations. Akin to rustc_middle . crates/flux-refineck: Implementation of refinement type checking. crates/flux-syntax: Definition of the surface syntax AST and parser. crates/flux-tests: Flux regression tests. lib/flux-attrs: Implementation of user facing procedural macros for annotating programs with Flux specs. lib/flux-rs: This is just a re-export of the macros implemented in flux-attrs. The intention is to eventually put Flux \"standard library\" here, i.e., a set of definitions that are useful when working with Flux.","breadcrumbs":"Develop » Architecture » Crates","id":"32","title":"Crates"},"33":{"body":"Flux has several intermediate representations (IR) for types. They represent a refined version of an equivalent type in some rustc IR. We have picked a distinct verb to refer to the process of going between these different representations to make it easier to refer to them. The following image summarizes all the IRs and the process for going between them. IRs diagram","breadcrumbs":"Develop » Architecture » Intermediate Representations","id":"33","title":"Intermediate Representations"},"34":{"body":"The surface IR represents source level Flux annotations. It corresponds to the rustc_ast data structures in rustc. The definition as well as the parser is located in the flux-syntax crate.","breadcrumbs":"Develop » Architecture » Surface","id":"34","title":"Surface"},"35":{"body":"The Flux High-Level Intermediate Representation (fhir) is a refined version of rustc's hir . The definition is located in the flux_middle crate inside the fhir module. The process of going from surface to fhir is called desugaring , and it is implemented in the flux-desugar crate.","breadcrumbs":"Develop » Architecture » Fhir","id":"35","title":"Fhir"},"36":{"body":"The definition in the flux_middle::rty module correspond to a refined version of the main rustc representation for types defined in rustc_middle::ty . The process of going from fhir to rty is called conversion , and it is implemented in the flux_fhir_analysis::conv module.","breadcrumbs":"Develop » Architecture » Rty","id":"36","title":"Rty"},"37":{"body":"The definition in the flux_middle::rustc module correspond to simplified version of data structures in rustc. They can be understood as the currently supported subset of Rust. The process of going from a definition in rustc_middle into flux_middle::rustc is called lowering and it is implemented in flux_middle::rustc::lowering.","breadcrumbs":"Develop » Architecture » Simplified Rustc","id":"37","title":"Simplified Rustc"},"38":{"body":"Besides the different translation between Flux intermediate representations, there are two ways to get a refined version from a rust type. The process of going from a type in hir into a type in fhir is called lifting , and it is implemented in flux_middle::fhir::lift. The process for going from a type in flux_middle::rustc::ty into a flux_middle::rty is called refining , and it is implemented flux_middle::rty::refining.","breadcrumbs":"Develop » Architecture » Lifting and Refining","id":"38","title":"Lifting and Refining"},"39":{"body":"Online demo Types bring order to code. For example, if a variable i:usize then we know i is a number that can be used to index a vector. Similarly, if v:vec<&str> then we can be sure that v is a collection of strings which may be indexed but of course, not used as an index. However, by itself usize doesn't tell us how big or small the number and hence the programmer must still rely on their own wits, a lot of tests, and a dash of optimism, to ensure that all the different bits fit properly at run-time. Refinements are a promising new way to extend type checkers with logical constraints that specify additional correctness requirements that can be verified by the compiler, thereby entirely eliminating various classes of run-time problems. We're excited to introduce Flux , a refinement type checker plugin that brings this technology to Rust.","breadcrumbs":"Introducing Flux » Introducing Flux","id":"39","title":"Introducing Flux"},"4":{"body":"You can run flux on a single file or entire crate.","breadcrumbs":"Run » Running Flux","id":"4","title":"Running Flux"},"40":{"body":"The most basic form of refinement type in flux is a type that is indexed by a logical value. For example Type Meaning i32[10] The (singleton) set of i32 values equal to 10 bool[true] The (singleton) set of bool values equal to true","breadcrumbs":"Introducing Flux » Indexed Types","id":"40","title":"Indexed Types"},"41":{"body":"We can already start using these indexed types to start writing (and checking) code. For example we can write the following specification which says that the value returned by mk_ten must in fact be 10 #[flux::sig(fn() -> i32[10])]\npub fn mk_ten() -> i32 { 5 + 4\n} but when you compile it, flux will say error[FLUX]: postcondition might not hold --> src/basics.rs:7:5 |\n7 | 5 + 4 | ^^^^^ The error says that that the postcondition might not hold which means that the output produced by mk_ten may not in fact be an i32[10] as indeed, in this case, the result is 9! You can eliminate the error by replacing the body with 5 + 5 or just 10.","breadcrumbs":"Introducing Flux » Post-Conditions","id":"41","title":"Post-Conditions"},"42":{"body":"Here's a second example that shows how you can use an index to restrict the space of inputs that a function expects. #[flux::sig(fn (b:bool[true]))]\npub fn assert(b:bool) { if !b { panic!(\"assertion failed\") }\n} Here, the refined specification for assert says that you can only call it with true as the input. So if you write fn test(){ assert(2 + 2 == 4); assert(2 + 2 == 5); // fails to type check\n} then flux will complain that error[FLUX]: precondition might not hold --> src/basics.rs:12:5 |\n12 | assert(2 + 2 == 5); // fails to type check | ^^^^^^^^^^^^^^^^^^ meaning that the call to assert fails to establish that the input is indeed true (as of course, in this case, it is not!)","breadcrumbs":"Introducing Flux » Pre-Conditions","id":"42","title":"Pre-Conditions"},"43":{"body":"It's not terribly exciting to only talk about fixed values like 10 or true. To be more useful, flux lets you index types by refinement parameters . For example, you can write #[flux::sig(fn(n:i32) -> bool[0 < n])]\npub fn is_pos(n: i32) -> bool { if 0 < n { true } else { false }\n} Here, the type says that is_pos takes as input some i32 indexed by n returns as output the bool indexed by 0 < n in other words, the output is true exactly when 0 < n. We might use this function to check that: pub fn test_pos(n: i32) { let m = if is_pos(n) { n - 1 } else { 0 }; assert(0 <= m);\n}","breadcrumbs":"Introducing Flux » Index Parameters and Expressions","id":"43","title":"Index Parameters and Expressions"},"44":{"body":"Often we don't care about the exact value of a thing -- but just care about some properties that it may have. For example, we don't care that an i32 is equal to 5 or 10 or n but that it is non-negative. Type Meaning i32{v: 0 < v} The set of i32 values that positive i32{v: n <= v} The set of i32 values greater than or equal to n Flux allows such specifications by pairing plain Rust types with assertions [1] that constrain the value. For example, we can rewrite mk_10 with the output type i32{v:0 i32{v: 0 < v})]\npub fn mk_ten() -> i32 { 5 + 5\n} Similarly, you might specify that a function that computes the absolute value of an i32 with a type which says the result is non-negative and exceeds the input n. #[flux::sig(fn (n:i32) -> i32{v:0<=v && n<=v})]\npub fn abs(n: i32) -> i32 { if 0 <= n { n } else { 0 - n }\n} As a last example, you might write a function to compute the factorial of n #[flux::sig(fn (n:i32) -> i32{v:1<=v && n<=v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; let mut res = 1; while i < n { i += 1; res = res * i; } res\n} Here the specification says the input must be non-negative, and the output is at least as large as the input. Note, that unlike the previous examples, here we're actually changing the values of i and res. Can you guess why the copilot suggestions failed to pass flux, and what refinements were inferred for i and res in the fixed code at the end?","breadcrumbs":"Introducing Flux » Existential Types","id":"44","title":"Existential Types"},"45":{"body":"In this post, we saw how Flux lets you decorate basic Rust types like i32 and bool with indices and constraints that let you respectively refine the sets of values that inhabit that type, and specify contracts on functions that state pre-conditions on the sets of legal inputs that they accept, and post-conditions that describe the outputs that they produce. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates, without sacrificing thread- or memory-safety. Next time, we'll see how Flux melds refinements and Rust's ownership to make refinements happily coexist with imperative code. These are not arbitrary Rust expressions but a subset of expressions from logics that can be efficiently decided by SMT Solvers","breadcrumbs":"Introducing Flux » Summary","id":"45","title":"Summary"},"46":{"body":"Online demo Previously we saw how to refine basic Rust types like i32 and bool with indices and constraints to constrain the set of values described by those types. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates , via the clever type system that keeps an eye on the ownership of resources to make sure that aliasing and mutation cannot happen at the same time. Next, lets see how Flux melds refinements and Rust's ownership mechanisms to make refinements work in the imperative setting.","breadcrumbs":"Ownership in Flux » Ownership in Flux","id":"46","title":"Ownership in Flux"},"47":{"body":"Rust's most basic form of ownership is exclusive ownership, in which exactly one variable in a function has the right to mutate a memory location. When a location is exclusively owned, we can be sure that there are no other references to it, which lets flux update the type whenever the location is changed. For example, consider the program #[flux::sig(fn () -> i32[3])]\npub fn mk_three() -> i32 { let mut r = 0; // r: i32[0] r += 1; assert(r == 1); // r: i32[1] r += 1; assert(r == 2); // r: i32[2] r += 1; assert(r == 3); // r: i32[3] r\n} The variable r has different types at each point inside mk_three. It starts off as i32[0]. The first increment changes it to i32[1], then i32[2] and finally, the returned type i32[3]. This exclusive ownership mechanism is at work in the factorial example we signed off with previously #[flux::sig(fn (n:i32{0 <= n}) -> i32{v:n <= v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; // i: i32[0] let mut r = 1; // r: i32[1] while i < n { // i: i32{v:0<=v<=n} // r: i32{v:1<=v && i<=v} i += 1; r = r * i; } r\n} In the above code, i and r start off at 0 and 1 but then Rust infers (a story for another day) that inside the while-loop [1] i has type i32{v:0<=v && v < n} r has type i32{v:1<=v && i <= v} and hence, upon exit since i == n we get that the result is at least n.","breadcrumbs":"Ownership in Flux » Exclusive Ownership","id":"47","title":"Exclusive Ownership"},"48":{"body":"Exclusive ownership suffices for simple local updates like in factorial. However, for more complex data, functions must temporarily relinquish ownership to allow other functions to mutate the data. Rust cleverly allows this via the notion of borrowing using two kinds of references that give callees temporary access to a memory location. The simplest kind of references are of the form &T which denote read-only access to a value of type T. For example, we might write abs to take a shared reference to an i32 #[flux::sig(fn (p: &i32[@n]) -> i32{v:0<=v && n<=v})]\npub fn abs(p: &i32) -> i32 { let n = *p; if 0 <= n { n } else { 0 - n }\n} Notice that the input type has changed: the function now Accepts p a reference to an i32 whose value is n as denoted by @n Returns an i32 that is non-negative and larger than n The @ marks the n as a refinement parameter whose value is automatically computed by flux during type checking. So, for example, Flux can check the below code by automatically determining that the refinement parameter at the call-site is 10. pub fn test_abs() { let z = 10; assert(0 <= abs(&z)) assert(10 <= abs(&z))\n}","breadcrumbs":"Ownership in Flux » Borrowing: Shared References","id":"48","title":"Borrowing: Shared References"},"49":{"body":"As an aside, we have secretly been using refinement parameters like @n all along. For example, Flux automatically desugars the signature fn(n:i32{0 <= n} -> ... that we wrote for factorial into fn ({i32[@n] : 0 <= n}) -> i32{v:n <= v} where @n is a refinement parameter that is implicitly determined from the rust parameter n:i32. However, explicit parameters are essential to name the value of what a reference points to. In abs the rust parameter p names the reference but the @n names the (input) value and lets us use it to provide more information about the output of abs. Flux is modular in that the only information it knows about the implementation of abs is the signature: for example if we remove the fact that the output exceeds n then Flux will reject the assertion 10 <= abs(&z).","breadcrumbs":"Ownership in Flux » Refinement Parameters","id":"49","title":"Refinement Parameters"},"5":{"body":"You can use rustc-flux as you would use rustc. For example, the following command checks the file test.rs. rustc-flux path/to/test.rs The flux binary accepts the same flags as rustc. You could for example check a file as a library instead of a binary like so rustc-flux --crate-type=lib path/to/test.rs","breadcrumbs":"Run » Running on a File: rustc-flux","id":"5","title":"Running on a File: rustc-flux"},"50":{"body":"References of type &mut T denote mutable references that can be used to (read and) write or update the contents of a T value. Crucially, Rust ensures that while there may be multiple read-only (shared) references to a location, there is at most one active writeable (mutable) reference at any point in time. Flux exploits the semantics of &mut T to treat T as an invariant of the underlying data. As an example, consider the following function that decrements the value of a mutable reference while ensuring the data is non-negative: #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { *p = *p - 1;\n} Flux will complain with the following message error[FLUX]: assignment might be unsafe --> src/basics.rs:13:9 |\n13 | *p = *p - 1; | ^^^^^^^^^^^ as in fact, we may be writing a negative value into *p if, for example, the old value was zero. We can fix this code by guarding the update with a test that ensures the original contents are in fact non-zero #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { let n = *p; if n != 0 { *p = n - 1; }\n} at which point Flux is happy to sign off on the code.","breadcrumbs":"Ownership in Flux » Borrowing: Mutable References","id":"50","title":"Borrowing: Mutable References"},"51":{"body":"Flux uses Rust's borrowing rules to track invariants even when there may be aliasing. As an example, consider the function #[flux::sig(fn (bool) -> i32{v:0 <= v})]\nfn test_alias(z: bool) -> i32 { let mut x = 1; // x: i32[1] let mut y = 2; // y: i32[2] let r = if z { &mut x } else { &mut y }; // r: &mut i32{v:0 <= v} decr(r); *r\n} The reference r could point to either x or y depending on the (unknown) value of the boolean z. Nevertheless, Flux determines that both references &mut x and &mut y point to values of the more general type i32{v:0<=v} and hence, infers r : &mut i32{v:0<=v} which allows us it to then call decr with the reference and guarantee the result (after decr) is still non-negative.","breadcrumbs":"Ownership in Flux » Aliased References","id":"51","title":"Aliased References"},"52":{"body":"In many situations, we want to lend a value to another function that actually changes the value's (refinement) type upon exit. For example, consider the following function to increment a reference to a non-negative i32 #[flux::sig(fn (p: &mut i32{v:0 <= v}))]\nfn incr(p: &mut i32) { *p += 1\n} Recall that Flux is modular in that the only information it has about incr is what is said in the signature. The signature for incr only says p remains non-negative: Flux does not know that incr actually increments the value of p. Hence, Flux fusses that the following assert may fail even though its patently obvious that it will succeed! To verify test_incr we need a signature for incr that says that its output is indeed one greater [2] than its input. Flux extends Rust with the notion of strong references of the form &strg T which refine Rust's &mut T to grant exclusive access to the underlying T. Crucially, strong references also let us specify how the type is updated when the function exits [3] . Thus, we can use strong references to type incr as #[flux::sig(fn(p: &strg i32[@n]) ensures p:i32[n+1])]\nfn incr(p: &mut i32) { *p += 1\n} The Flux signature refines the plain Rust one to specify that p is a strong reference to an i32, the input type of *p is i32[n], and the output type of *p is i32[n+1]. With this specification, Flux merrily checks test_incr, by determining that the refinement parameter @n is 10 and hence, that upon return x: i32[11].","breadcrumbs":"Ownership in Flux » Borrowing: Strong References","id":"52","title":"Borrowing: Strong References"},"53":{"body":"To sum up, Flux exploits Rust's ownership mechanisms to track properties of shared (&T) and mutable (&mut T) references, and additionally adds a strong (&strg T) reference -- a special case of &mut -- to support the cases where the type itself is changed by a call. Next, we'll see how refinements and ownership yield a simple refined API for vectors that lets Flux check bounds safety at compile time... For those familiar with the term, these types are loop invariants [2] : Setting aside the issue of overflows for now [3] : Thereby allowing so-called strong updates in the type specifications","breadcrumbs":"Ownership in Flux » Summary","id":"53","title":"Summary"},"54":{"body":"Online demo While rustc has a keen eye for spotting nasty bugs at compile time, it is not omniscient. We've all groaned in dismay at seeing deployed code crash with messages like panicked at 'index out of bounds: the len is ... but the index is ...' Next, lets see how flux's refinement and ownership mechanisms let us write a refined vector API whose types track vector sizes and ensure --- at compile time --- that vector accesses cannot fail at runtime.","breadcrumbs":"Refined Vectors » Refined Vectors","id":"54","title":"Refined Vectors"},"55":{"body":"To begin with, we will defined a refined vector type which is simply a wrapper around the standard Vec type #[flux::refined_by(len: int)]\npub struct RVec { inner: Vec,\n} The #[flux::refined_by(len: int)] attribute tells flux that the type RVec struct is indexed by a len refinement which tracks the size of the underlying vector, just like the indices for i32 and bool tracked the actual value of the underlying integer or boolean ). The idea is that the type RVec[10] represents a vector of i32 size 10, and RVec{v:0 < v} represents a non-empty vector of bool, and RVec[n]>[m] represents a vector of vectors of f32 of size m and each of whose elements is a vector of size n.","breadcrumbs":"Refined Vectors » Refining Vectors to Track their Size","id":"55","title":"Refining Vectors to Track their Size"},"56":{"body":"Now that we can talk about the size of a vector, lets build up an API for creating and manipulating vectors. I suppose one must start with nothing: an empty vector. impl RVec { #[flux::trusted] #[flux::sig(fn() -> RVec[0])] pub fn new() -> Self { Self { inner: Vec::new() } }\n} The above implements RVec::new as a wrapper around Vec::new. The #[flux::trusted] attribute tells Flux there is nothing to \"check\" here, as we are defining the API itself and trusting that the implementation (using vec is correct). However, the signature says that callers of the RVec::new get back a vector indexed with 0 i.e. an empty vector.","breadcrumbs":"Refined Vectors » Creating Vectors","id":"56","title":"Creating Vectors"},"57":{"body":"An empty vector is a rather desolate thing. To be of any use, we need to be able to push values into the container, like so #[flux::trusted]\n#[flux::sig(fn(self: &strg RVec[@n], T) ensures self: RVec[n+1])]\npub fn push(&mut self, item: T) { self.inner.push(item);\n} The refined type for push says that it takes a strong reference (self) --- where strg means the refined type may be changed by the function --- to an RVec of size n and a value T and upon exit, the size of self is increased by 1.","breadcrumbs":"Refined Vectors » Pushing Values","id":"57","title":"Pushing Values"},"58":{"body":"Not much point stuffing things into a vector if we can't get them out again. For that, we might implement a pop method that returns the last element of the vector. Aha, but what if the vector is empty? You could return an Option or since we're tracking sizes, we could require that pop only be called with non-empty vectors. #[flux::trusted]\n#[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T ensures self: RVec[n-1])]\npub fn pop(&mut self) -> T { self.inner.pop().unwrap()\n}","breadcrumbs":"Refined Vectors » Popping Values","id":"58","title":"Popping Values"},"59":{"body":"Now already flux can start checking some code, for example if you push two elements, then you can pop twice, but flux will reject the third pop at compile-time In fact, the error message from flux will point to exact condition that does not hold error[FLUX]: precondition might not hold --> src/vectors.rs:24:5 |\n24 | v.pop(); | ^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:78:47 |\n78 | #[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T | ^^^^^","breadcrumbs":"Refined Vectors » Using the API","id":"59","title":"Using the API"},"6":{"body":"Flux is integrated with cargo and can be invoked in a package as follows: cargo flux By default, Flux won't verify a package unless it's explicitly enabled in the manifest. To do so add the following to Cargo.toml: [package.metadata.flux]\nenabled = true","breadcrumbs":"Run » Running on a package: cargo-flux","id":"6","title":"Running on a package: cargo-flux"},"60":{"body":"Perhaps we should peek at the size of the vector to make sure its not empty before we pop it. We can do that with a len method whose type says that the returned usize is, in fact, the size of the input vector #[flux::trusted]\n#[flux::sig(fn(&RVec[@n]) -> usize[n])]\npub fn len(&self) -> usize { self.inner.len()\n} Now, flux \"knows\" that after two pushes, the size of the vector is 2 and after the two pops, the size is 0 again","breadcrumbs":"Refined Vectors » Querying the Size","id":"60","title":"Querying the Size"},"61":{"body":"Of course, vectors are not just stacks , they also allow random access to their elements which is where those pesky panics occur, and where the refined vector API gets rather useful. Since we're tracking sizes, we can require that the method to get an element only be called with a valid index that is between 0 and the vector's size #[flux::sig(fn(&RVec[@n], i: usize{i < n}) -> &T)]\npub fn get(&self, i: usize) -> &T { &self.inner[i]\n} #[flux::sig(fn(&mut RVec[@n], i: usize{i < n}) -> &mut T)]\npub fn get_mut(&mut self, i: usize) -> &mut T { &mut self.inner[i]\n} With these refined get methods, flux can now spot the ``off-by-one'' error in the following code and accepts the fix [1] Its a bit gross to use get and get_mut directly, so instead we implement the Index and IndexMut traits for RVec which allows us to use the [] operator to access elements impl std::ops::Index for RVec { type Output = T; #[flux::sig(fn(&RVec[@n], i:usize{i < n}) -> &T)] fn index(&self, index: usize) -> &T { self.get(index) }\n} impl std::ops::IndexMut for RVec { #[flux::sig(fn(&mut RVec[@n], i:usize{i < n}) -> &mut T)] fn index_mut(&mut self, index: usize) -> &mut T { self.get_mut(index) }\n} And now the above vec_sum example looks a little nicer","breadcrumbs":"Refined Vectors » Random Access","id":"61","title":"Random Access"},"62":{"body":"Lets put the whole API to work in this \"memoized\" version of the fibonacci function which uses a vector to store the results of previous calls pub fn fib(n: usize) -> i32 { let mut r = RVec::new(); let mut i = 0; while i < n { if i == 0 { r.push(0); } else if i == 1 { r.push(1); } else { let a = r[i - 1]; let b = r[i - 2]; r.push(a + b); } i += 1; } r.pop()\n} Oops, flux is not happy with the call to pop at the end of the function which returns the last value as the result. error[FLUX]: precondition might not hold --> src/vectors.rs:40:5 |\n40 | r.pop() | ^^^^^^^ Flux complains that the vector may be empty and so the pop call may fail ... but why? Can you spot the problem? Indeed, we missed a \"corner\" case -- when n is 0 we skip the loop and so the vector is empty! Once we add a test for that, flux is happy.","breadcrumbs":"Refined Vectors » Memoization","id":"62","title":"Memoization"},"63":{"body":"As a last example, lets look at a simplified version of the binary_search method from std::vec , into which I've snuck a tiny little bug pub fn binary_search(vec: &RVec, x: i32) -> Result { let mut size = vec.len(); let mut left = 0; let mut right = size; while left <= right { let mid = left + size / 2; let val = vec[mid]; if val < x { left = mid + 1; } else if x < val { right = mid; } else { return Ok(mid); } size = right - left; } Err(left)\n} Flux complains in two places error[FLUX]: precondition might not hold --> src/vectors.rs:152:19 |\n152 | let val = vec[mid]; | ^^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:189:44 |\n189 | #[flux::sig(fn(&RVec[@n], usize{v : v < n}) -> &T)] | ^^^^^ error[FLUX]: arithmetic operation may overflow --> src/vectors.rs:160:9 |\n160 | size = right - left; | ^^^^^^^^^^^^^^^^^^^ The vector access may be unsafe as mid could be out of bounds! The size variable may underflow as left may exceed right! Can you the spot off-by-one and figure out a fix?","breadcrumbs":"Refined Vectors » Binary Search","id":"63","title":"Binary Search"},"64":{"body":"So, we saw how Flux's index and constraint mechanisms combine with Rust's ownership to let us write a refined vector API that ensures the safety of all accesses at compile time. Next time, we'll see how these mechanisms are compositional in that we can use standard type machinery to build up compound structures and APIs from simple ones. Why not use an iterator? We'll get there in due course!","breadcrumbs":"Refined Vectors » Summary","id":"64","title":"Summary"},"65":{"body":"Flux is a research project described in the paper","breadcrumbs":"About » About Flux","id":"65","title":"About Flux"},"66":{"body":"Flux is being developed by Nico Lehmann , Adam Geller Cole Kurashige Gilles Barthe Niki Vazou Ranjit Jhala","breadcrumbs":"About » Team","id":"66","title":"Team"},"67":{"body":"Flux is open-source and available here","breadcrumbs":"About » Code","id":"67","title":"Code"},"68":{"body":"This work was supported by the National Science Foundation, European Research Council, and by generous gifts from Microsoft Research.","breadcrumbs":"About » Thanks","id":"68","title":"Thanks"},"69":{"body":"This is a prototype! Use at your own risk. Everything could break and it will break.","breadcrumbs":"About » Limitations","id":"69","title":"Limitations"},"7":{"body":"The following example declares a function inc that returns an integer greater than the input. We use the nightly feature register_tool to register the flux tool in order to add refinement annotations to functions. #[flux::sig(fn(x: i32) -> i32{v: x < v})]\npub fn inc(x: i32) -> i32 { x - 1\n} You can save the above snippet in say test0.rs and then run rustc-flux --crate-type=lib path/to/test0.rs you should see in your output error[FLUX]: postcondition might not hold --> test0.rs:3:5 |\n3 | x - 1 | ^^^^^ as indeed x - 1 is not greater than x as required by the output refinement i32{v: x < v}. If you fix the error by replacing x - 1 with x + 1, you should get no errors in the output (the output may be empty, but in this case no output is a good thing). Read these chapters to learn more about what you specify and verify with flux.","breadcrumbs":"Run » A tiny example","id":"7","title":"A tiny example"},"8":{"body":"The flux-driver binary is a rustc driver (similar to how clippy works) meaning it uses rustc as a library to \"drive\" compilation performing additional analysis along the way. Running the binary requires dynamically linking a correct version of librustc. Thus, to avoid the hassle you should never execute it directly. Instead, use rustc-flux or cargo-flux.","breadcrumbs":"Run » A note about the flux-driver binary","id":"8","title":"A note about the flux-driver binary"},"9":{"body":"This section assumes you have installed flux, cargo-flux, and rustc-flux.","breadcrumbs":"Run » Editor Support","id":"9","title":"Editor Support"}},"length":70,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":1,"docs":{"41":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"47":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"46":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"41":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"45":{"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":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"43":{"tf":1.0},"48":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}},"df":4,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"42":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"66":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"32":{"tf":1.0}}},"t":{"df":2,"docs":{"39":{"tf":1.0},"61":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"48":{"tf":1.0}},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"6":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"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":{"45":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"32":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"32":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.449489742783178},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"32":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"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":4,"docs":{"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"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":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"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":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"47":{"tf":2.0},"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"44":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":3.1622776601683795},"32":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"46":{"tf":1.0},"54":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"32":{"tf":2.23606797749979},"35":{"tf":2.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"47":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"x":{"df":6,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"54":{"tf":1.0},"64":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":4.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":1,"docs":{"61":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"46":{"tf":1.0}}}},"i":{"df":2,"docs":{"50":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"39":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"42":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":2,"docs":{"47":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"2":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":1,"docs":{"52":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"33":{"tf":2.0},"34":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"63":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}},"p":{"df":3,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"55":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":2.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178},"51":{"tf":2.8284271247461903},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"49":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":3.0},"47":{"tf":2.23606797749979},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"51":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"h":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"32":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"52":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":2.6457513110645907},"52":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}},"s":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"62":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"41":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"44":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"47":{"tf":4.242640687119285},"51":{"tf":2.23606797749979},"62":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"33":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"50":{"tf":2.449489742783178},"51":{"tf":2.0},"52":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":30,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.4641016151377544},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"49":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"32":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"32":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":14,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"32":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":2.0},"56":{"tf":1.0}}}}}},"df":2,"docs":{"47":{"tf":1.0},"50":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"i":{"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"62":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"32":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"32":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"52":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":3.872983346207417},"55":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"53":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"37":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"56":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":4.898979485566356},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"50":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"32":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":12,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.8284271247461903},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"39":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}},"v":{"df":1,"docs":{"54":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"51":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":1,"docs":{"41":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"47":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"46":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"41":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"45":{"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":8,"docs":{"31":{"tf":1.7320508075688772},"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}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"43":{"tf":1.0},"48":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}},"df":4,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"42":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"66":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"32":{"tf":1.0}}},"t":{"df":2,"docs":{"39":{"tf":1.0},"61":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"48":{"tf":1.0}},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"6":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"32":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"32":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"32":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.6457513110645907},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"32":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":16,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"8":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"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":4,"docs":{"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":2.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"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":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"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":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"47":{"tf":2.23606797749979},"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"44":{"tf":1.4142135623730951}}}}}}}},"t":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":3.3166247903554},"32":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"46":{"tf":1.0},"54":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"32":{"tf":2.23606797749979},"35":{"tf":2.23606797749979},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.6457513110645907},"26":{"tf":2.6457513110645907},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"47":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"x":{"df":6,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"54":{"tf":1.0},"64":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"28":{"tf":2.8284271247461903},"29":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":4.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"5":{"tf":2.449489742783178},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.6457513110645907},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":1,"docs":{"61":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"46":{"tf":1.0}}}},"i":{"df":2,"docs":{"50":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"39":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"42":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":2,"docs":{"47":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"2":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":3.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":1,"docs":{"52":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"39":{"tf":2.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}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"33":{"tf":2.0},"34":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"63":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}},"p":{"df":3,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"55":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":2.23606797749979},"53":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178},"51":{"tf":2.8284271247461903},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"49":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":3.0},"47":{"tf":2.23606797749979},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"51":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"32":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"45":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":2.6457513110645907},"52":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":2.6457513110645907},"52":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}},"s":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"62":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"41":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"44":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"57":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":2.0},"60":{"tf":1.4142135623730951}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"47":{"tf":4.242640687119285},"51":{"tf":2.23606797749979},"62":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"33":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"50":{"tf":2.6457513110645907},"51":{"tf":2.23606797749979},"52":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":36,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"32":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"49":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"32":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"32":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":19,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":2.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"5":{"tf":2.6457513110645907},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"32":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":2.0},"56":{"tf":1.0}}}}}},"df":2,"docs":{"47":{"tf":1.0},"50":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"i":{"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.7320508075688772},"63":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"62":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"32":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"32":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"52":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":4.0},"55":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"53":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"37":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"56":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":3.0},"22":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":5.0},"26":{"tf":2.6457513110645907},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0990195135927845},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"50":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"32":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":13,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":3.1622776601683795},"56":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"39":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}},"v":{"df":1,"docs":{"54":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"51":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"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":{"18":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"14":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"16":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"39":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"37":{"tf":1.0},"5":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"19":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"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":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","guide/install.html#installing-flux","guide/install.html#requirements","guide/install.html#installing","guide/run.html#running-flux","guide/run.html#running-on-a-file-rustc-flux","guide/run.html#running-on-a-package-cargo-flux","guide/run.html#a-tiny-example","guide/run.html#a-note-about-the-flux-driver-binary","guide/run.html#editor-support","guide/run.html#rust-analyzer-in-vscode","guide/run.html#configuration","guide/run.html#environment-variables","guide/run.html#config-file","guide/run.html#crate-config","guide/run.html#query-caching","guide/specs.html#flux-specification-guide","guide/specs.html#refinement-types","guide/specs.html#argument-syntax","guide/specs.html#extern-specs","guide/specs.html#import-the-procedural-macros","guide/specs.html#extern-functions","guide/specs.html#extern-structs-and-impls","guide/specs.html#grammar-of-refinements","dev/develop.html#developers-guide","dev/develop.html#regression-tests","dev/develop.html#testing-flux-on-a-file","dev/develop.html#reporting-locations-where-errors-are-emitted","dev/develop.html#running-outside-the-project","dev/develop.html#profiling-flux","dev/develop.html#sample-output","dev/develop.html#macro-expansion","dev/architecture.html#high-level-architecture","dev/architecture.html#crates","dev/architecture.html#intermediate-representations","dev/architecture.html#surface","dev/architecture.html#fhir","dev/architecture.html#rty","dev/architecture.html#simplified-rustc","dev/architecture.html#lifting-and-refining","blog/01-introducing-flux.html#introducing-flux","blog/01-introducing-flux.html#indexed-types","blog/01-introducing-flux.html#post-conditions","blog/01-introducing-flux.html#pre-conditions","blog/01-introducing-flux.html#index-parameters-and-expressions","blog/01-introducing-flux.html#existential-types","blog/01-introducing-flux.html#summary","blog/02-ownership.html#ownership-in-flux","blog/02-ownership.html#exclusive-ownership","blog/02-ownership.html#borrowing-shared-references","blog/02-ownership.html#refinement-parameters","blog/02-ownership.html#borrowing-mutable-references","blog/02-ownership.html#aliased-references","blog/02-ownership.html#borrowing-strong-references","blog/02-ownership.html#summary","blog/03-vectors.html#refined-vectors","blog/03-vectors.html#refining-vectors-to-track-their-size","blog/03-vectors.html#creating-vectors","blog/03-vectors.html#pushing-values","blog/03-vectors.html#popping-values","blog/03-vectors.html#using-the-api","blog/03-vectors.html#querying-the-size","blog/03-vectors.html#random-access","blog/03-vectors.html#memoization","blog/03-vectors.html#binary-search","blog/03-vectors.html#summary","about.html#about-flux","about.html#team","about.html#code","about.html#thanks","about.html#limitations"],"index":{"documentStore":{"docInfo":{"0":{"body":25,"breadcrumbs":1,"title":1},"1":{"body":0,"breadcrumbs":3,"title":2},"10":{"body":26,"breadcrumbs":4,"title":3},"11":{"body":0,"breadcrumbs":2,"title":1},"12":{"body":117,"breadcrumbs":3,"title":2},"13":{"body":68,"breadcrumbs":3,"title":2},"14":{"body":36,"breadcrumbs":3,"title":2},"15":{"body":23,"breadcrumbs":3,"title":2},"16":{"body":5,"breadcrumbs":4,"title":3},"17":{"body":209,"breadcrumbs":3,"title":2},"18":{"body":77,"breadcrumbs":3,"title":2},"19":{"body":41,"breadcrumbs":3,"title":2},"2":{"body":10,"breadcrumbs":2,"title":1},"20":{"body":38,"breadcrumbs":4,"title":3},"21":{"body":131,"breadcrumbs":3,"title":2},"22":{"body":214,"breadcrumbs":4,"title":3},"23":{"body":61,"breadcrumbs":3,"title":2},"24":{"body":0,"breadcrumbs":3,"title":2},"25":{"body":145,"breadcrumbs":3,"title":2},"26":{"body":103,"breadcrumbs":4,"title":3},"27":{"body":33,"breadcrumbs":5,"title":4},"28":{"body":82,"breadcrumbs":4,"title":3},"29":{"body":17,"breadcrumbs":3,"title":2},"3":{"body":77,"breadcrumbs":2,"title":1},"30":{"body":150,"breadcrumbs":3,"title":2},"31":{"body":30,"breadcrumbs":3,"title":2},"32":{"body":18,"breadcrumbs":5,"title":3},"33":{"body":183,"breadcrumbs":3,"title":1},"34":{"body":34,"breadcrumbs":4,"title":2},"35":{"body":19,"breadcrumbs":3,"title":1},"36":{"body":27,"breadcrumbs":3,"title":1},"37":{"body":21,"breadcrumbs":3,"title":1},"38":{"body":23,"breadcrumbs":4,"title":2},"39":{"body":32,"breadcrumbs":4,"title":2},"4":{"body":6,"breadcrumbs":3,"title":2},"40":{"body":81,"breadcrumbs":4,"title":2},"41":{"body":26,"breadcrumbs":4,"title":2},"42":{"body":55,"breadcrumbs":4,"title":2},"43":{"body":61,"breadcrumbs":4,"title":2},"44":{"body":64,"breadcrumbs":5,"title":3},"45":{"body":154,"breadcrumbs":4,"title":2},"46":{"body":72,"breadcrumbs":3,"title":1},"47":{"body":56,"breadcrumbs":4,"title":2},"48":{"body":141,"breadcrumbs":4,"title":2},"49":{"body":123,"breadcrumbs":5,"title":3},"5":{"body":31,"breadcrumbs":5,"title":4},"50":{"body":72,"breadcrumbs":4,"title":2},"51":{"body":116,"breadcrumbs":5,"title":3},"52":{"body":82,"breadcrumbs":4,"title":2},"53":{"body":153,"breadcrumbs":5,"title":3},"54":{"body":67,"breadcrumbs":3,"title":1},"55":{"body":48,"breadcrumbs":4,"title":2},"56":{"body":70,"breadcrumbs":6,"title":4},"57":{"body":60,"breadcrumbs":4,"title":2},"58":{"body":48,"breadcrumbs":4,"title":2},"59":{"body":46,"breadcrumbs":4,"title":2},"6":{"body":24,"breadcrumbs":5,"title":4},"60":{"body":50,"breadcrumbs":4,"title":2},"61":{"body":40,"breadcrumbs":4,"title":2},"62":{"body":122,"breadcrumbs":4,"title":2},"63":{"body":80,"breadcrumbs":3,"title":1},"64":{"body":108,"breadcrumbs":4,"title":2},"65":{"body":39,"breadcrumbs":3,"title":1},"66":{"body":5,"breadcrumbs":1,"title":1},"67":{"body":15,"breadcrumbs":1,"title":1},"68":{"body":5,"breadcrumbs":1,"title":1},"69":{"body":12,"breadcrumbs":1,"title":1},"7":{"body":85,"breadcrumbs":3,"title":2},"70":{"body":6,"breadcrumbs":1,"title":1},"8":{"body":39,"breadcrumbs":5,"title":4},"9":{"body":8,"breadcrumbs":3,"title":2}},"docs":{"0":{"body":"Flux is a refinement type checker for Rust that lets you specify a range of correctness properties and have them be verified at compile time. See the examples -- listed in the summary on the left -- to learn about Refinement types and Rust. You can try it online here .","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Install » Installing Flux","id":"1","title":"Installing Flux"},"10":{"body":"Add this to the workspace settings i.e. .vscode/settings.json { \"rust-analyzer.check.overrideCommand\": [ \"cargo\", \"flux\", \"--workspace\", \"--message-format=json-diagnostic-rendered-ansi\" ]\n} Note: Make sure to edit the paths in the above snippet to point to the correct locations on your machine.","breadcrumbs":"Run » Rust-Analyzer in VSCode","id":"10","title":"Rust-Analyzer in VSCode"},"11":{"body":"","breadcrumbs":"Run » Configuration","id":"11","title":"Configuration"},"12":{"body":"You can set various env variables to customize the behavior of flux. FLUX_CONFIG tells flux where to find a config file for these settings. By default, flux searches its directory for a flux.toml or .flux.toml. FLUX_SYSROOT tells cargo-flux and rustc-flux where to find the flux-driver binary. Defaults to the default installation location in ~/.flux. FLUX_LOG_DIR=path/to/log/ sets the directory where constraints, timing and cache are saved. Defaults to ./log/. FLUX_DUMP_CONSTRAINT=1 tell flux to dump constraints generated for each function. FLUX_DUMP_CHECKER_TRACE=1 saves the checker's trace (useful for debugging!) FLUX_DUMP_TIMINGS=1 saves the profile information FLUX_DUMP_MIR=1 saves the low-level MIR for each analyzed function FLUX_POINTER_WIDTH=N the size of (either 32 or 64), used to determine if an integer cast is lossy (default 64). FLUX_CHECK_DEF=name only checks definitions containing name as a substring FLUX_CACHE=1\" switches on query caching and saves the cache in FLUX_CACHE_FILE FLUX_CACHE_FILE=file.json customizes the cache file, default FLUX_LOG_DIR/cache.json FLUX_CHECK_OVERFLOW=1 checks for over and underflow on arithmetic integer operations, default 0. When set to 0, it still checks for underflow on unsigned integer subtraction.","breadcrumbs":"Run » Environment Variables","id":"12","title":"Environment Variables"},"13":{"body":"The config file is a .toml file that contains on each line the lowercase name of a flux command line flag without the FLUX_ prefix. Set environment variables take priority over the config file. The config file should be in the project root. For example, suppose your project root contains the following flux.toml. log_dir = \"./test\"\ndump_timings = true\ndump_mir = true\ncache = true and you run in the project root FLUX_DUMP_MIR=0 cargo-flux check then flux will create the directory ./test/ and write ./test/timings, a file containing profiling information. It will not dump the MIR because that setting was overridden by setting the environment variable FLUX_DUMP_MIR=0.","breadcrumbs":"Run » Config file","id":"13","title":"Config file"},"14":{"body":"Some flags can be configured on a per-crate basis using the custom inner attribute #![flux::cfg]. This annotation relies on the unstable custom inner attributes feature. To be able to use with a non-nightly compiler you have to put it under a cfg_attr. For example, to enable overflow checking: #![cfg_attr(flux, flux::cfg(check_overflow = true))] The only flag supported now is overflow checking.","breadcrumbs":"Run » Crate Config","id":"14","title":"Crate Config"},"15":{"body":"FLUX_CACHE=1 persistently caches the safe fixpoint queries for each DefId in FLUX_LOG_DIR/FLUX_CACHE_FILE, and on subsequent runs, skips queries that are already in the cache, which considerably speeds up cargo-flux check on an entire crate.","breadcrumbs":"Run » Query Caching","id":"15","title":"Query Caching"},"16":{"body":"This is a WIP guide to writing specifications in flux.","breadcrumbs":"Specs » Flux Specification Guide","id":"16","title":"Flux Specification Guide"},"17":{"body":"Indexed Type : An indexed type B[r] is composed of a base Rust type B and a refinement index r. The meaning of the index depends on the type. Some examples are i32[n]: denotes the (singleton) set of i32 values equal to n. List[n]: values of type List of length n. Refinement parameter : Function signatures can be parametric on refinement variables. Refinement parameters are declared using the @n syntax. For example, the following signature: fn(i32[@n]) -> i32[n + 1] binds n over the entire scope of the function to specify that it takes an i32 equal to n and returns an i32 equal to n + 1. This is analogous to languages like Haskell where a lower case letter can be used to quantify over a type, e.g., the type a -> a in Haskell is polymorphic on the type a which is bound for the scope of the entire function type. Existential Type : An existential type B{v: r(v)} is composed of a base type B, a refinement variable v and a refinement predicate r on v. Intuitively, a Rust value x has type B{v: r(v)} if there exists a refinement value a such that r(a) holds and x has type B[x]. i32{v: v > 0}: set of positive i32 values. List{v: v > 0}: set of non-empty lists. Constraint Type : A constraint type has the form {T | r} where T is any type (not just a base type). Intuitively, a value has type {T | r} if it has type T and also r holds. They can be used to constraint a refinement parameter. For example, the following signature constraint the refinement parameter n to be less than n. fn({i32[@n] | n < 10}) -> i32[n + 1] Constraint types serve a similar role as existentials as they can also be used to constraint some refinement value with a predicate, but an existential type can only be used to constraint refinement variable that it bound locally, in contrast constraint types can be used to constraint a \"non-local\" parameter. This can be seen in the example above where the parameter n cannot be bound locally because it has to be used in the return type.","breadcrumbs":"Specs » Refinement Types","id":"17","title":"Refinement Types"},"18":{"body":"The @n syntax used to declare refinements parameters can be hard to read sometimes. Flux also supports a syntax that let you bind refinement parameters using colons similar to the syntax used to declare arguments in a function. We call this argument syntax . This syntax desugars to one of the refinements forms discussed above. For example, the following signature fn(x: i32, y: i32) -> i32[x + y] desugars to fn(i32[@x], i32[@y]) -> i32[x + y] It is also possible to attach some constraint to the parameters when using argument syntax. For example, to specify that y must be greater than x using argument syntax we can write: fn(x: i32, y: i32{x > y}) -> i32[x + y] This will desugar to: fn(i32[@x], {i32[@y] | x > y}) -> i32[x + y]","breadcrumbs":"Specs » Argument Syntax","id":"18","title":"Argument Syntax"},"19":{"body":"Sometimes you may want to refine a struct or function that outside your code. We refer to such a specification as an \"extern spec,\" which is short for \"external specification.\" Flux right now has rudimentary support for extern specs: they are supported for functions, impls, and structs. Impls are only supported for structs and if you have multiple impls for a struct (such as &[T] and [T]), those may conflict. Structs only support opaque refinements.","breadcrumbs":"Specs » Extern specs","id":"19","title":"Extern specs"},"2":{"body":"rustup liquid-fixpoint z3 Be sure that the liquid-fixpoint and z3 executables are in your $PATH.","breadcrumbs":"Install » Requirements","id":"2","title":"Requirements"},"20":{"body":"In order to use an extern spec you need to add a dependency on flux_rs . Right now this needs to be done as a local dependency since it is not published. Below is an example of how you can include it, although the version may be different. [dependencies]\nflux-rs = { path = \"path-to-flux/flux/flux-rs\", version = \"0.1.0\" } Then in your code you will need to include the extern_spec attribute macro. use flux_rs::extern_spec;","breadcrumbs":"Specs » Import the procedural macros","id":"20","title":"Import the procedural macros"},"21":{"body":"An example of refining an extern function can be found here . To define an extern spec on a function, you need to do three things, which happen to correspond to each of the below lines. #[extern_spec(std::mem)]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\nfn swap(a: &mut i32, b: &mut i32); Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::mem. You can use this path to qualify the function. So in the above example, the function we are targeting has the full path of std::mem::swap. Add a #[flux::sig(...)] attribute. This is required for any extern spec on a function. This signature behaves as if the #[flux::trusted] attribute was added, because we can't actually check the implementation. We just verify some simple things, like that the function arguments have compatible types. Write a function stub that matches the external function. If you do the above, you can use std::mem::swap as if it were refined by the above type. You shouldn't need to know the details, but here's how the macro works. It parses the std::mem into a module path and then transforms the function into #[flux::extern_spec]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\n#[allow(unused, dead_code)]\nfn __flux_extern_spec_swap(a: &mut i32, b: &mut i32) { std::mem::swap(a, b)\n} It does this to get information about the function std::mem::swap and its arguments (this turns out to be difficult to do without giving the compiler something to inspect and type check).","breadcrumbs":"Specs » Extern functions","id":"21","title":"Extern functions"},"22":{"body":"An example of refining an extern struct and impl can be found here . A simpler example just involving structs can be found here . The syntax for an extern spec on a struct is very similar to that for a function. Once again, each line in the example happens to correspond to a step. #[extern_spec(std::string)]\n#[flux::refined_by(len: int)]\nstruct String; Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::string. You can use this path to qualify the function. So in the above example, the struct we are targeting has the full path of std::string::String. Add a #[flux::refined_by(...)] attribute. This is required for any extern spec on a struct. Right now these attributes behave as if they were opaque (#[flux::opaque]), although we may support non-opaque extern structs. Write a stub for the extern struct. If you do the above, you can use std::string::String as if it were refined by an integer index. The syntax for an extern impl is a little different than that for functions or structs. #[extern_spec(std::string)]\nimpl String { #[flux::sig(fn() -> String[0])] fn new() -> String; #[flux::sig(fn(&String[@n]) -> usize[n])] fn len(s: &String) -> usize;\n} You still need to add the #[extern_spec] attribute, with the same optional argument of the path as above. You need to write out the impl block for the struct you want to refine. This struct does not need an extern spec, since by refining the impl you're only refining its methods. Write an extern spec for each function you wish to refine (this may be a subset). This is written just like a function extern spec with the caveat that the self parameter is not presently supported. So for example, instead of writing fn len(&self) -> usize;, you need to write fn len(s: &String) -> usize;. If you do the above, you can use the above methods ofstd::string::String as if they were refined. You shouldn't need to know the details, but here's how the above two macros expand. For structs: #[flux::extern_spec]\n#[allow(unused, dead_code)]\n#[flux::refined_by(len: int)]\nstruct __FluxExternSpecString(std::string::String); For impls (this was translated manually so there might be some bugs): #[allow(unused, dead_code)]\nstruct __FluxExternImplStructString; #[allow(unused, dead_code)]\nimpl __FluxExternImplStructString { #[flux::extern_spec] #[flux::sig(fn() -> String[0])] #[allow(unused, dead_code)] fn __flux_extern_spec_new() -> String { std::string::String::new::<>() } #[flux::extern_spec] #[flux::sig(fn(&String[@n]) -> usize[n])] #[allow(unused, dead_code)] fn __flux_extern_spec_len(s: &String) -> usize { std::string::String::len::<>(s) }\n}","breadcrumbs":"Specs » Extern structs and impls","id":"22","title":"Extern structs and impls"},"23":{"body":"r ::= n // numbers 1,2,3... | x // identifiers x,y,z... | x.f // index-field access | r + r // addition | r - r // subtraction | n * e // multiplication by constant | if r { r } else { r } // if-then-else | f(r...) // function application | true | false // booleans | r == r // equality | r != r // not equal | r < r // less than | r <= r // less than or equal | r > r // greater than | r >= r // greater than or equal | r || r // disjunction | r && r // conjunction | r => r // implication | !r // negation","breadcrumbs":"Specs » Grammar of Refinements","id":"23","title":"Grammar of Refinements"},"24":{"body":"","breadcrumbs":"Develop » Developer's Guide","id":"24","title":"Developer's Guide"},"25":{"body":"You can run the various regression tests in the tests/pos and tests/neg directories using cargo xtask test This will build the flux binary and then run it against the entire test suite. You can optionally pass a filter to only run tests containing some substring. For example: $ cargo xtask test impl_trait Compiling xtask v0.1.0 (/path/to/flux/xtask) Finished dev [unoptimized + debuginfo] target(s) in 0.29s Running `target/debug/xtask test impl_trait`\n$ cargo build Finished dev [unoptimized + debuginfo] target(s) in 0.05s\n$ cargo test -p flux-tests -- --test-args impl_trait Compiling flux-tests v0.1.0 (/path/to/flux/flux-tests) Finished test [unoptimized + debuginfo] target(s) in 0.62s Running tests/compiletest.rs (target/debug/deps/compiletest-1241128f1f51caa4) running 5 tests\ntest [ui] pos/surface/impl_trait04.rs ... ok\ntest [ui] pos/surface/impl_trait03.rs ... ok\ntest [ui] pos/surface/impl_trait01.rs ... ok\ntest [ui] pos/surface/impl_trait00.rs ... ok\ntest [ui] pos/surface/impl_trait02.rs ... ok test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 191 filtered out; finished in 0.10s running 2 tests\ntest [compile-fail] neg/surface/impl_trait00.rs ... ok\ntest [compile-fail] neg/surface/impl_trait02.rs ... ok test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 207 filtered out; finished in 0.09s","breadcrumbs":"Develop » Regression Tests","id":"25","title":"Regression Tests"},"26":{"body":"When working on Flux, you may want to test your changes by running it against a test file. You can use cargo xtask run to run Flux on a single input file. The command will set appropriate flags to be able to use custom Flux attributes and macros, plus some extra flags useful for debugging. For example: $ cat test.rs\n#[flux::sig(fn(x: i32) -> i32[x + 1])]\nfn add1(x: i32) -> i32 { x + 1\n}\n$ cargo xtask run test.rs The command will use a super set of the flags passed when running regression tests. Thus, a common workflow is to identify a failing test and run it directly with cargo xtask run, or alternatively copy it to a different file. You may also find useful to create a directory in the root of the project and add it to .git/info/exclude . You can keep files there, outside of version control, and test Flux against them. I have a directory called attic/ where I keep a file named playground.rs. To run Flux on it, I do cargo xtask run attic/playground.rs.","breadcrumbs":"Develop » Testing Flux on a File","id":"26","title":"Testing Flux on a File"},"27":{"body":"When you use cargo xtask run you'll see that we report the location an error was emitted, e.g., error[FLUX]: refinement type error --> attic/playground.rs:4:5 |\n4 | 0 | ^ a postcondition cannot be proved\n-Ztrack-diagnostics: created at crates/flux-refineck/src/lib.rs:114:15 <------- this You can also pass -Ztrack-diagnostics=y to enable it if you are not using cargo xtask run","breadcrumbs":"Develop » Reporting locations where errors are emitted","id":"27","title":"Reporting locations where errors are emitted"},"28":{"body":"To run Flux in a package outside the flux repo you need to install the binaries globally. You can do that using cargo xtask install. If you are continuously testing new changes it could be annoying to do it each time. To deal with this, you can set the FLUX_SYSROOT environment variable to change the location where cargo-flux and rustc-flux load the flux-driver. You can set it globally to point to the target/debug directory inside your local copy of the repo. This way you won't have to run cargo xtask install after every change, and you can be sure you'll be using the latest local debug build. Just be aware that the rustc-flux and cargo-flux binaries are built for a specific toolchain, and you will get a dynamic linking error if the flux-driver was compiled with a different one. This is to say, you should at least run cargo xtask install every time after the toolchain is updated.","breadcrumbs":"Develop » Running outside the project","id":"28","title":"Running outside the project"},"29":{"body":"Set FLUX_DUMP_TIMINGS=true to have flux write timing diagnostics to ./log/timings. Right now this is extremely simple, it just provides some details for the spans under flux_typeck and flux_driver.","breadcrumbs":"Develop » Profiling Flux","id":"29","title":"Profiling Flux"},"3":{"body":"The only way to use flux is to build it from source. First you need to clone the repository git clone https://github.com/flux-rs/flux\ncd flux To build the source you need a nightly version of rustc. We pin the version using a toolchain file (more info here ). If you are using rustup, no special action is needed as it should install the correct rustc version and components based on the information on that file. Next, run the following to build and install flux binaries cargo xtask install This will install two binaries rustc-flux and cargo-flux in your cargo home. These two binaries should be used respectively to run flux on either a single file or on a project using cargo. The installation process will also copy some files to $HOME/.flux.","breadcrumbs":"Install » Installing","id":"3","title":"Installing"},"30":{"body":"Below is a sample output for an invocation of cargo-flux check that took 19 seconds. The missing 2 seconds approximately accounts for the time it takes for cargo check to run. Note that check_crate contains everything running under check_top, which is why the sum of the spans is greater than 19 seconds. check_top Checker::infer num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 2.62ms max: 24.12ms total time: 229.64ms Checker::check num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 5.24ms max: 159.91ms total time: 2028.47ms FixpointCtx::check num events: 205 min non-zero: 22.02ms 1st quartile: 26.21ms 2nd quartile: 28.31ms 3rd quartile: 40.37ms max: 1867.51ms total time: 9106.36ms\ntotal time: 11364.47ms check_crate Callbacks::check_wf num events: 1 min non-zero: 18.35ms 1st quartile: 18.87ms 2nd quartile: 18.87ms 3rd quartile: 18.87ms max: 18.87ms total time: 18.87ms Callbacks::check_crate num events: 1 min non-zero: 16986.93ms 1st quartile: 16995.32ms 2nd quartile: 16995.32ms 3rd quartile: 16995.32ms max: 16995.32ms total time: 16995.32ms\ntotal time: 17014.19ms","breadcrumbs":"Develop » Sample output","id":"30","title":"Sample output"},"31":{"body":"For example if you have code like in path/to/file.rs #[extern_spec]\n#[flux::refined_by(elems: Set)]\nstruct HashSet; and you want to see what the extern_spec macro expands it out to, then run cargo x run -- -Zunpretty=expanded path/to/file.rs Or you can run the xtask command directly cargo x expand path/to/file.rs","breadcrumbs":"Develop » Macro expansion","id":"31","title":"Macro expansion"},"32":{"body":"Flux is implemented as a compiler driver . We hook into the compiler by implementing the Callbacks trait. The implementation is located is in the flux-driver crate, and it is the main entry point to Flux.","breadcrumbs":"Develop » Architecture » High-level Architecture","id":"32","title":"High-level Architecture"},"33":{"body":"crates/flux-bin: Contains the cargo-flux and rustc-flux binaries used to launch the flux-driver. crates/flux-common: Common utility definitions used across all crates. crates/flux-config: Crate containing logic associated with global configuration flags that change the behavior of Flux, e.g, to enable or disable overflow checking. crates/flux-desugar: Implementation of name resolution and desugaring from Flux surface syntax into Flux high-level intermediate representation (fhir). This includes name resolution. crates/flux-driver: Main entry point to Flux. It contains the flux-driver binary and the implementation of the Callbacks trait. crates/flux-errors: Utility definitions for user facing error reporting. crates/flux-fhir-analysis: Implements the \"analyses\" performed in the fhir, most notably well-formedness checking and conversion from fhir into rty. crates/flux-fixpoint: Code to interact with the Liquid Fixpoint binary. crates/flux-macros: Procedural macros used internally to implement Flux. crates/flux-metadata: Logic for saving Flux crate metadata that can be used to import refined signatures from external crates. crates/flux-middle: This crate contains common type definitions that are used by the rest of Flux like the rty and fhir intermediate representations. Akin to rustc_middle . crates/flux-refineck: Implementation of refinement type checking. crates/flux-syntax: Definition of the surface syntax AST and parser. crates/flux-tests: Flux regression tests. lib/flux-attrs: Implementation of user facing procedural macros for annotating programs with Flux specs. lib/flux-rs: This is just a re-export of the macros implemented in flux-attrs. The intention is to eventually put Flux \"standard library\" here, i.e., a set of definitions that are useful when working with Flux.","breadcrumbs":"Develop » Architecture » Crates","id":"33","title":"Crates"},"34":{"body":"Flux has several intermediate representations (IR) for types. They represent a refined version of an equivalent type in some rustc IR. We have picked a distinct verb to refer to the process of going between these different representations to make it easier to refer to them. The following image summarizes all the IRs and the process for going between them. IRs diagram","breadcrumbs":"Develop » Architecture » Intermediate Representations","id":"34","title":"Intermediate Representations"},"35":{"body":"The surface IR represents source level Flux annotations. It corresponds to the rustc_ast data structures in rustc. The definition as well as the parser is located in the flux-syntax crate.","breadcrumbs":"Develop » Architecture » Surface","id":"35","title":"Surface"},"36":{"body":"The Flux High-Level Intermediate Representation (fhir) is a refined version of rustc's hir . The definition is located in the flux_middle crate inside the fhir module. The process of going from surface to fhir is called desugaring , and it is implemented in the flux-desugar crate.","breadcrumbs":"Develop » Architecture » Fhir","id":"36","title":"Fhir"},"37":{"body":"The definition in the flux_middle::rty module correspond to a refined version of the main rustc representation for types defined in rustc_middle::ty . The process of going from fhir to rty is called conversion , and it is implemented in the flux_fhir_analysis::conv module.","breadcrumbs":"Develop » Architecture » Rty","id":"37","title":"Rty"},"38":{"body":"The definition in the flux_middle::rustc module correspond to simplified version of data structures in rustc. They can be understood as the currently supported subset of Rust. The process of going from a definition in rustc_middle into flux_middle::rustc is called lowering and it is implemented in flux_middle::rustc::lowering.","breadcrumbs":"Develop » Architecture » Simplified Rustc","id":"38","title":"Simplified Rustc"},"39":{"body":"Besides the different translation between Flux intermediate representations, there are two ways to get a refined version from a rust type. The process of going from a type in hir into a type in fhir is called lifting , and it is implemented in flux_middle::fhir::lift. The process for going from a type in flux_middle::rustc::ty into a flux_middle::rty is called refining , and it is implemented flux_middle::rty::refining.","breadcrumbs":"Develop » Architecture » Lifting and Refining","id":"39","title":"Lifting and Refining"},"4":{"body":"You can run flux on a single file or entire crate.","breadcrumbs":"Run » Running Flux","id":"4","title":"Running Flux"},"40":{"body":"Online demo Types bring order to code. For example, if a variable i:usize then we know i is a number that can be used to index a vector. Similarly, if v:vec<&str> then we can be sure that v is a collection of strings which may be indexed but of course, not used as an index. However, by itself usize doesn't tell us how big or small the number and hence the programmer must still rely on their own wits, a lot of tests, and a dash of optimism, to ensure that all the different bits fit properly at run-time. Refinements are a promising new way to extend type checkers with logical constraints that specify additional correctness requirements that can be verified by the compiler, thereby entirely eliminating various classes of run-time problems. We're excited to introduce Flux , a refinement type checker plugin that brings this technology to Rust.","breadcrumbs":"Introducing Flux » Introducing Flux","id":"40","title":"Introducing Flux"},"41":{"body":"The most basic form of refinement type in flux is a type that is indexed by a logical value. For example Type Meaning i32[10] The (singleton) set of i32 values equal to 10 bool[true] The (singleton) set of bool values equal to true","breadcrumbs":"Introducing Flux » Indexed Types","id":"41","title":"Indexed Types"},"42":{"body":"We can already start using these indexed types to start writing (and checking) code. For example we can write the following specification which says that the value returned by mk_ten must in fact be 10 #[flux::sig(fn() -> i32[10])]\npub fn mk_ten() -> i32 { 5 + 4\n} but when you compile it, flux will say error[FLUX]: postcondition might not hold --> src/basics.rs:7:5 |\n7 | 5 + 4 | ^^^^^ The error says that that the postcondition might not hold which means that the output produced by mk_ten may not in fact be an i32[10] as indeed, in this case, the result is 9! You can eliminate the error by replacing the body with 5 + 5 or just 10.","breadcrumbs":"Introducing Flux » Post-Conditions","id":"42","title":"Post-Conditions"},"43":{"body":"Here's a second example that shows how you can use an index to restrict the space of inputs that a function expects. #[flux::sig(fn (b:bool[true]))]\npub fn assert(b:bool) { if !b { panic!(\"assertion failed\") }\n} Here, the refined specification for assert says that you can only call it with true as the input. So if you write fn test(){ assert(2 + 2 == 4); assert(2 + 2 == 5); // fails to type check\n} then flux will complain that error[FLUX]: precondition might not hold --> src/basics.rs:12:5 |\n12 | assert(2 + 2 == 5); // fails to type check | ^^^^^^^^^^^^^^^^^^ meaning that the call to assert fails to establish that the input is indeed true (as of course, in this case, it is not!)","breadcrumbs":"Introducing Flux » Pre-Conditions","id":"43","title":"Pre-Conditions"},"44":{"body":"It's not terribly exciting to only talk about fixed values like 10 or true. To be more useful, flux lets you index types by refinement parameters . For example, you can write #[flux::sig(fn(n:i32) -> bool[0 < n])]\npub fn is_pos(n: i32) -> bool { if 0 < n { true } else { false }\n} Here, the type says that is_pos takes as input some i32 indexed by n returns as output the bool indexed by 0 < n in other words, the output is true exactly when 0 < n. We might use this function to check that: pub fn test_pos(n: i32) { let m = if is_pos(n) { n - 1 } else { 0 }; assert(0 <= m);\n}","breadcrumbs":"Introducing Flux » Index Parameters and Expressions","id":"44","title":"Index Parameters and Expressions"},"45":{"body":"Often we don't care about the exact value of a thing -- but just care about some properties that it may have. For example, we don't care that an i32 is equal to 5 or 10 or n but that it is non-negative. Type Meaning i32{v: 0 < v} The set of i32 values that positive i32{v: n <= v} The set of i32 values greater than or equal to n Flux allows such specifications by pairing plain Rust types with assertions [1] that constrain the value. For example, we can rewrite mk_10 with the output type i32{v:0 i32{v: 0 < v})]\npub fn mk_ten() -> i32 { 5 + 5\n} Similarly, you might specify that a function that computes the absolute value of an i32 with a type which says the result is non-negative and exceeds the input n. #[flux::sig(fn (n:i32) -> i32{v:0<=v && n<=v})]\npub fn abs(n: i32) -> i32 { if 0 <= n { n } else { 0 - n }\n} As a last example, you might write a function to compute the factorial of n #[flux::sig(fn (n:i32) -> i32{v:1<=v && n<=v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; let mut res = 1; while i < n { i += 1; res = res * i; } res\n} Here the specification says the input must be non-negative, and the output is at least as large as the input. Note, that unlike the previous examples, here we're actually changing the values of i and res. Can you guess why the copilot suggestions failed to pass flux, and what refinements were inferred for i and res in the fixed code at the end?","breadcrumbs":"Introducing Flux » Existential Types","id":"45","title":"Existential Types"},"46":{"body":"In this post, we saw how Flux lets you decorate basic Rust types like i32 and bool with indices and constraints that let you respectively refine the sets of values that inhabit that type, and specify contracts on functions that state pre-conditions on the sets of legal inputs that they accept, and post-conditions that describe the outputs that they produce. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates, without sacrificing thread- or memory-safety. Next time, we'll see how Flux melds refinements and Rust's ownership to make refinements happily coexist with imperative code. These are not arbitrary Rust expressions but a subset of expressions from logics that can be efficiently decided by SMT Solvers","breadcrumbs":"Introducing Flux » Summary","id":"46","title":"Summary"},"47":{"body":"Online demo Previously we saw how to refine basic Rust types like i32 and bool with indices and constraints to constrain the set of values described by those types. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates , via the clever type system that keeps an eye on the ownership of resources to make sure that aliasing and mutation cannot happen at the same time. Next, lets see how Flux melds refinements and Rust's ownership mechanisms to make refinements work in the imperative setting.","breadcrumbs":"Ownership in Flux » Ownership in Flux","id":"47","title":"Ownership in Flux"},"48":{"body":"Rust's most basic form of ownership is exclusive ownership, in which exactly one variable in a function has the right to mutate a memory location. When a location is exclusively owned, we can be sure that there are no other references to it, which lets flux update the type whenever the location is changed. For example, consider the program #[flux::sig(fn () -> i32[3])]\npub fn mk_three() -> i32 { let mut r = 0; // r: i32[0] r += 1; assert(r == 1); // r: i32[1] r += 1; assert(r == 2); // r: i32[2] r += 1; assert(r == 3); // r: i32[3] r\n} The variable r has different types at each point inside mk_three. It starts off as i32[0]. The first increment changes it to i32[1], then i32[2] and finally, the returned type i32[3]. This exclusive ownership mechanism is at work in the factorial example we signed off with previously #[flux::sig(fn (n:i32{0 <= n}) -> i32{v:n <= v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; // i: i32[0] let mut r = 1; // r: i32[1] while i < n { // i: i32{v:0<=v<=n} // r: i32{v:1<=v && i<=v} i += 1; r = r * i; } r\n} In the above code, i and r start off at 0 and 1 but then Rust infers (a story for another day) that inside the while-loop [1] i has type i32{v:0<=v && v < n} r has type i32{v:1<=v && i <= v} and hence, upon exit since i == n we get that the result is at least n.","breadcrumbs":"Ownership in Flux » Exclusive Ownership","id":"48","title":"Exclusive Ownership"},"49":{"body":"Exclusive ownership suffices for simple local updates like in factorial. However, for more complex data, functions must temporarily relinquish ownership to allow other functions to mutate the data. Rust cleverly allows this via the notion of borrowing using two kinds of references that give callees temporary access to a memory location. The simplest kind of references are of the form &T which denote read-only access to a value of type T. For example, we might write abs to take a shared reference to an i32 #[flux::sig(fn (p: &i32[@n]) -> i32{v:0<=v && n<=v})]\npub fn abs(p: &i32) -> i32 { let n = *p; if 0 <= n { n } else { 0 - n }\n} Notice that the input type has changed: the function now Accepts p a reference to an i32 whose value is n as denoted by @n Returns an i32 that is non-negative and larger than n The @ marks the n as a refinement parameter whose value is automatically computed by flux during type checking. So, for example, Flux can check the below code by automatically determining that the refinement parameter at the call-site is 10. pub fn test_abs() { let z = 10; assert(0 <= abs(&z)) assert(10 <= abs(&z))\n}","breadcrumbs":"Ownership in Flux » Borrowing: Shared References","id":"49","title":"Borrowing: Shared References"},"5":{"body":"You can use rustc-flux as you would use rustc. For example, the following command checks the file test.rs. rustc-flux path/to/test.rs The flux binary accepts the same flags as rustc. You could for example check a file as a library instead of a binary like so rustc-flux --crate-type=lib path/to/test.rs","breadcrumbs":"Run » Running on a File: rustc-flux","id":"5","title":"Running on a File: rustc-flux"},"50":{"body":"As an aside, we have secretly been using refinement parameters like @n all along. For example, Flux automatically desugars the signature fn(n:i32{0 <= n} -> ... that we wrote for factorial into fn ({i32[@n] : 0 <= n}) -> i32{v:n <= v} where @n is a refinement parameter that is implicitly determined from the rust parameter n:i32. However, explicit parameters are essential to name the value of what a reference points to. In abs the rust parameter p names the reference but the @n names the (input) value and lets us use it to provide more information about the output of abs. Flux is modular in that the only information it knows about the implementation of abs is the signature: for example if we remove the fact that the output exceeds n then Flux will reject the assertion 10 <= abs(&z).","breadcrumbs":"Ownership in Flux » Refinement Parameters","id":"50","title":"Refinement Parameters"},"51":{"body":"References of type &mut T denote mutable references that can be used to (read and) write or update the contents of a T value. Crucially, Rust ensures that while there may be multiple read-only (shared) references to a location, there is at most one active writeable (mutable) reference at any point in time. Flux exploits the semantics of &mut T to treat T as an invariant of the underlying data. As an example, consider the following function that decrements the value of a mutable reference while ensuring the data is non-negative: #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { *p = *p - 1;\n} Flux will complain with the following message error[FLUX]: assignment might be unsafe --> src/basics.rs:13:9 |\n13 | *p = *p - 1; | ^^^^^^^^^^^ as in fact, we may be writing a negative value into *p if, for example, the old value was zero. We can fix this code by guarding the update with a test that ensures the original contents are in fact non-zero #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { let n = *p; if n != 0 { *p = n - 1; }\n} at which point Flux is happy to sign off on the code.","breadcrumbs":"Ownership in Flux » Borrowing: Mutable References","id":"51","title":"Borrowing: Mutable References"},"52":{"body":"Flux uses Rust's borrowing rules to track invariants even when there may be aliasing. As an example, consider the function #[flux::sig(fn (bool) -> i32{v:0 <= v})]\nfn test_alias(z: bool) -> i32 { let mut x = 1; // x: i32[1] let mut y = 2; // y: i32[2] let r = if z { &mut x } else { &mut y }; // r: &mut i32{v:0 <= v} decr(r); *r\n} The reference r could point to either x or y depending on the (unknown) value of the boolean z. Nevertheless, Flux determines that both references &mut x and &mut y point to values of the more general type i32{v:0<=v} and hence, infers r : &mut i32{v:0<=v} which allows us it to then call decr with the reference and guarantee the result (after decr) is still non-negative.","breadcrumbs":"Ownership in Flux » Aliased References","id":"52","title":"Aliased References"},"53":{"body":"In many situations, we want to lend a value to another function that actually changes the value's (refinement) type upon exit. For example, consider the following function to increment a reference to a non-negative i32 #[flux::sig(fn (p: &mut i32{v:0 <= v}))]\nfn incr(p: &mut i32) { *p += 1\n} Recall that Flux is modular in that the only information it has about incr is what is said in the signature. The signature for incr only says p remains non-negative: Flux does not know that incr actually increments the value of p. Hence, Flux fusses that the following assert may fail even though its patently obvious that it will succeed! To verify test_incr we need a signature for incr that says that its output is indeed one greater [2] than its input. Flux extends Rust with the notion of strong references of the form &strg T which refine Rust's &mut T to grant exclusive access to the underlying T. Crucially, strong references also let us specify how the type is updated when the function exits [3] . Thus, we can use strong references to type incr as #[flux::sig(fn(p: &strg i32[@n]) ensures p:i32[n+1])]\nfn incr(p: &mut i32) { *p += 1\n} The Flux signature refines the plain Rust one to specify that p is a strong reference to an i32, the input type of *p is i32[n], and the output type of *p is i32[n+1]. With this specification, Flux merrily checks test_incr, by determining that the refinement parameter @n is 10 and hence, that upon return x: i32[11].","breadcrumbs":"Ownership in Flux » Borrowing: Strong References","id":"53","title":"Borrowing: Strong References"},"54":{"body":"To sum up, Flux exploits Rust's ownership mechanisms to track properties of shared (&T) and mutable (&mut T) references, and additionally adds a strong (&strg T) reference -- a special case of &mut -- to support the cases where the type itself is changed by a call. Next, we'll see how refinements and ownership yield a simple refined API for vectors that lets Flux check bounds safety at compile time... For those familiar with the term, these types are loop invariants [2] : Setting aside the issue of overflows for now [3] : Thereby allowing so-called strong updates in the type specifications","breadcrumbs":"Ownership in Flux » Summary","id":"54","title":"Summary"},"55":{"body":"Online demo While rustc has a keen eye for spotting nasty bugs at compile time, it is not omniscient. We've all groaned in dismay at seeing deployed code crash with messages like panicked at 'index out of bounds: the len is ... but the index is ...' Next, lets see how flux's refinement and ownership mechanisms let us write a refined vector API whose types track vector sizes and ensure --- at compile time --- that vector accesses cannot fail at runtime.","breadcrumbs":"Refined Vectors » Refined Vectors","id":"55","title":"Refined Vectors"},"56":{"body":"To begin with, we will defined a refined vector type which is simply a wrapper around the standard Vec type #[flux::refined_by(len: int)]\npub struct RVec { inner: Vec,\n} The #[flux::refined_by(len: int)] attribute tells flux that the type RVec struct is indexed by a len refinement which tracks the size of the underlying vector, just like the indices for i32 and bool tracked the actual value of the underlying integer or boolean ). The idea is that the type RVec[10] represents a vector of i32 size 10, and RVec{v:0 < v} represents a non-empty vector of bool, and RVec[n]>[m] represents a vector of vectors of f32 of size m and each of whose elements is a vector of size n.","breadcrumbs":"Refined Vectors » Refining Vectors to Track their Size","id":"56","title":"Refining Vectors to Track their Size"},"57":{"body":"Now that we can talk about the size of a vector, lets build up an API for creating and manipulating vectors. I suppose one must start with nothing: an empty vector. impl RVec { #[flux::trusted] #[flux::sig(fn() -> RVec[0])] pub fn new() -> Self { Self { inner: Vec::new() } }\n} The above implements RVec::new as a wrapper around Vec::new. The #[flux::trusted] attribute tells Flux there is nothing to \"check\" here, as we are defining the API itself and trusting that the implementation (using vec is correct). However, the signature says that callers of the RVec::new get back a vector indexed with 0 i.e. an empty vector.","breadcrumbs":"Refined Vectors » Creating Vectors","id":"57","title":"Creating Vectors"},"58":{"body":"An empty vector is a rather desolate thing. To be of any use, we need to be able to push values into the container, like so #[flux::trusted]\n#[flux::sig(fn(self: &strg RVec[@n], T) ensures self: RVec[n+1])]\npub fn push(&mut self, item: T) { self.inner.push(item);\n} The refined type for push says that it takes a strong reference (self) --- where strg means the refined type may be changed by the function --- to an RVec of size n and a value T and upon exit, the size of self is increased by 1.","breadcrumbs":"Refined Vectors » Pushing Values","id":"58","title":"Pushing Values"},"59":{"body":"Not much point stuffing things into a vector if we can't get them out again. For that, we might implement a pop method that returns the last element of the vector. Aha, but what if the vector is empty? You could return an Option or since we're tracking sizes, we could require that pop only be called with non-empty vectors. #[flux::trusted]\n#[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T ensures self: RVec[n-1])]\npub fn pop(&mut self) -> T { self.inner.pop().unwrap()\n}","breadcrumbs":"Refined Vectors » Popping Values","id":"59","title":"Popping Values"},"6":{"body":"Flux is integrated with cargo and can be invoked in a package as follows: cargo flux By default, Flux won't verify a package unless it's explicitly enabled in the manifest. To do so add the following to Cargo.toml: [package.metadata.flux]\nenabled = true","breadcrumbs":"Run » Running on a package: cargo-flux","id":"6","title":"Running on a package: cargo-flux"},"60":{"body":"Now already flux can start checking some code, for example if you push two elements, then you can pop twice, but flux will reject the third pop at compile-time In fact, the error message from flux will point to exact condition that does not hold error[FLUX]: precondition might not hold --> src/vectors.rs:24:5 |\n24 | v.pop(); | ^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:78:47 |\n78 | #[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T | ^^^^^","breadcrumbs":"Refined Vectors » Using the API","id":"60","title":"Using the API"},"61":{"body":"Perhaps we should peek at the size of the vector to make sure its not empty before we pop it. We can do that with a len method whose type says that the returned usize is, in fact, the size of the input vector #[flux::trusted]\n#[flux::sig(fn(&RVec[@n]) -> usize[n])]\npub fn len(&self) -> usize { self.inner.len()\n} Now, flux \"knows\" that after two pushes, the size of the vector is 2 and after the two pops, the size is 0 again","breadcrumbs":"Refined Vectors » Querying the Size","id":"61","title":"Querying the Size"},"62":{"body":"Of course, vectors are not just stacks , they also allow random access to their elements which is where those pesky panics occur, and where the refined vector API gets rather useful. Since we're tracking sizes, we can require that the method to get an element only be called with a valid index that is between 0 and the vector's size #[flux::sig(fn(&RVec[@n], i: usize{i < n}) -> &T)]\npub fn get(&self, i: usize) -> &T { &self.inner[i]\n} #[flux::sig(fn(&mut RVec[@n], i: usize{i < n}) -> &mut T)]\npub fn get_mut(&mut self, i: usize) -> &mut T { &mut self.inner[i]\n} With these refined get methods, flux can now spot the ``off-by-one'' error in the following code and accepts the fix [1] Its a bit gross to use get and get_mut directly, so instead we implement the Index and IndexMut traits for RVec which allows us to use the [] operator to access elements impl std::ops::Index for RVec { type Output = T; #[flux::sig(fn(&RVec[@n], i:usize{i < n}) -> &T)] fn index(&self, index: usize) -> &T { self.get(index) }\n} impl std::ops::IndexMut for RVec { #[flux::sig(fn(&mut RVec[@n], i:usize{i < n}) -> &mut T)] fn index_mut(&mut self, index: usize) -> &mut T { self.get_mut(index) }\n} And now the above vec_sum example looks a little nicer","breadcrumbs":"Refined Vectors » Random Access","id":"62","title":"Random Access"},"63":{"body":"Lets put the whole API to work in this \"memoized\" version of the fibonacci function which uses a vector to store the results of previous calls pub fn fib(n: usize) -> i32 { let mut r = RVec::new(); let mut i = 0; while i < n { if i == 0 { r.push(0); } else if i == 1 { r.push(1); } else { let a = r[i - 1]; let b = r[i - 2]; r.push(a + b); } i += 1; } r.pop()\n} Oops, flux is not happy with the call to pop at the end of the function which returns the last value as the result. error[FLUX]: precondition might not hold --> src/vectors.rs:40:5 |\n40 | r.pop() | ^^^^^^^ Flux complains that the vector may be empty and so the pop call may fail ... but why? Can you spot the problem? Indeed, we missed a \"corner\" case -- when n is 0 we skip the loop and so the vector is empty! Once we add a test for that, flux is happy.","breadcrumbs":"Refined Vectors » Memoization","id":"63","title":"Memoization"},"64":{"body":"As a last example, lets look at a simplified version of the binary_search method from std::vec , into which I've snuck a tiny little bug pub fn binary_search(vec: &RVec, x: i32) -> Result { let mut size = vec.len(); let mut left = 0; let mut right = size; while left <= right { let mid = left + size / 2; let val = vec[mid]; if val < x { left = mid + 1; } else if x < val { right = mid; } else { return Ok(mid); } size = right - left; } Err(left)\n} Flux complains in two places error[FLUX]: precondition might not hold --> src/vectors.rs:152:19 |\n152 | let val = vec[mid]; | ^^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:189:44 |\n189 | #[flux::sig(fn(&RVec[@n], usize{v : v < n}) -> &T)] | ^^^^^ error[FLUX]: arithmetic operation may overflow --> src/vectors.rs:160:9 |\n160 | size = right - left; | ^^^^^^^^^^^^^^^^^^^ The vector access may be unsafe as mid could be out of bounds! The size variable may underflow as left may exceed right! Can you the spot off-by-one and figure out a fix?","breadcrumbs":"Refined Vectors » Binary Search","id":"64","title":"Binary Search"},"65":{"body":"So, we saw how Flux's index and constraint mechanisms combine with Rust's ownership to let us write a refined vector API that ensures the safety of all accesses at compile time. Next time, we'll see how these mechanisms are compositional in that we can use standard type machinery to build up compound structures and APIs from simple ones. Why not use an iterator? We'll get there in due course!","breadcrumbs":"Refined Vectors » Summary","id":"65","title":"Summary"},"66":{"body":"Flux is a research project described in the paper","breadcrumbs":"About » About Flux","id":"66","title":"About Flux"},"67":{"body":"Flux is being developed by Nico Lehmann , Adam Geller Cole Kurashige Gilles Barthe Niki Vazou Ranjit Jhala","breadcrumbs":"About » Team","id":"67","title":"Team"},"68":{"body":"Flux is open-source and available here","breadcrumbs":"About » Code","id":"68","title":"Code"},"69":{"body":"This work was supported by the National Science Foundation, European Research Council, and by generous gifts from Microsoft Research.","breadcrumbs":"About » Thanks","id":"69","title":"Thanks"},"7":{"body":"The following example declares a function inc that returns an integer greater than the input. We use the nightly feature register_tool to register the flux tool in order to add refinement annotations to functions. #[flux::sig(fn(x: i32) -> i32{v: x < v})]\npub fn inc(x: i32) -> i32 { x - 1\n} You can save the above snippet in say test0.rs and then run rustc-flux --crate-type=lib path/to/test0.rs you should see in your output error[FLUX]: postcondition might not hold --> test0.rs:3:5 |\n3 | x - 1 | ^^^^^ as indeed x - 1 is not greater than x as required by the output refinement i32{v: x < v}. If you fix the error by replacing x - 1 with x + 1, you should get no errors in the output (the output may be empty, but in this case no output is a good thing). Read these chapters to learn more about what you specify and verify with flux.","breadcrumbs":"Run » A tiny example","id":"7","title":"A tiny example"},"70":{"body":"This is a prototype! Use at your own risk. Everything could break and it will break.","breadcrumbs":"About » Limitations","id":"70","title":"Limitations"},"8":{"body":"The flux-driver binary is a rustc driver (similar to how clippy works) meaning it uses rustc as a library to \"drive\" compilation performing additional analysis along the way. Running the binary requires dynamically linking a correct version of librustc. Thus, to avoid the hassle you should never execute it directly. Instead, use rustc-flux or cargo-flux.","breadcrumbs":"Run » A note about the flux-driver binary","id":"8","title":"A note about the flux-driver binary"},"9":{"body":"This section assumes you have installed flux, cargo-flux, and rustc-flux.","breadcrumbs":"Run » Editor Support","id":"9","title":"Editor Support"}},"length":71,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"42":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"48":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"46":{"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":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"44":{"tf":1.0},"49":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":4,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"41":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":2,"docs":{"40":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":6,"docs":{"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"49":{"tf":1.0}},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"68":{"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":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"33":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.449489742783178},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"31":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"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":4,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"40":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"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":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"tf":1.0},"31":{"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":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"48":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"45":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":3.1622776601683795},"33":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"47":{"tf":1.0},"55":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"42":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":2.23606797749979},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"x":{"df":6,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"33":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"55":{"tf":1.0},"65":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":4.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"57":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":2,"docs":{"48":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"2":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"3":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":3.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.6457513110645907},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":1,"docs":{"53":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"34":{"tf":2.0},"35":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"44":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"44":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"64":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"33":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"p":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"64":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"45":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":2.8284271247461903},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"50":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":3.0},"48":{"tf":2.23606797749979},"49":{"tf":2.8284271247461903},"50":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"52":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"h":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"63":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"40":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"31":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":2.449489742783178},"53":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.6457513110645907},"53":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}},"s":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"63":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.7320508075688772},"61":{"tf":1.0}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"1":{"df":1,"docs":{"63":{"tf":1.0}}},"a":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"48":{"tf":4.242640687119285},"52":{"tf":2.23606797749979},"63":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"33":{"tf":1.0},"45":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"52":{"tf":2.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":30,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.4641016151377544},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"40":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"33":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"33":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":15,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"38":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"33":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"31":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"43":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.0},"57":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"63":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"33":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":3.872983346207417},"31":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"40":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":4.898979485566356},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"51":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"63":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"62":{"tf":1.0}}},"df":12,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.8284271247461903},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"v":{"df":1,"docs":{"55":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":9,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"52":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"42":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"48":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"46":{"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":8,"docs":{"32":{"tf":1.7320508075688772},"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}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"44":{"tf":1.0},"49":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":4,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"41":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":2,"docs":{"40":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":6,"docs":{"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"49":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"49":{"tf":1.0}},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"33":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":17,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"31":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"8":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"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":4,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"40":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":2.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"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":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"tf":1.0},"31":{"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":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"48":{"tf":2.23606797749979},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"45":{"tf":1.4142135623730951}}}}}}}},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":3.3166247903554},"33":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"47":{"tf":1.0},"55":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"42":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":2.23606797749979},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.6457513110645907},"26":{"tf":2.6457513110645907},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"x":{"df":6,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"33":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"55":{"tf":1.0},"65":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"28":{"tf":2.8284271247461903},"29":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":4.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":2.449489742783178},"50":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"57":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":2,"docs":{"48":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"2":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"3":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":3.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":3.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.6457513110645907},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":1,"docs":{"53":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"40":{"tf":2.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}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"34":{"tf":2.0},"35":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"44":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"44":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"64":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"33":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"p":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"64":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":2.23606797749979},"54":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"45":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":2.8284271247461903},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"50":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":3.0},"48":{"tf":2.23606797749979},"49":{"tf":2.8284271247461903},"50":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"52":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"63":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"40":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"31":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"46":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.6457513110645907},"53":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.6457513110645907},"53":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}},"s":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"63":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"58":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":2.0},"61":{"tf":1.4142135623730951}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"1":{"df":1,"docs":{"63":{"tf":1.0}}},"a":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"48":{"tf":4.242640687119285},"52":{"tf":2.23606797749979},"63":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"33":{"tf":1.0},"45":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.4142135623730951},"51":{"tf":2.6457513110645907},"52":{"tf":2.23606797749979},"53":{"tf":2.6457513110645907},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":36,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"40":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"33":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"33":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"4":{"tf":2.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"38":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"5":{"tf":2.6457513110645907},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"33":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"31":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"43":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.0},"57":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"63":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"33":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":4.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":3.0},"22":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"40":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":5.0},"26":{"tf":2.6457513110645907},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0990195135927845},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"51":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"62":{"tf":1.0}}},"df":13,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":3.1622776601683795},"57":{"tf":2.8284271247461903},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"v":{"df":1,"docs":{"55":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":9,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"52":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"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":{"18":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"14":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"16":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"41":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"61":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"38":{"tf":1.0},"5":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"56":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"19":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"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":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 1cd995929d..497cc67a48 100644 --- a/searchindex.json +++ b/searchindex.json @@ -1 +1 @@ -{"doc_urls":["index.html","guide/install.html#installing-flux","guide/install.html#requirements","guide/install.html#installing","guide/run.html#running-flux","guide/run.html#running-on-a-file-rustc-flux","guide/run.html#running-on-a-package-cargo-flux","guide/run.html#a-tiny-example","guide/run.html#a-note-about-the-flux-driver-binary","guide/run.html#editor-support","guide/run.html#rust-analyzer-in-vscode","guide/run.html#configuration","guide/run.html#environment-variables","guide/run.html#config-file","guide/run.html#crate-config","guide/run.html#query-caching","guide/specs.html#flux-specification-guide","guide/specs.html#refinement-types","guide/specs.html#argument-syntax","guide/specs.html#extern-specs","guide/specs.html#import-the-procedural-macros","guide/specs.html#extern-functions","guide/specs.html#extern-structs-and-impls","guide/specs.html#grammar-of-refinements","dev/develop.html#developers-guide","dev/develop.html#regression-tests","dev/develop.html#testing-flux-on-a-file","dev/develop.html#reporting-locations-where-errors-are-emitted","dev/develop.html#running-outside-the-project","dev/develop.html#profiling-flux","dev/develop.html#sample-output","dev/architecture.html#high-level-architecture","dev/architecture.html#crates","dev/architecture.html#intermediate-representations","dev/architecture.html#surface","dev/architecture.html#fhir","dev/architecture.html#rty","dev/architecture.html#simplified-rustc","dev/architecture.html#lifting-and-refining","blog/01-introducing-flux.html#introducing-flux","blog/01-introducing-flux.html#indexed-types","blog/01-introducing-flux.html#post-conditions","blog/01-introducing-flux.html#pre-conditions","blog/01-introducing-flux.html#index-parameters-and-expressions","blog/01-introducing-flux.html#existential-types","blog/01-introducing-flux.html#summary","blog/02-ownership.html#ownership-in-flux","blog/02-ownership.html#exclusive-ownership","blog/02-ownership.html#borrowing-shared-references","blog/02-ownership.html#refinement-parameters","blog/02-ownership.html#borrowing-mutable-references","blog/02-ownership.html#aliased-references","blog/02-ownership.html#borrowing-strong-references","blog/02-ownership.html#summary","blog/03-vectors.html#refined-vectors","blog/03-vectors.html#refining-vectors-to-track-their-size","blog/03-vectors.html#creating-vectors","blog/03-vectors.html#pushing-values","blog/03-vectors.html#popping-values","blog/03-vectors.html#using-the-api","blog/03-vectors.html#querying-the-size","blog/03-vectors.html#random-access","blog/03-vectors.html#memoization","blog/03-vectors.html#binary-search","blog/03-vectors.html#summary","about.html#about-flux","about.html#team","about.html#code","about.html#thanks","about.html#limitations"],"index":{"documentStore":{"docInfo":{"0":{"body":25,"breadcrumbs":1,"title":1},"1":{"body":0,"breadcrumbs":3,"title":2},"10":{"body":26,"breadcrumbs":4,"title":3},"11":{"body":0,"breadcrumbs":2,"title":1},"12":{"body":117,"breadcrumbs":3,"title":2},"13":{"body":68,"breadcrumbs":3,"title":2},"14":{"body":36,"breadcrumbs":3,"title":2},"15":{"body":23,"breadcrumbs":3,"title":2},"16":{"body":5,"breadcrumbs":4,"title":3},"17":{"body":209,"breadcrumbs":3,"title":2},"18":{"body":77,"breadcrumbs":3,"title":2},"19":{"body":41,"breadcrumbs":3,"title":2},"2":{"body":10,"breadcrumbs":2,"title":1},"20":{"body":38,"breadcrumbs":4,"title":3},"21":{"body":131,"breadcrumbs":3,"title":2},"22":{"body":214,"breadcrumbs":4,"title":3},"23":{"body":61,"breadcrumbs":3,"title":2},"24":{"body":0,"breadcrumbs":3,"title":2},"25":{"body":145,"breadcrumbs":3,"title":2},"26":{"body":103,"breadcrumbs":4,"title":3},"27":{"body":33,"breadcrumbs":5,"title":4},"28":{"body":82,"breadcrumbs":4,"title":3},"29":{"body":17,"breadcrumbs":3,"title":2},"3":{"body":77,"breadcrumbs":2,"title":1},"30":{"body":150,"breadcrumbs":3,"title":2},"31":{"body":18,"breadcrumbs":5,"title":3},"32":{"body":183,"breadcrumbs":3,"title":1},"33":{"body":34,"breadcrumbs":4,"title":2},"34":{"body":19,"breadcrumbs":3,"title":1},"35":{"body":27,"breadcrumbs":3,"title":1},"36":{"body":21,"breadcrumbs":3,"title":1},"37":{"body":23,"breadcrumbs":4,"title":2},"38":{"body":32,"breadcrumbs":4,"title":2},"39":{"body":81,"breadcrumbs":4,"title":2},"4":{"body":6,"breadcrumbs":3,"title":2},"40":{"body":26,"breadcrumbs":4,"title":2},"41":{"body":55,"breadcrumbs":4,"title":2},"42":{"body":61,"breadcrumbs":4,"title":2},"43":{"body":64,"breadcrumbs":5,"title":3},"44":{"body":154,"breadcrumbs":4,"title":2},"45":{"body":72,"breadcrumbs":3,"title":1},"46":{"body":56,"breadcrumbs":4,"title":2},"47":{"body":141,"breadcrumbs":4,"title":2},"48":{"body":123,"breadcrumbs":5,"title":3},"49":{"body":72,"breadcrumbs":4,"title":2},"5":{"body":31,"breadcrumbs":5,"title":4},"50":{"body":116,"breadcrumbs":5,"title":3},"51":{"body":82,"breadcrumbs":4,"title":2},"52":{"body":153,"breadcrumbs":5,"title":3},"53":{"body":67,"breadcrumbs":3,"title":1},"54":{"body":48,"breadcrumbs":4,"title":2},"55":{"body":70,"breadcrumbs":6,"title":4},"56":{"body":60,"breadcrumbs":4,"title":2},"57":{"body":48,"breadcrumbs":4,"title":2},"58":{"body":46,"breadcrumbs":4,"title":2},"59":{"body":50,"breadcrumbs":4,"title":2},"6":{"body":24,"breadcrumbs":5,"title":4},"60":{"body":40,"breadcrumbs":4,"title":2},"61":{"body":122,"breadcrumbs":4,"title":2},"62":{"body":80,"breadcrumbs":3,"title":1},"63":{"body":108,"breadcrumbs":4,"title":2},"64":{"body":39,"breadcrumbs":3,"title":1},"65":{"body":5,"breadcrumbs":1,"title":1},"66":{"body":15,"breadcrumbs":1,"title":1},"67":{"body":5,"breadcrumbs":1,"title":1},"68":{"body":12,"breadcrumbs":1,"title":1},"69":{"body":6,"breadcrumbs":1,"title":1},"7":{"body":85,"breadcrumbs":3,"title":2},"8":{"body":39,"breadcrumbs":5,"title":4},"9":{"body":8,"breadcrumbs":3,"title":2}},"docs":{"0":{"body":"Flux is a refinement type checker for Rust that lets you specify a range of correctness properties and have them be verified at compile time. See the examples -- listed in the summary on the left -- to learn about Refinement types and Rust. You can try it online here .","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Install » Installing Flux","id":"1","title":"Installing Flux"},"10":{"body":"Add this to the workspace settings i.e. .vscode/settings.json { \"rust-analyzer.check.overrideCommand\": [ \"cargo\", \"flux\", \"--workspace\", \"--message-format=json-diagnostic-rendered-ansi\" ]\n} Note: Make sure to edit the paths in the above snippet to point to the correct locations on your machine.","breadcrumbs":"Run » Rust-Analyzer in VSCode","id":"10","title":"Rust-Analyzer in VSCode"},"11":{"body":"","breadcrumbs":"Run » Configuration","id":"11","title":"Configuration"},"12":{"body":"You can set various env variables to customize the behavior of flux. FLUX_CONFIG tells flux where to find a config file for these settings. By default, flux searches its directory for a flux.toml or .flux.toml. FLUX_SYSROOT tells cargo-flux and rustc-flux where to find the flux-driver binary. Defaults to the default installation location in ~/.flux. FLUX_LOG_DIR=path/to/log/ sets the directory where constraints, timing and cache are saved. Defaults to ./log/. FLUX_DUMP_CONSTRAINT=1 tell flux to dump constraints generated for each function. FLUX_DUMP_CHECKER_TRACE=1 saves the checker's trace (useful for debugging!) FLUX_DUMP_TIMINGS=1 saves the profile information FLUX_DUMP_MIR=1 saves the low-level MIR for each analyzed function FLUX_POINTER_WIDTH=N the size of (either 32 or 64), used to determine if an integer cast is lossy (default 64). FLUX_CHECK_DEF=name only checks definitions containing name as a substring FLUX_CACHE=1\" switches on query caching and saves the cache in FLUX_CACHE_FILE FLUX_CACHE_FILE=file.json customizes the cache file, default FLUX_LOG_DIR/cache.json FLUX_CHECK_OVERFLOW=1 checks for over and underflow on arithmetic integer operations, default 0. When set to 0, it still checks for underflow on unsigned integer subtraction.","breadcrumbs":"Run » Environment Variables","id":"12","title":"Environment Variables"},"13":{"body":"The config file is a .toml file that contains on each line the lowercase name of a flux command line flag without the FLUX_ prefix. Set environment variables take priority over the config file. The config file should be in the project root. For example, suppose your project root contains the following flux.toml. log_dir = \"./test\"\ndump_timings = true\ndump_mir = true\ncache = true and you run in the project root FLUX_DUMP_MIR=0 cargo-flux check then flux will create the directory ./test/ and write ./test/timings, a file containing profiling information. It will not dump the MIR because that setting was overridden by setting the environment variable FLUX_DUMP_MIR=0.","breadcrumbs":"Run » Config file","id":"13","title":"Config file"},"14":{"body":"Some flags can be configured on a per-crate basis using the custom inner attribute #![flux::cfg]. This annotation relies on the unstable custom inner attributes feature. To be able to use with a non-nightly compiler you have to put it under a cfg_attr. For example, to enable overflow checking: #![cfg_attr(flux, flux::cfg(check_overflow = true))] The only flag supported now is overflow checking.","breadcrumbs":"Run » Crate Config","id":"14","title":"Crate Config"},"15":{"body":"FLUX_CACHE=1 persistently caches the safe fixpoint queries for each DefId in FLUX_LOG_DIR/FLUX_CACHE_FILE, and on subsequent runs, skips queries that are already in the cache, which considerably speeds up cargo-flux check on an entire crate.","breadcrumbs":"Run » Query Caching","id":"15","title":"Query Caching"},"16":{"body":"This is a WIP guide to writing specifications in flux.","breadcrumbs":"Specs » Flux Specification Guide","id":"16","title":"Flux Specification Guide"},"17":{"body":"Indexed Type : An indexed type B[r] is composed of a base Rust type B and a refinement index r. The meaning of the index depends on the type. Some examples are i32[n]: denotes the (singleton) set of i32 values equal to n. List[n]: values of type List of length n. Refinement parameter : Function signatures can be parametric on refinement variables. Refinement parameters are declared using the @n syntax. For example, the following signature: fn(i32[@n]) -> i32[n + 1] binds n over the entire scope of the function to specify that it takes an i32 equal to n and returns an i32 equal to n + 1. This is analogous to languages like Haskell where a lower case letter can be used to quantify over a type, e.g., the type a -> a in Haskell is polymorphic on the type a which is bound for the scope of the entire function type. Existential Type : An existential type B{v: r(v)} is composed of a base type B, a refinement variable v and a refinement predicate r on v. Intuitively, a Rust value x has type B{v: r(v)} if there exists a refinement value a such that r(a) holds and x has type B[x]. i32{v: v > 0}: set of positive i32 values. List{v: v > 0}: set of non-empty lists. Constraint Type : A constraint type has the form {T | r} where T is any type (not just a base type). Intuitively, a value has type {T | r} if it has type T and also r holds. They can be used to constraint a refinement parameter. For example, the following signature constraint the refinement parameter n to be less than n. fn({i32[@n] | n < 10}) -> i32[n + 1] Constraint types serve a similar role as existentials as they can also be used to constraint some refinement value with a predicate, but an existential type can only be used to constraint refinement variable that it bound locally, in contrast constraint types can be used to constraint a \"non-local\" parameter. This can be seen in the example above where the parameter n cannot be bound locally because it has to be used in the return type.","breadcrumbs":"Specs » Refinement Types","id":"17","title":"Refinement Types"},"18":{"body":"The @n syntax used to declare refinements parameters can be hard to read sometimes. Flux also supports a syntax that let you bind refinement parameters using colons similar to the syntax used to declare arguments in a function. We call this argument syntax . This syntax desugars to one of the refinements forms discussed above. For example, the following signature fn(x: i32, y: i32) -> i32[x + y] desugars to fn(i32[@x], i32[@y]) -> i32[x + y] It is also possible to attach some constraint to the parameters when using argument syntax. For example, to specify that y must be greater than x using argument syntax we can write: fn(x: i32, y: i32{x > y}) -> i32[x + y] This will desugar to: fn(i32[@x], {i32[@y] | x > y}) -> i32[x + y]","breadcrumbs":"Specs » Argument Syntax","id":"18","title":"Argument Syntax"},"19":{"body":"Sometimes you may want to refine a struct or function that outside your code. We refer to such a specification as an \"extern spec,\" which is short for \"external specification.\" Flux right now has rudimentary support for extern specs: they are supported for functions, impls, and structs. Impls are only supported for structs and if you have multiple impls for a struct (such as &[T] and [T]), those may conflict. Structs only support opaque refinements.","breadcrumbs":"Specs » Extern specs","id":"19","title":"Extern specs"},"2":{"body":"rustup liquid-fixpoint z3 Be sure that the liquid-fixpoint and z3 executables are in your $PATH.","breadcrumbs":"Install » Requirements","id":"2","title":"Requirements"},"20":{"body":"In order to use an extern spec you need to add a dependency on flux_rs . Right now this needs to be done as a local dependency since it is not published. Below is an example of how you can include it, although the version may be different. [dependencies]\nflux-rs = { path = \"path-to-flux/flux/flux-rs\", version = \"0.1.0\" } Then in your code you will need to include the extern_spec attribute macro. use flux_rs::extern_spec;","breadcrumbs":"Specs » Import the procedural macros","id":"20","title":"Import the procedural macros"},"21":{"body":"An example of refining an extern function can be found here . To define an extern spec on a function, you need to do three things, which happen to correspond to each of the below lines. #[extern_spec(std::mem)]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\nfn swap(a: &mut i32, b: &mut i32); Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::mem. You can use this path to qualify the function. So in the above example, the function we are targeting has the full path of std::mem::swap. Add a #[flux::sig(...)] attribute. This is required for any extern spec on a function. This signature behaves as if the #[flux::trusted] attribute was added, because we can't actually check the implementation. We just verify some simple things, like that the function arguments have compatible types. Write a function stub that matches the external function. If you do the above, you can use std::mem::swap as if it were refined by the above type. You shouldn't need to know the details, but here's how the macro works. It parses the std::mem into a module path and then transforms the function into #[flux::extern_spec]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\n#[allow(unused, dead_code)]\nfn __flux_extern_spec_swap(a: &mut i32, b: &mut i32) { std::mem::swap(a, b)\n} It does this to get information about the function std::mem::swap and its arguments (this turns out to be difficult to do without giving the compiler something to inspect and type check).","breadcrumbs":"Specs » Extern functions","id":"21","title":"Extern functions"},"22":{"body":"An example of refining an extern struct and impl can be found here . A simpler example just involving structs can be found here . The syntax for an extern spec on a struct is very similar to that for a function. Once again, each line in the example happens to correspond to a step. #[extern_spec(std::string)]\n#[flux::refined_by(len: int)]\nstruct String; Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::string. You can use this path to qualify the function. So in the above example, the struct we are targeting has the full path of std::string::String. Add a #[flux::refined_by(...)] attribute. This is required for any extern spec on a struct. Right now these attributes behave as if they were opaque (#[flux::opaque]), although we may support non-opaque extern structs. Write a stub for the extern struct. If you do the above, you can use std::string::String as if it were refined by an integer index. The syntax for an extern impl is a little different than that for functions or structs. #[extern_spec(std::string)]\nimpl String { #[flux::sig(fn() -> String[0])] fn new() -> String; #[flux::sig(fn(&String[@n]) -> usize[n])] fn len(s: &String) -> usize;\n} You still need to add the #[extern_spec] attribute, with the same optional argument of the path as above. You need to write out the impl block for the struct you want to refine. This struct does not need an extern spec, since by refining the impl you're only refining its methods. Write an extern spec for each function you wish to refine (this may be a subset). This is written just like a function extern spec with the caveat that the self parameter is not presently supported. So for example, instead of writing fn len(&self) -> usize;, you need to write fn len(s: &String) -> usize;. If you do the above, you can use the above methods ofstd::string::String as if they were refined. You shouldn't need to know the details, but here's how the above two macros expand. For structs: #[flux::extern_spec]\n#[allow(unused, dead_code)]\n#[flux::refined_by(len: int)]\nstruct __FluxExternSpecString(std::string::String); For impls (this was translated manually so there might be some bugs): #[allow(unused, dead_code)]\nstruct __FluxExternImplStructString; #[allow(unused, dead_code)]\nimpl __FluxExternImplStructString { #[flux::extern_spec] #[flux::sig(fn() -> String[0])] #[allow(unused, dead_code)] fn __flux_extern_spec_new() -> String { std::string::String::new::<>() } #[flux::extern_spec] #[flux::sig(fn(&String[@n]) -> usize[n])] #[allow(unused, dead_code)] fn __flux_extern_spec_len(s: &String) -> usize { std::string::String::len::<>(s) }\n}","breadcrumbs":"Specs » Extern structs and impls","id":"22","title":"Extern structs and impls"},"23":{"body":"r ::= n // numbers 1,2,3... | x // identifiers x,y,z... | x.f // index-field access | r + r // addition | r - r // subtraction | n * e // multiplication by constant | if r { r } else { r } // if-then-else | f(r...) // function application | true | false // booleans | r == r // equality | r != r // not equal | r < r // less than | r <= r // less than or equal | r > r // greater than | r >= r // greater than or equal | r || r // disjunction | r && r // conjunction | r => r // implication | !r // negation","breadcrumbs":"Specs » Grammar of Refinements","id":"23","title":"Grammar of Refinements"},"24":{"body":"","breadcrumbs":"Develop » Developer's Guide","id":"24","title":"Developer's Guide"},"25":{"body":"You can run the various regression tests in the tests/pos and tests/neg directories using cargo xtask test This will build the flux binary and then run it against the entire test suite. You can optionally pass a filter to only run tests containing some substring. For example: $ cargo xtask test impl_trait Compiling xtask v0.1.0 (/path/to/flux/xtask) Finished dev [unoptimized + debuginfo] target(s) in 0.29s Running `target/debug/xtask test impl_trait`\n$ cargo build Finished dev [unoptimized + debuginfo] target(s) in 0.05s\n$ cargo test -p flux-tests -- --test-args impl_trait Compiling flux-tests v0.1.0 (/path/to/flux/flux-tests) Finished test [unoptimized + debuginfo] target(s) in 0.62s Running tests/compiletest.rs (target/debug/deps/compiletest-1241128f1f51caa4) running 5 tests\ntest [ui] pos/surface/impl_trait04.rs ... ok\ntest [ui] pos/surface/impl_trait03.rs ... ok\ntest [ui] pos/surface/impl_trait01.rs ... ok\ntest [ui] pos/surface/impl_trait00.rs ... ok\ntest [ui] pos/surface/impl_trait02.rs ... ok test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 191 filtered out; finished in 0.10s running 2 tests\ntest [compile-fail] neg/surface/impl_trait00.rs ... ok\ntest [compile-fail] neg/surface/impl_trait02.rs ... ok test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 207 filtered out; finished in 0.09s","breadcrumbs":"Develop » Regression Tests","id":"25","title":"Regression Tests"},"26":{"body":"When working on Flux, you may want to test your changes by running it against a test file. You can use cargo xtask run to run Flux on a single input file. The command will set appropriate flags to be able to use custom Flux attributes and macros, plus some extra flags useful for debugging. For example: $ cat test.rs\n#[flux::sig(fn(x: i32) -> i32[x + 1])]\nfn add1(x: i32) -> i32 { x + 1\n}\n$ cargo xtask run test.rs The command will use a super set of the flags passed when running regression tests. Thus, a common workflow is to identify a failing test and run it directly with cargo xtask run, or alternatively copy it to a different file. You may also find useful to create a directory in the root of the project and add it to .git/info/exclude . You can keep files there, outside of version control, and test Flux against them. I have a directory called attic/ where I keep a file named playground.rs. To run Flux on it, I do cargo xtask run attic/playground.rs.","breadcrumbs":"Develop » Testing Flux on a File","id":"26","title":"Testing Flux on a File"},"27":{"body":"When you use cargo xtask run you'll see that we report the location an error was emitted, e.g., error[FLUX]: refinement type error --> attic/playground.rs:4:5 |\n4 | 0 | ^ a postcondition cannot be proved\n-Ztrack-diagnostics: created at crates/flux-refineck/src/lib.rs:114:15 <------- this You can also pass -Ztrack-diagnostics=y to enable it if you are not using cargo xtask run","breadcrumbs":"Develop » Reporting locations where errors are emitted","id":"27","title":"Reporting locations where errors are emitted"},"28":{"body":"To run Flux in a package outside the flux repo you need to install the binaries globally. You can do that using cargo xtask install. If you are continuously testing new changes it could be annoying to do it each time. To deal with this, you can set the FLUX_SYSROOT environment variable to change the location where cargo-flux and rustc-flux load the flux-driver. You can set it globally to point to the target/debug directory inside your local copy of the repo. This way you won't have to run cargo xtask install after every change, and you can be sure you'll be using the latest local debug build. Just be aware that the rustc-flux and cargo-flux binaries are built for a specific toolchain, and you will get a dynamic linking error if the flux-driver was compiled with a different one. This is to say, you should at least run cargo xtask install every time after the toolchain is updated.","breadcrumbs":"Develop » Running outside the project","id":"28","title":"Running outside the project"},"29":{"body":"Set FLUX_DUMP_TIMINGS=true to have flux write timing diagnostics to ./log/timings. Right now this is extremely simple, it just provides some details for the spans under flux_typeck and flux_driver.","breadcrumbs":"Develop » Profiling Flux","id":"29","title":"Profiling Flux"},"3":{"body":"The only way to use flux is to build it from source. First you need to clone the repository git clone https://github.com/flux-rs/flux\ncd flux To build the source you need a nightly version of rustc. We pin the version using a toolchain file (more info here ). If you are using rustup, no special action is needed as it should install the correct rustc version and components based on the information on that file. Next, run the following to build and install flux binaries cargo xtask install This will install two binaries rustc-flux and cargo-flux in your cargo home. These two binaries should be used respectively to run flux on either a single file or on a project using cargo. The installation process will also copy some files to $HOME/.flux.","breadcrumbs":"Install » Installing","id":"3","title":"Installing"},"30":{"body":"Below is a sample output for an invocation of cargo-flux check that took 19 seconds. The missing 2 seconds approximately accounts for the time it takes for cargo check to run. Note that check_crate contains everything running under check_top, which is why the sum of the spans is greater than 19 seconds. check_top Checker::infer num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 2.62ms max: 24.12ms total time: 229.64ms Checker::check num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 5.24ms max: 159.91ms total time: 2028.47ms FixpointCtx::check num events: 205 min non-zero: 22.02ms 1st quartile: 26.21ms 2nd quartile: 28.31ms 3rd quartile: 40.37ms max: 1867.51ms total time: 9106.36ms\ntotal time: 11364.47ms check_crate Callbacks::check_wf num events: 1 min non-zero: 18.35ms 1st quartile: 18.87ms 2nd quartile: 18.87ms 3rd quartile: 18.87ms max: 18.87ms total time: 18.87ms Callbacks::check_crate num events: 1 min non-zero: 16986.93ms 1st quartile: 16995.32ms 2nd quartile: 16995.32ms 3rd quartile: 16995.32ms max: 16995.32ms total time: 16995.32ms\ntotal time: 17014.19ms","breadcrumbs":"Develop » Sample output","id":"30","title":"Sample output"},"31":{"body":"Flux is implemented as a compiler driver . We hook into the compiler by implementing the Callbacks trait. The implementation is located is in the flux-driver crate, and it is the main entry point to Flux.","breadcrumbs":"Develop » Architecture » High-level Architecture","id":"31","title":"High-level Architecture"},"32":{"body":"crates/flux-bin: Contains the cargo-flux and rustc-flux binaries used to launch the flux-driver. crates/flux-common: Common utility definitions used across all crates. crates/flux-config: Crate containing logic associated with global configuration flags that change the behavior of Flux, e.g, to enable or disable overflow checking. crates/flux-desugar: Implementation of name resolution and desugaring from Flux surface syntax into Flux high-level intermediate representation (fhir). This includes name resolution. crates/flux-driver: Main entry point to Flux. It contains the flux-driver binary and the implementation of the Callbacks trait. crates/flux-errors: Utility definitions for user facing error reporting. crates/flux-fhir-analysis: Implements the \"analyses\" performed in the fhir, most notably well-formedness checking and conversion from fhir into rty. crates/flux-fixpoint: Code to interact with the Liquid Fixpoint binary. crates/flux-macros: Procedural macros used internally to implement Flux. crates/flux-metadata: Logic for saving Flux crate metadata that can be used to import refined signatures from external crates. crates/flux-middle: This crate contains common type definitions that are used by the rest of Flux like the rty and fhir intermediate representations. Akin to rustc_middle . crates/flux-refineck: Implementation of refinement type checking. crates/flux-syntax: Definition of the surface syntax AST and parser. crates/flux-tests: Flux regression tests. lib/flux-attrs: Implementation of user facing procedural macros for annotating programs with Flux specs. lib/flux-rs: This is just a re-export of the macros implemented in flux-attrs. The intention is to eventually put Flux \"standard library\" here, i.e., a set of definitions that are useful when working with Flux.","breadcrumbs":"Develop » Architecture » Crates","id":"32","title":"Crates"},"33":{"body":"Flux has several intermediate representations (IR) for types. They represent a refined version of an equivalent type in some rustc IR. We have picked a distinct verb to refer to the process of going between these different representations to make it easier to refer to them. The following image summarizes all the IRs and the process for going between them. IRs diagram","breadcrumbs":"Develop » Architecture » Intermediate Representations","id":"33","title":"Intermediate Representations"},"34":{"body":"The surface IR represents source level Flux annotations. It corresponds to the rustc_ast data structures in rustc. The definition as well as the parser is located in the flux-syntax crate.","breadcrumbs":"Develop » Architecture » Surface","id":"34","title":"Surface"},"35":{"body":"The Flux High-Level Intermediate Representation (fhir) is a refined version of rustc's hir . The definition is located in the flux_middle crate inside the fhir module. The process of going from surface to fhir is called desugaring , and it is implemented in the flux-desugar crate.","breadcrumbs":"Develop » Architecture » Fhir","id":"35","title":"Fhir"},"36":{"body":"The definition in the flux_middle::rty module correspond to a refined version of the main rustc representation for types defined in rustc_middle::ty . The process of going from fhir to rty is called conversion , and it is implemented in the flux_fhir_analysis::conv module.","breadcrumbs":"Develop » Architecture » Rty","id":"36","title":"Rty"},"37":{"body":"The definition in the flux_middle::rustc module correspond to simplified version of data structures in rustc. They can be understood as the currently supported subset of Rust. The process of going from a definition in rustc_middle into flux_middle::rustc is called lowering and it is implemented in flux_middle::rustc::lowering.","breadcrumbs":"Develop » Architecture » Simplified Rustc","id":"37","title":"Simplified Rustc"},"38":{"body":"Besides the different translation between Flux intermediate representations, there are two ways to get a refined version from a rust type. The process of going from a type in hir into a type in fhir is called lifting , and it is implemented in flux_middle::fhir::lift. The process for going from a type in flux_middle::rustc::ty into a flux_middle::rty is called refining , and it is implemented flux_middle::rty::refining.","breadcrumbs":"Develop » Architecture » Lifting and Refining","id":"38","title":"Lifting and Refining"},"39":{"body":"Online demo Types bring order to code. For example, if a variable i:usize then we know i is a number that can be used to index a vector. Similarly, if v:vec<&str> then we can be sure that v is a collection of strings which may be indexed but of course, not used as an index. However, by itself usize doesn't tell us how big or small the number and hence the programmer must still rely on their own wits, a lot of tests, and a dash of optimism, to ensure that all the different bits fit properly at run-time. Refinements are a promising new way to extend type checkers with logical constraints that specify additional correctness requirements that can be verified by the compiler, thereby entirely eliminating various classes of run-time problems. We're excited to introduce Flux , a refinement type checker plugin that brings this technology to Rust.","breadcrumbs":"Introducing Flux » Introducing Flux","id":"39","title":"Introducing Flux"},"4":{"body":"You can run flux on a single file or entire crate.","breadcrumbs":"Run » Running Flux","id":"4","title":"Running Flux"},"40":{"body":"The most basic form of refinement type in flux is a type that is indexed by a logical value. For example Type Meaning i32[10] The (singleton) set of i32 values equal to 10 bool[true] The (singleton) set of bool values equal to true","breadcrumbs":"Introducing Flux » Indexed Types","id":"40","title":"Indexed Types"},"41":{"body":"We can already start using these indexed types to start writing (and checking) code. For example we can write the following specification which says that the value returned by mk_ten must in fact be 10 #[flux::sig(fn() -> i32[10])]\npub fn mk_ten() -> i32 { 5 + 4\n} but when you compile it, flux will say error[FLUX]: postcondition might not hold --> src/basics.rs:7:5 |\n7 | 5 + 4 | ^^^^^ The error says that that the postcondition might not hold which means that the output produced by mk_ten may not in fact be an i32[10] as indeed, in this case, the result is 9! You can eliminate the error by replacing the body with 5 + 5 or just 10.","breadcrumbs":"Introducing Flux » Post-Conditions","id":"41","title":"Post-Conditions"},"42":{"body":"Here's a second example that shows how you can use an index to restrict the space of inputs that a function expects. #[flux::sig(fn (b:bool[true]))]\npub fn assert(b:bool) { if !b { panic!(\"assertion failed\") }\n} Here, the refined specification for assert says that you can only call it with true as the input. So if you write fn test(){ assert(2 + 2 == 4); assert(2 + 2 == 5); // fails to type check\n} then flux will complain that error[FLUX]: precondition might not hold --> src/basics.rs:12:5 |\n12 | assert(2 + 2 == 5); // fails to type check | ^^^^^^^^^^^^^^^^^^ meaning that the call to assert fails to establish that the input is indeed true (as of course, in this case, it is not!)","breadcrumbs":"Introducing Flux » Pre-Conditions","id":"42","title":"Pre-Conditions"},"43":{"body":"It's not terribly exciting to only talk about fixed values like 10 or true. To be more useful, flux lets you index types by refinement parameters . For example, you can write #[flux::sig(fn(n:i32) -> bool[0 < n])]\npub fn is_pos(n: i32) -> bool { if 0 < n { true } else { false }\n} Here, the type says that is_pos takes as input some i32 indexed by n returns as output the bool indexed by 0 < n in other words, the output is true exactly when 0 < n. We might use this function to check that: pub fn test_pos(n: i32) { let m = if is_pos(n) { n - 1 } else { 0 }; assert(0 <= m);\n}","breadcrumbs":"Introducing Flux » Index Parameters and Expressions","id":"43","title":"Index Parameters and Expressions"},"44":{"body":"Often we don't care about the exact value of a thing -- but just care about some properties that it may have. For example, we don't care that an i32 is equal to 5 or 10 or n but that it is non-negative. Type Meaning i32{v: 0 < v} The set of i32 values that positive i32{v: n <= v} The set of i32 values greater than or equal to n Flux allows such specifications by pairing plain Rust types with assertions [1] that constrain the value. For example, we can rewrite mk_10 with the output type i32{v:0 i32{v: 0 < v})]\npub fn mk_ten() -> i32 { 5 + 5\n} Similarly, you might specify that a function that computes the absolute value of an i32 with a type which says the result is non-negative and exceeds the input n. #[flux::sig(fn (n:i32) -> i32{v:0<=v && n<=v})]\npub fn abs(n: i32) -> i32 { if 0 <= n { n } else { 0 - n }\n} As a last example, you might write a function to compute the factorial of n #[flux::sig(fn (n:i32) -> i32{v:1<=v && n<=v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; let mut res = 1; while i < n { i += 1; res = res * i; } res\n} Here the specification says the input must be non-negative, and the output is at least as large as the input. Note, that unlike the previous examples, here we're actually changing the values of i and res. Can you guess why the copilot suggestions failed to pass flux, and what refinements were inferred for i and res in the fixed code at the end?","breadcrumbs":"Introducing Flux » Existential Types","id":"44","title":"Existential Types"},"45":{"body":"In this post, we saw how Flux lets you decorate basic Rust types like i32 and bool with indices and constraints that let you respectively refine the sets of values that inhabit that type, and specify contracts on functions that state pre-conditions on the sets of legal inputs that they accept, and post-conditions that describe the outputs that they produce. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates, without sacrificing thread- or memory-safety. Next time, we'll see how Flux melds refinements and Rust's ownership to make refinements happily coexist with imperative code. These are not arbitrary Rust expressions but a subset of expressions from logics that can be efficiently decided by SMT Solvers","breadcrumbs":"Introducing Flux » Summary","id":"45","title":"Summary"},"46":{"body":"Online demo Previously we saw how to refine basic Rust types like i32 and bool with indices and constraints to constrain the set of values described by those types. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates , via the clever type system that keeps an eye on the ownership of resources to make sure that aliasing and mutation cannot happen at the same time. Next, lets see how Flux melds refinements and Rust's ownership mechanisms to make refinements work in the imperative setting.","breadcrumbs":"Ownership in Flux » Ownership in Flux","id":"46","title":"Ownership in Flux"},"47":{"body":"Rust's most basic form of ownership is exclusive ownership, in which exactly one variable in a function has the right to mutate a memory location. When a location is exclusively owned, we can be sure that there are no other references to it, which lets flux update the type whenever the location is changed. For example, consider the program #[flux::sig(fn () -> i32[3])]\npub fn mk_three() -> i32 { let mut r = 0; // r: i32[0] r += 1; assert(r == 1); // r: i32[1] r += 1; assert(r == 2); // r: i32[2] r += 1; assert(r == 3); // r: i32[3] r\n} The variable r has different types at each point inside mk_three. It starts off as i32[0]. The first increment changes it to i32[1], then i32[2] and finally, the returned type i32[3]. This exclusive ownership mechanism is at work in the factorial example we signed off with previously #[flux::sig(fn (n:i32{0 <= n}) -> i32{v:n <= v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; // i: i32[0] let mut r = 1; // r: i32[1] while i < n { // i: i32{v:0<=v<=n} // r: i32{v:1<=v && i<=v} i += 1; r = r * i; } r\n} In the above code, i and r start off at 0 and 1 but then Rust infers (a story for another day) that inside the while-loop [1] i has type i32{v:0<=v && v < n} r has type i32{v:1<=v && i <= v} and hence, upon exit since i == n we get that the result is at least n.","breadcrumbs":"Ownership in Flux » Exclusive Ownership","id":"47","title":"Exclusive Ownership"},"48":{"body":"Exclusive ownership suffices for simple local updates like in factorial. However, for more complex data, functions must temporarily relinquish ownership to allow other functions to mutate the data. Rust cleverly allows this via the notion of borrowing using two kinds of references that give callees temporary access to a memory location. The simplest kind of references are of the form &T which denote read-only access to a value of type T. For example, we might write abs to take a shared reference to an i32 #[flux::sig(fn (p: &i32[@n]) -> i32{v:0<=v && n<=v})]\npub fn abs(p: &i32) -> i32 { let n = *p; if 0 <= n { n } else { 0 - n }\n} Notice that the input type has changed: the function now Accepts p a reference to an i32 whose value is n as denoted by @n Returns an i32 that is non-negative and larger than n The @ marks the n as a refinement parameter whose value is automatically computed by flux during type checking. So, for example, Flux can check the below code by automatically determining that the refinement parameter at the call-site is 10. pub fn test_abs() { let z = 10; assert(0 <= abs(&z)) assert(10 <= abs(&z))\n}","breadcrumbs":"Ownership in Flux » Borrowing: Shared References","id":"48","title":"Borrowing: Shared References"},"49":{"body":"As an aside, we have secretly been using refinement parameters like @n all along. For example, Flux automatically desugars the signature fn(n:i32{0 <= n} -> ... that we wrote for factorial into fn ({i32[@n] : 0 <= n}) -> i32{v:n <= v} where @n is a refinement parameter that is implicitly determined from the rust parameter n:i32. However, explicit parameters are essential to name the value of what a reference points to. In abs the rust parameter p names the reference but the @n names the (input) value and lets us use it to provide more information about the output of abs. Flux is modular in that the only information it knows about the implementation of abs is the signature: for example if we remove the fact that the output exceeds n then Flux will reject the assertion 10 <= abs(&z).","breadcrumbs":"Ownership in Flux » Refinement Parameters","id":"49","title":"Refinement Parameters"},"5":{"body":"You can use rustc-flux as you would use rustc. For example, the following command checks the file test.rs. rustc-flux path/to/test.rs The flux binary accepts the same flags as rustc. You could for example check a file as a library instead of a binary like so rustc-flux --crate-type=lib path/to/test.rs","breadcrumbs":"Run » Running on a File: rustc-flux","id":"5","title":"Running on a File: rustc-flux"},"50":{"body":"References of type &mut T denote mutable references that can be used to (read and) write or update the contents of a T value. Crucially, Rust ensures that while there may be multiple read-only (shared) references to a location, there is at most one active writeable (mutable) reference at any point in time. Flux exploits the semantics of &mut T to treat T as an invariant of the underlying data. As an example, consider the following function that decrements the value of a mutable reference while ensuring the data is non-negative: #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { *p = *p - 1;\n} Flux will complain with the following message error[FLUX]: assignment might be unsafe --> src/basics.rs:13:9 |\n13 | *p = *p - 1; | ^^^^^^^^^^^ as in fact, we may be writing a negative value into *p if, for example, the old value was zero. We can fix this code by guarding the update with a test that ensures the original contents are in fact non-zero #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { let n = *p; if n != 0 { *p = n - 1; }\n} at which point Flux is happy to sign off on the code.","breadcrumbs":"Ownership in Flux » Borrowing: Mutable References","id":"50","title":"Borrowing: Mutable References"},"51":{"body":"Flux uses Rust's borrowing rules to track invariants even when there may be aliasing. As an example, consider the function #[flux::sig(fn (bool) -> i32{v:0 <= v})]\nfn test_alias(z: bool) -> i32 { let mut x = 1; // x: i32[1] let mut y = 2; // y: i32[2] let r = if z { &mut x } else { &mut y }; // r: &mut i32{v:0 <= v} decr(r); *r\n} The reference r could point to either x or y depending on the (unknown) value of the boolean z. Nevertheless, Flux determines that both references &mut x and &mut y point to values of the more general type i32{v:0<=v} and hence, infers r : &mut i32{v:0<=v} which allows us it to then call decr with the reference and guarantee the result (after decr) is still non-negative.","breadcrumbs":"Ownership in Flux » Aliased References","id":"51","title":"Aliased References"},"52":{"body":"In many situations, we want to lend a value to another function that actually changes the value's (refinement) type upon exit. For example, consider the following function to increment a reference to a non-negative i32 #[flux::sig(fn (p: &mut i32{v:0 <= v}))]\nfn incr(p: &mut i32) { *p += 1\n} Recall that Flux is modular in that the only information it has about incr is what is said in the signature. The signature for incr only says p remains non-negative: Flux does not know that incr actually increments the value of p. Hence, Flux fusses that the following assert may fail even though its patently obvious that it will succeed! To verify test_incr we need a signature for incr that says that its output is indeed one greater [2] than its input. Flux extends Rust with the notion of strong references of the form &strg T which refine Rust's &mut T to grant exclusive access to the underlying T. Crucially, strong references also let us specify how the type is updated when the function exits [3] . Thus, we can use strong references to type incr as #[flux::sig(fn(p: &strg i32[@n]) ensures p:i32[n+1])]\nfn incr(p: &mut i32) { *p += 1\n} The Flux signature refines the plain Rust one to specify that p is a strong reference to an i32, the input type of *p is i32[n], and the output type of *p is i32[n+1]. With this specification, Flux merrily checks test_incr, by determining that the refinement parameter @n is 10 and hence, that upon return x: i32[11].","breadcrumbs":"Ownership in Flux » Borrowing: Strong References","id":"52","title":"Borrowing: Strong References"},"53":{"body":"To sum up, Flux exploits Rust's ownership mechanisms to track properties of shared (&T) and mutable (&mut T) references, and additionally adds a strong (&strg T) reference -- a special case of &mut -- to support the cases where the type itself is changed by a call. Next, we'll see how refinements and ownership yield a simple refined API for vectors that lets Flux check bounds safety at compile time... For those familiar with the term, these types are loop invariants [2] : Setting aside the issue of overflows for now [3] : Thereby allowing so-called strong updates in the type specifications","breadcrumbs":"Ownership in Flux » Summary","id":"53","title":"Summary"},"54":{"body":"Online demo While rustc has a keen eye for spotting nasty bugs at compile time, it is not omniscient. We've all groaned in dismay at seeing deployed code crash with messages like panicked at 'index out of bounds: the len is ... but the index is ...' Next, lets see how flux's refinement and ownership mechanisms let us write a refined vector API whose types track vector sizes and ensure --- at compile time --- that vector accesses cannot fail at runtime.","breadcrumbs":"Refined Vectors » Refined Vectors","id":"54","title":"Refined Vectors"},"55":{"body":"To begin with, we will defined a refined vector type which is simply a wrapper around the standard Vec type #[flux::refined_by(len: int)]\npub struct RVec { inner: Vec,\n} The #[flux::refined_by(len: int)] attribute tells flux that the type RVec struct is indexed by a len refinement which tracks the size of the underlying vector, just like the indices for i32 and bool tracked the actual value of the underlying integer or boolean ). The idea is that the type RVec[10] represents a vector of i32 size 10, and RVec{v:0 < v} represents a non-empty vector of bool, and RVec[n]>[m] represents a vector of vectors of f32 of size m and each of whose elements is a vector of size n.","breadcrumbs":"Refined Vectors » Refining Vectors to Track their Size","id":"55","title":"Refining Vectors to Track their Size"},"56":{"body":"Now that we can talk about the size of a vector, lets build up an API for creating and manipulating vectors. I suppose one must start with nothing: an empty vector. impl RVec { #[flux::trusted] #[flux::sig(fn() -> RVec[0])] pub fn new() -> Self { Self { inner: Vec::new() } }\n} The above implements RVec::new as a wrapper around Vec::new. The #[flux::trusted] attribute tells Flux there is nothing to \"check\" here, as we are defining the API itself and trusting that the implementation (using vec is correct). However, the signature says that callers of the RVec::new get back a vector indexed with 0 i.e. an empty vector.","breadcrumbs":"Refined Vectors » Creating Vectors","id":"56","title":"Creating Vectors"},"57":{"body":"An empty vector is a rather desolate thing. To be of any use, we need to be able to push values into the container, like so #[flux::trusted]\n#[flux::sig(fn(self: &strg RVec[@n], T) ensures self: RVec[n+1])]\npub fn push(&mut self, item: T) { self.inner.push(item);\n} The refined type for push says that it takes a strong reference (self) --- where strg means the refined type may be changed by the function --- to an RVec of size n and a value T and upon exit, the size of self is increased by 1.","breadcrumbs":"Refined Vectors » Pushing Values","id":"57","title":"Pushing Values"},"58":{"body":"Not much point stuffing things into a vector if we can't get them out again. For that, we might implement a pop method that returns the last element of the vector. Aha, but what if the vector is empty? You could return an Option or since we're tracking sizes, we could require that pop only be called with non-empty vectors. #[flux::trusted]\n#[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T ensures self: RVec[n-1])]\npub fn pop(&mut self) -> T { self.inner.pop().unwrap()\n}","breadcrumbs":"Refined Vectors » Popping Values","id":"58","title":"Popping Values"},"59":{"body":"Now already flux can start checking some code, for example if you push two elements, then you can pop twice, but flux will reject the third pop at compile-time In fact, the error message from flux will point to exact condition that does not hold error[FLUX]: precondition might not hold --> src/vectors.rs:24:5 |\n24 | v.pop(); | ^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:78:47 |\n78 | #[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T | ^^^^^","breadcrumbs":"Refined Vectors » Using the API","id":"59","title":"Using the API"},"6":{"body":"Flux is integrated with cargo and can be invoked in a package as follows: cargo flux By default, Flux won't verify a package unless it's explicitly enabled in the manifest. To do so add the following to Cargo.toml: [package.metadata.flux]\nenabled = true","breadcrumbs":"Run » Running on a package: cargo-flux","id":"6","title":"Running on a package: cargo-flux"},"60":{"body":"Perhaps we should peek at the size of the vector to make sure its not empty before we pop it. We can do that with a len method whose type says that the returned usize is, in fact, the size of the input vector #[flux::trusted]\n#[flux::sig(fn(&RVec[@n]) -> usize[n])]\npub fn len(&self) -> usize { self.inner.len()\n} Now, flux \"knows\" that after two pushes, the size of the vector is 2 and after the two pops, the size is 0 again","breadcrumbs":"Refined Vectors » Querying the Size","id":"60","title":"Querying the Size"},"61":{"body":"Of course, vectors are not just stacks , they also allow random access to their elements which is where those pesky panics occur, and where the refined vector API gets rather useful. Since we're tracking sizes, we can require that the method to get an element only be called with a valid index that is between 0 and the vector's size #[flux::sig(fn(&RVec[@n], i: usize{i < n}) -> &T)]\npub fn get(&self, i: usize) -> &T { &self.inner[i]\n} #[flux::sig(fn(&mut RVec[@n], i: usize{i < n}) -> &mut T)]\npub fn get_mut(&mut self, i: usize) -> &mut T { &mut self.inner[i]\n} With these refined get methods, flux can now spot the ``off-by-one'' error in the following code and accepts the fix [1] Its a bit gross to use get and get_mut directly, so instead we implement the Index and IndexMut traits for RVec which allows us to use the [] operator to access elements impl std::ops::Index for RVec { type Output = T; #[flux::sig(fn(&RVec[@n], i:usize{i < n}) -> &T)] fn index(&self, index: usize) -> &T { self.get(index) }\n} impl std::ops::IndexMut for RVec { #[flux::sig(fn(&mut RVec[@n], i:usize{i < n}) -> &mut T)] fn index_mut(&mut self, index: usize) -> &mut T { self.get_mut(index) }\n} And now the above vec_sum example looks a little nicer","breadcrumbs":"Refined Vectors » Random Access","id":"61","title":"Random Access"},"62":{"body":"Lets put the whole API to work in this \"memoized\" version of the fibonacci function which uses a vector to store the results of previous calls pub fn fib(n: usize) -> i32 { let mut r = RVec::new(); let mut i = 0; while i < n { if i == 0 { r.push(0); } else if i == 1 { r.push(1); } else { let a = r[i - 1]; let b = r[i - 2]; r.push(a + b); } i += 1; } r.pop()\n} Oops, flux is not happy with the call to pop at the end of the function which returns the last value as the result. error[FLUX]: precondition might not hold --> src/vectors.rs:40:5 |\n40 | r.pop() | ^^^^^^^ Flux complains that the vector may be empty and so the pop call may fail ... but why? Can you spot the problem? Indeed, we missed a \"corner\" case -- when n is 0 we skip the loop and so the vector is empty! Once we add a test for that, flux is happy.","breadcrumbs":"Refined Vectors » Memoization","id":"62","title":"Memoization"},"63":{"body":"As a last example, lets look at a simplified version of the binary_search method from std::vec , into which I've snuck a tiny little bug pub fn binary_search(vec: &RVec, x: i32) -> Result { let mut size = vec.len(); let mut left = 0; let mut right = size; while left <= right { let mid = left + size / 2; let val = vec[mid]; if val < x { left = mid + 1; } else if x < val { right = mid; } else { return Ok(mid); } size = right - left; } Err(left)\n} Flux complains in two places error[FLUX]: precondition might not hold --> src/vectors.rs:152:19 |\n152 | let val = vec[mid]; | ^^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:189:44 |\n189 | #[flux::sig(fn(&RVec[@n], usize{v : v < n}) -> &T)] | ^^^^^ error[FLUX]: arithmetic operation may overflow --> src/vectors.rs:160:9 |\n160 | size = right - left; | ^^^^^^^^^^^^^^^^^^^ The vector access may be unsafe as mid could be out of bounds! The size variable may underflow as left may exceed right! Can you the spot off-by-one and figure out a fix?","breadcrumbs":"Refined Vectors » Binary Search","id":"63","title":"Binary Search"},"64":{"body":"So, we saw how Flux's index and constraint mechanisms combine with Rust's ownership to let us write a refined vector API that ensures the safety of all accesses at compile time. Next time, we'll see how these mechanisms are compositional in that we can use standard type machinery to build up compound structures and APIs from simple ones. Why not use an iterator? We'll get there in due course!","breadcrumbs":"Refined Vectors » Summary","id":"64","title":"Summary"},"65":{"body":"Flux is a research project described in the paper","breadcrumbs":"About » About Flux","id":"65","title":"About Flux"},"66":{"body":"Flux is being developed by Nico Lehmann , Adam Geller Cole Kurashige Gilles Barthe Niki Vazou Ranjit Jhala","breadcrumbs":"About » Team","id":"66","title":"Team"},"67":{"body":"Flux is open-source and available here","breadcrumbs":"About » Code","id":"67","title":"Code"},"68":{"body":"This work was supported by the National Science Foundation, European Research Council, and by generous gifts from Microsoft Research.","breadcrumbs":"About » Thanks","id":"68","title":"Thanks"},"69":{"body":"This is a prototype! Use at your own risk. Everything could break and it will break.","breadcrumbs":"About » Limitations","id":"69","title":"Limitations"},"7":{"body":"The following example declares a function inc that returns an integer greater than the input. We use the nightly feature register_tool to register the flux tool in order to add refinement annotations to functions. #[flux::sig(fn(x: i32) -> i32{v: x < v})]\npub fn inc(x: i32) -> i32 { x - 1\n} You can save the above snippet in say test0.rs and then run rustc-flux --crate-type=lib path/to/test0.rs you should see in your output error[FLUX]: postcondition might not hold --> test0.rs:3:5 |\n3 | x - 1 | ^^^^^ as indeed x - 1 is not greater than x as required by the output refinement i32{v: x < v}. If you fix the error by replacing x - 1 with x + 1, you should get no errors in the output (the output may be empty, but in this case no output is a good thing). Read these chapters to learn more about what you specify and verify with flux.","breadcrumbs":"Run » A tiny example","id":"7","title":"A tiny example"},"8":{"body":"The flux-driver binary is a rustc driver (similar to how clippy works) meaning it uses rustc as a library to \"drive\" compilation performing additional analysis along the way. Running the binary requires dynamically linking a correct version of librustc. Thus, to avoid the hassle you should never execute it directly. Instead, use rustc-flux or cargo-flux.","breadcrumbs":"Run » A note about the flux-driver binary","id":"8","title":"A note about the flux-driver binary"},"9":{"body":"This section assumes you have installed flux, cargo-flux, and rustc-flux.","breadcrumbs":"Run » Editor Support","id":"9","title":"Editor Support"}},"length":70,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":1,"docs":{"41":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"47":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"46":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"41":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"45":{"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":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"43":{"tf":1.0},"48":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}},"df":4,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"42":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"66":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"32":{"tf":1.0}}},"t":{"df":2,"docs":{"39":{"tf":1.0},"61":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"48":{"tf":1.0}},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"6":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"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":{"45":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"32":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"32":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.449489742783178},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"32":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"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":4,"docs":{"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"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":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"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":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"47":{"tf":2.0},"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"44":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":3.1622776601683795},"32":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"46":{"tf":1.0},"54":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"32":{"tf":2.23606797749979},"35":{"tf":2.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"47":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"x":{"df":6,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"54":{"tf":1.0},"64":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":4.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":1,"docs":{"61":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"46":{"tf":1.0}}}},"i":{"df":2,"docs":{"50":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"39":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"42":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":2,"docs":{"47":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"2":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":1,"docs":{"52":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"33":{"tf":2.0},"34":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"63":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}},"p":{"df":3,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"55":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":2.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178},"51":{"tf":2.8284271247461903},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"49":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":3.0},"47":{"tf":2.23606797749979},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"51":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"h":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"32":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"52":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":2.6457513110645907},"52":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}},"s":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"62":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"41":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"44":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"47":{"tf":4.242640687119285},"51":{"tf":2.23606797749979},"62":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"33":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"50":{"tf":2.449489742783178},"51":{"tf":2.0},"52":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":30,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.4641016151377544},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"49":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"32":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"32":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":14,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"32":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":2.0},"56":{"tf":1.0}}}}}},"df":2,"docs":{"47":{"tf":1.0},"50":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"i":{"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"62":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"32":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"32":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"52":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":3.872983346207417},"55":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"53":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"37":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"56":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":4.898979485566356},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"50":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"32":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":12,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.8284271247461903},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"39":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}},"v":{"df":1,"docs":{"54":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"51":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":1,"docs":{"41":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"47":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"46":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"41":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"45":{"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":8,"docs":{"31":{"tf":1.7320508075688772},"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}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"43":{"tf":1.0},"48":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}},"df":4,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"42":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"66":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"32":{"tf":1.0}}},"t":{"df":2,"docs":{"39":{"tf":1.0},"61":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"48":{"tf":1.0}},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"6":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"32":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"32":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"32":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.6457513110645907},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"32":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":16,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"8":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"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":4,"docs":{"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":2.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"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":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"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":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"47":{"tf":2.23606797749979},"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"44":{"tf":1.4142135623730951}}}}}}}},"t":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":3.3166247903554},"32":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"46":{"tf":1.0},"54":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"32":{"tf":2.23606797749979},"35":{"tf":2.23606797749979},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.6457513110645907},"26":{"tf":2.6457513110645907},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"47":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"x":{"df":6,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"54":{"tf":1.0},"64":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"28":{"tf":2.8284271247461903},"29":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":4.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"5":{"tf":2.449489742783178},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.6457513110645907},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":1,"docs":{"61":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"46":{"tf":1.0}}}},"i":{"df":2,"docs":{"50":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"39":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"42":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":2,"docs":{"47":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"2":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":3.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":1,"docs":{"52":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"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":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"39":{"tf":2.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}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"33":{"tf":2.0},"34":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"63":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}},"p":{"df":3,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"55":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":2.23606797749979},"53":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178},"51":{"tf":2.8284271247461903},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"49":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":3.0},"47":{"tf":2.23606797749979},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"51":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"32":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"45":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":2.6457513110645907},"52":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":2.6457513110645907},"52":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}},"s":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"62":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"41":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"44":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"57":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":2.0},"60":{"tf":1.4142135623730951}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"47":{"tf":4.242640687119285},"51":{"tf":2.23606797749979},"62":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"33":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"50":{"tf":2.6457513110645907},"51":{"tf":2.23606797749979},"52":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":36,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"32":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"49":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"32":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"32":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":19,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":2.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"5":{"tf":2.6457513110645907},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"32":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"64":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":2.0},"56":{"tf":1.0}}}}}},"df":2,"docs":{"47":{"tf":1.0},"50":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"i":{"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.7320508075688772},"63":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"62":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"32":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"32":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"52":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":4.0},"55":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"53":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"37":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"56":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":3.0},"22":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":5.0},"26":{"tf":2.6457513110645907},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0990195135927845},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"50":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"32":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":13,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":3.1622776601683795},"56":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"39":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}},"v":{"df":1,"docs":{"54":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"51":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"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":{"18":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"14":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"16":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"39":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"37":{"tf":1.0},"5":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"19":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"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":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","guide/install.html#installing-flux","guide/install.html#requirements","guide/install.html#installing","guide/run.html#running-flux","guide/run.html#running-on-a-file-rustc-flux","guide/run.html#running-on-a-package-cargo-flux","guide/run.html#a-tiny-example","guide/run.html#a-note-about-the-flux-driver-binary","guide/run.html#editor-support","guide/run.html#rust-analyzer-in-vscode","guide/run.html#configuration","guide/run.html#environment-variables","guide/run.html#config-file","guide/run.html#crate-config","guide/run.html#query-caching","guide/specs.html#flux-specification-guide","guide/specs.html#refinement-types","guide/specs.html#argument-syntax","guide/specs.html#extern-specs","guide/specs.html#import-the-procedural-macros","guide/specs.html#extern-functions","guide/specs.html#extern-structs-and-impls","guide/specs.html#grammar-of-refinements","dev/develop.html#developers-guide","dev/develop.html#regression-tests","dev/develop.html#testing-flux-on-a-file","dev/develop.html#reporting-locations-where-errors-are-emitted","dev/develop.html#running-outside-the-project","dev/develop.html#profiling-flux","dev/develop.html#sample-output","dev/develop.html#macro-expansion","dev/architecture.html#high-level-architecture","dev/architecture.html#crates","dev/architecture.html#intermediate-representations","dev/architecture.html#surface","dev/architecture.html#fhir","dev/architecture.html#rty","dev/architecture.html#simplified-rustc","dev/architecture.html#lifting-and-refining","blog/01-introducing-flux.html#introducing-flux","blog/01-introducing-flux.html#indexed-types","blog/01-introducing-flux.html#post-conditions","blog/01-introducing-flux.html#pre-conditions","blog/01-introducing-flux.html#index-parameters-and-expressions","blog/01-introducing-flux.html#existential-types","blog/01-introducing-flux.html#summary","blog/02-ownership.html#ownership-in-flux","blog/02-ownership.html#exclusive-ownership","blog/02-ownership.html#borrowing-shared-references","blog/02-ownership.html#refinement-parameters","blog/02-ownership.html#borrowing-mutable-references","blog/02-ownership.html#aliased-references","blog/02-ownership.html#borrowing-strong-references","blog/02-ownership.html#summary","blog/03-vectors.html#refined-vectors","blog/03-vectors.html#refining-vectors-to-track-their-size","blog/03-vectors.html#creating-vectors","blog/03-vectors.html#pushing-values","blog/03-vectors.html#popping-values","blog/03-vectors.html#using-the-api","blog/03-vectors.html#querying-the-size","blog/03-vectors.html#random-access","blog/03-vectors.html#memoization","blog/03-vectors.html#binary-search","blog/03-vectors.html#summary","about.html#about-flux","about.html#team","about.html#code","about.html#thanks","about.html#limitations"],"index":{"documentStore":{"docInfo":{"0":{"body":25,"breadcrumbs":1,"title":1},"1":{"body":0,"breadcrumbs":3,"title":2},"10":{"body":26,"breadcrumbs":4,"title":3},"11":{"body":0,"breadcrumbs":2,"title":1},"12":{"body":117,"breadcrumbs":3,"title":2},"13":{"body":68,"breadcrumbs":3,"title":2},"14":{"body":36,"breadcrumbs":3,"title":2},"15":{"body":23,"breadcrumbs":3,"title":2},"16":{"body":5,"breadcrumbs":4,"title":3},"17":{"body":209,"breadcrumbs":3,"title":2},"18":{"body":77,"breadcrumbs":3,"title":2},"19":{"body":41,"breadcrumbs":3,"title":2},"2":{"body":10,"breadcrumbs":2,"title":1},"20":{"body":38,"breadcrumbs":4,"title":3},"21":{"body":131,"breadcrumbs":3,"title":2},"22":{"body":214,"breadcrumbs":4,"title":3},"23":{"body":61,"breadcrumbs":3,"title":2},"24":{"body":0,"breadcrumbs":3,"title":2},"25":{"body":145,"breadcrumbs":3,"title":2},"26":{"body":103,"breadcrumbs":4,"title":3},"27":{"body":33,"breadcrumbs":5,"title":4},"28":{"body":82,"breadcrumbs":4,"title":3},"29":{"body":17,"breadcrumbs":3,"title":2},"3":{"body":77,"breadcrumbs":2,"title":1},"30":{"body":150,"breadcrumbs":3,"title":2},"31":{"body":30,"breadcrumbs":3,"title":2},"32":{"body":18,"breadcrumbs":5,"title":3},"33":{"body":183,"breadcrumbs":3,"title":1},"34":{"body":34,"breadcrumbs":4,"title":2},"35":{"body":19,"breadcrumbs":3,"title":1},"36":{"body":27,"breadcrumbs":3,"title":1},"37":{"body":21,"breadcrumbs":3,"title":1},"38":{"body":23,"breadcrumbs":4,"title":2},"39":{"body":32,"breadcrumbs":4,"title":2},"4":{"body":6,"breadcrumbs":3,"title":2},"40":{"body":81,"breadcrumbs":4,"title":2},"41":{"body":26,"breadcrumbs":4,"title":2},"42":{"body":55,"breadcrumbs":4,"title":2},"43":{"body":61,"breadcrumbs":4,"title":2},"44":{"body":64,"breadcrumbs":5,"title":3},"45":{"body":154,"breadcrumbs":4,"title":2},"46":{"body":72,"breadcrumbs":3,"title":1},"47":{"body":56,"breadcrumbs":4,"title":2},"48":{"body":141,"breadcrumbs":4,"title":2},"49":{"body":123,"breadcrumbs":5,"title":3},"5":{"body":31,"breadcrumbs":5,"title":4},"50":{"body":72,"breadcrumbs":4,"title":2},"51":{"body":116,"breadcrumbs":5,"title":3},"52":{"body":82,"breadcrumbs":4,"title":2},"53":{"body":153,"breadcrumbs":5,"title":3},"54":{"body":67,"breadcrumbs":3,"title":1},"55":{"body":48,"breadcrumbs":4,"title":2},"56":{"body":70,"breadcrumbs":6,"title":4},"57":{"body":60,"breadcrumbs":4,"title":2},"58":{"body":48,"breadcrumbs":4,"title":2},"59":{"body":46,"breadcrumbs":4,"title":2},"6":{"body":24,"breadcrumbs":5,"title":4},"60":{"body":50,"breadcrumbs":4,"title":2},"61":{"body":40,"breadcrumbs":4,"title":2},"62":{"body":122,"breadcrumbs":4,"title":2},"63":{"body":80,"breadcrumbs":3,"title":1},"64":{"body":108,"breadcrumbs":4,"title":2},"65":{"body":39,"breadcrumbs":3,"title":1},"66":{"body":5,"breadcrumbs":1,"title":1},"67":{"body":15,"breadcrumbs":1,"title":1},"68":{"body":5,"breadcrumbs":1,"title":1},"69":{"body":12,"breadcrumbs":1,"title":1},"7":{"body":85,"breadcrumbs":3,"title":2},"70":{"body":6,"breadcrumbs":1,"title":1},"8":{"body":39,"breadcrumbs":5,"title":4},"9":{"body":8,"breadcrumbs":3,"title":2}},"docs":{"0":{"body":"Flux is a refinement type checker for Rust that lets you specify a range of correctness properties and have them be verified at compile time. See the examples -- listed in the summary on the left -- to learn about Refinement types and Rust. You can try it online here .","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Install » Installing Flux","id":"1","title":"Installing Flux"},"10":{"body":"Add this to the workspace settings i.e. .vscode/settings.json { \"rust-analyzer.check.overrideCommand\": [ \"cargo\", \"flux\", \"--workspace\", \"--message-format=json-diagnostic-rendered-ansi\" ]\n} Note: Make sure to edit the paths in the above snippet to point to the correct locations on your machine.","breadcrumbs":"Run » Rust-Analyzer in VSCode","id":"10","title":"Rust-Analyzer in VSCode"},"11":{"body":"","breadcrumbs":"Run » Configuration","id":"11","title":"Configuration"},"12":{"body":"You can set various env variables to customize the behavior of flux. FLUX_CONFIG tells flux where to find a config file for these settings. By default, flux searches its directory for a flux.toml or .flux.toml. FLUX_SYSROOT tells cargo-flux and rustc-flux where to find the flux-driver binary. Defaults to the default installation location in ~/.flux. FLUX_LOG_DIR=path/to/log/ sets the directory where constraints, timing and cache are saved. Defaults to ./log/. FLUX_DUMP_CONSTRAINT=1 tell flux to dump constraints generated for each function. FLUX_DUMP_CHECKER_TRACE=1 saves the checker's trace (useful for debugging!) FLUX_DUMP_TIMINGS=1 saves the profile information FLUX_DUMP_MIR=1 saves the low-level MIR for each analyzed function FLUX_POINTER_WIDTH=N the size of (either 32 or 64), used to determine if an integer cast is lossy (default 64). FLUX_CHECK_DEF=name only checks definitions containing name as a substring FLUX_CACHE=1\" switches on query caching and saves the cache in FLUX_CACHE_FILE FLUX_CACHE_FILE=file.json customizes the cache file, default FLUX_LOG_DIR/cache.json FLUX_CHECK_OVERFLOW=1 checks for over and underflow on arithmetic integer operations, default 0. When set to 0, it still checks for underflow on unsigned integer subtraction.","breadcrumbs":"Run » Environment Variables","id":"12","title":"Environment Variables"},"13":{"body":"The config file is a .toml file that contains on each line the lowercase name of a flux command line flag without the FLUX_ prefix. Set environment variables take priority over the config file. The config file should be in the project root. For example, suppose your project root contains the following flux.toml. log_dir = \"./test\"\ndump_timings = true\ndump_mir = true\ncache = true and you run in the project root FLUX_DUMP_MIR=0 cargo-flux check then flux will create the directory ./test/ and write ./test/timings, a file containing profiling information. It will not dump the MIR because that setting was overridden by setting the environment variable FLUX_DUMP_MIR=0.","breadcrumbs":"Run » Config file","id":"13","title":"Config file"},"14":{"body":"Some flags can be configured on a per-crate basis using the custom inner attribute #![flux::cfg]. This annotation relies on the unstable custom inner attributes feature. To be able to use with a non-nightly compiler you have to put it under a cfg_attr. For example, to enable overflow checking: #![cfg_attr(flux, flux::cfg(check_overflow = true))] The only flag supported now is overflow checking.","breadcrumbs":"Run » Crate Config","id":"14","title":"Crate Config"},"15":{"body":"FLUX_CACHE=1 persistently caches the safe fixpoint queries for each DefId in FLUX_LOG_DIR/FLUX_CACHE_FILE, and on subsequent runs, skips queries that are already in the cache, which considerably speeds up cargo-flux check on an entire crate.","breadcrumbs":"Run » Query Caching","id":"15","title":"Query Caching"},"16":{"body":"This is a WIP guide to writing specifications in flux.","breadcrumbs":"Specs » Flux Specification Guide","id":"16","title":"Flux Specification Guide"},"17":{"body":"Indexed Type : An indexed type B[r] is composed of a base Rust type B and a refinement index r. The meaning of the index depends on the type. Some examples are i32[n]: denotes the (singleton) set of i32 values equal to n. List[n]: values of type List of length n. Refinement parameter : Function signatures can be parametric on refinement variables. Refinement parameters are declared using the @n syntax. For example, the following signature: fn(i32[@n]) -> i32[n + 1] binds n over the entire scope of the function to specify that it takes an i32 equal to n and returns an i32 equal to n + 1. This is analogous to languages like Haskell where a lower case letter can be used to quantify over a type, e.g., the type a -> a in Haskell is polymorphic on the type a which is bound for the scope of the entire function type. Existential Type : An existential type B{v: r(v)} is composed of a base type B, a refinement variable v and a refinement predicate r on v. Intuitively, a Rust value x has type B{v: r(v)} if there exists a refinement value a such that r(a) holds and x has type B[x]. i32{v: v > 0}: set of positive i32 values. List{v: v > 0}: set of non-empty lists. Constraint Type : A constraint type has the form {T | r} where T is any type (not just a base type). Intuitively, a value has type {T | r} if it has type T and also r holds. They can be used to constraint a refinement parameter. For example, the following signature constraint the refinement parameter n to be less than n. fn({i32[@n] | n < 10}) -> i32[n + 1] Constraint types serve a similar role as existentials as they can also be used to constraint some refinement value with a predicate, but an existential type can only be used to constraint refinement variable that it bound locally, in contrast constraint types can be used to constraint a \"non-local\" parameter. This can be seen in the example above where the parameter n cannot be bound locally because it has to be used in the return type.","breadcrumbs":"Specs » Refinement Types","id":"17","title":"Refinement Types"},"18":{"body":"The @n syntax used to declare refinements parameters can be hard to read sometimes. Flux also supports a syntax that let you bind refinement parameters using colons similar to the syntax used to declare arguments in a function. We call this argument syntax . This syntax desugars to one of the refinements forms discussed above. For example, the following signature fn(x: i32, y: i32) -> i32[x + y] desugars to fn(i32[@x], i32[@y]) -> i32[x + y] It is also possible to attach some constraint to the parameters when using argument syntax. For example, to specify that y must be greater than x using argument syntax we can write: fn(x: i32, y: i32{x > y}) -> i32[x + y] This will desugar to: fn(i32[@x], {i32[@y] | x > y}) -> i32[x + y]","breadcrumbs":"Specs » Argument Syntax","id":"18","title":"Argument Syntax"},"19":{"body":"Sometimes you may want to refine a struct or function that outside your code. We refer to such a specification as an \"extern spec,\" which is short for \"external specification.\" Flux right now has rudimentary support for extern specs: they are supported for functions, impls, and structs. Impls are only supported for structs and if you have multiple impls for a struct (such as &[T] and [T]), those may conflict. Structs only support opaque refinements.","breadcrumbs":"Specs » Extern specs","id":"19","title":"Extern specs"},"2":{"body":"rustup liquid-fixpoint z3 Be sure that the liquid-fixpoint and z3 executables are in your $PATH.","breadcrumbs":"Install » Requirements","id":"2","title":"Requirements"},"20":{"body":"In order to use an extern spec you need to add a dependency on flux_rs . Right now this needs to be done as a local dependency since it is not published. Below is an example of how you can include it, although the version may be different. [dependencies]\nflux-rs = { path = \"path-to-flux/flux/flux-rs\", version = \"0.1.0\" } Then in your code you will need to include the extern_spec attribute macro. use flux_rs::extern_spec;","breadcrumbs":"Specs » Import the procedural macros","id":"20","title":"Import the procedural macros"},"21":{"body":"An example of refining an extern function can be found here . To define an extern spec on a function, you need to do three things, which happen to correspond to each of the below lines. #[extern_spec(std::mem)]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\nfn swap(a: &mut i32, b: &mut i32); Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::mem. You can use this path to qualify the function. So in the above example, the function we are targeting has the full path of std::mem::swap. Add a #[flux::sig(...)] attribute. This is required for any extern spec on a function. This signature behaves as if the #[flux::trusted] attribute was added, because we can't actually check the implementation. We just verify some simple things, like that the function arguments have compatible types. Write a function stub that matches the external function. If you do the above, you can use std::mem::swap as if it were refined by the above type. You shouldn't need to know the details, but here's how the macro works. It parses the std::mem into a module path and then transforms the function into #[flux::extern_spec]\n#[flux::sig(fn(&mut i32[@a], &mut i32{v : a < v }) -> ())]\n#[allow(unused, dead_code)]\nfn __flux_extern_spec_swap(a: &mut i32, b: &mut i32) { std::mem::swap(a, b)\n} It does this to get information about the function std::mem::swap and its arguments (this turns out to be difficult to do without giving the compiler something to inspect and type check).","breadcrumbs":"Specs » Extern functions","id":"21","title":"Extern functions"},"22":{"body":"An example of refining an extern struct and impl can be found here . A simpler example just involving structs can be found here . The syntax for an extern spec on a struct is very similar to that for a function. Once again, each line in the example happens to correspond to a step. #[extern_spec(std::string)]\n#[flux::refined_by(len: int)]\nstruct String; Add the #[extern_spec] attribute. This attribute optionally takes a path; in the above example, this is std::string. You can use this path to qualify the function. So in the above example, the struct we are targeting has the full path of std::string::String. Add a #[flux::refined_by(...)] attribute. This is required for any extern spec on a struct. Right now these attributes behave as if they were opaque (#[flux::opaque]), although we may support non-opaque extern structs. Write a stub for the extern struct. If you do the above, you can use std::string::String as if it were refined by an integer index. The syntax for an extern impl is a little different than that for functions or structs. #[extern_spec(std::string)]\nimpl String { #[flux::sig(fn() -> String[0])] fn new() -> String; #[flux::sig(fn(&String[@n]) -> usize[n])] fn len(s: &String) -> usize;\n} You still need to add the #[extern_spec] attribute, with the same optional argument of the path as above. You need to write out the impl block for the struct you want to refine. This struct does not need an extern spec, since by refining the impl you're only refining its methods. Write an extern spec for each function you wish to refine (this may be a subset). This is written just like a function extern spec with the caveat that the self parameter is not presently supported. So for example, instead of writing fn len(&self) -> usize;, you need to write fn len(s: &String) -> usize;. If you do the above, you can use the above methods ofstd::string::String as if they were refined. You shouldn't need to know the details, but here's how the above two macros expand. For structs: #[flux::extern_spec]\n#[allow(unused, dead_code)]\n#[flux::refined_by(len: int)]\nstruct __FluxExternSpecString(std::string::String); For impls (this was translated manually so there might be some bugs): #[allow(unused, dead_code)]\nstruct __FluxExternImplStructString; #[allow(unused, dead_code)]\nimpl __FluxExternImplStructString { #[flux::extern_spec] #[flux::sig(fn() -> String[0])] #[allow(unused, dead_code)] fn __flux_extern_spec_new() -> String { std::string::String::new::<>() } #[flux::extern_spec] #[flux::sig(fn(&String[@n]) -> usize[n])] #[allow(unused, dead_code)] fn __flux_extern_spec_len(s: &String) -> usize { std::string::String::len::<>(s) }\n}","breadcrumbs":"Specs » Extern structs and impls","id":"22","title":"Extern structs and impls"},"23":{"body":"r ::= n // numbers 1,2,3... | x // identifiers x,y,z... | x.f // index-field access | r + r // addition | r - r // subtraction | n * e // multiplication by constant | if r { r } else { r } // if-then-else | f(r...) // function application | true | false // booleans | r == r // equality | r != r // not equal | r < r // less than | r <= r // less than or equal | r > r // greater than | r >= r // greater than or equal | r || r // disjunction | r && r // conjunction | r => r // implication | !r // negation","breadcrumbs":"Specs » Grammar of Refinements","id":"23","title":"Grammar of Refinements"},"24":{"body":"","breadcrumbs":"Develop » Developer's Guide","id":"24","title":"Developer's Guide"},"25":{"body":"You can run the various regression tests in the tests/pos and tests/neg directories using cargo xtask test This will build the flux binary and then run it against the entire test suite. You can optionally pass a filter to only run tests containing some substring. For example: $ cargo xtask test impl_trait Compiling xtask v0.1.0 (/path/to/flux/xtask) Finished dev [unoptimized + debuginfo] target(s) in 0.29s Running `target/debug/xtask test impl_trait`\n$ cargo build Finished dev [unoptimized + debuginfo] target(s) in 0.05s\n$ cargo test -p flux-tests -- --test-args impl_trait Compiling flux-tests v0.1.0 (/path/to/flux/flux-tests) Finished test [unoptimized + debuginfo] target(s) in 0.62s Running tests/compiletest.rs (target/debug/deps/compiletest-1241128f1f51caa4) running 5 tests\ntest [ui] pos/surface/impl_trait04.rs ... ok\ntest [ui] pos/surface/impl_trait03.rs ... ok\ntest [ui] pos/surface/impl_trait01.rs ... ok\ntest [ui] pos/surface/impl_trait00.rs ... ok\ntest [ui] pos/surface/impl_trait02.rs ... ok test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 191 filtered out; finished in 0.10s running 2 tests\ntest [compile-fail] neg/surface/impl_trait00.rs ... ok\ntest [compile-fail] neg/surface/impl_trait02.rs ... ok test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 207 filtered out; finished in 0.09s","breadcrumbs":"Develop » Regression Tests","id":"25","title":"Regression Tests"},"26":{"body":"When working on Flux, you may want to test your changes by running it against a test file. You can use cargo xtask run to run Flux on a single input file. The command will set appropriate flags to be able to use custom Flux attributes and macros, plus some extra flags useful for debugging. For example: $ cat test.rs\n#[flux::sig(fn(x: i32) -> i32[x + 1])]\nfn add1(x: i32) -> i32 { x + 1\n}\n$ cargo xtask run test.rs The command will use a super set of the flags passed when running regression tests. Thus, a common workflow is to identify a failing test and run it directly with cargo xtask run, or alternatively copy it to a different file. You may also find useful to create a directory in the root of the project and add it to .git/info/exclude . You can keep files there, outside of version control, and test Flux against them. I have a directory called attic/ where I keep a file named playground.rs. To run Flux on it, I do cargo xtask run attic/playground.rs.","breadcrumbs":"Develop » Testing Flux on a File","id":"26","title":"Testing Flux on a File"},"27":{"body":"When you use cargo xtask run you'll see that we report the location an error was emitted, e.g., error[FLUX]: refinement type error --> attic/playground.rs:4:5 |\n4 | 0 | ^ a postcondition cannot be proved\n-Ztrack-diagnostics: created at crates/flux-refineck/src/lib.rs:114:15 <------- this You can also pass -Ztrack-diagnostics=y to enable it if you are not using cargo xtask run","breadcrumbs":"Develop » Reporting locations where errors are emitted","id":"27","title":"Reporting locations where errors are emitted"},"28":{"body":"To run Flux in a package outside the flux repo you need to install the binaries globally. You can do that using cargo xtask install. If you are continuously testing new changes it could be annoying to do it each time. To deal with this, you can set the FLUX_SYSROOT environment variable to change the location where cargo-flux and rustc-flux load the flux-driver. You can set it globally to point to the target/debug directory inside your local copy of the repo. This way you won't have to run cargo xtask install after every change, and you can be sure you'll be using the latest local debug build. Just be aware that the rustc-flux and cargo-flux binaries are built for a specific toolchain, and you will get a dynamic linking error if the flux-driver was compiled with a different one. This is to say, you should at least run cargo xtask install every time after the toolchain is updated.","breadcrumbs":"Develop » Running outside the project","id":"28","title":"Running outside the project"},"29":{"body":"Set FLUX_DUMP_TIMINGS=true to have flux write timing diagnostics to ./log/timings. Right now this is extremely simple, it just provides some details for the spans under flux_typeck and flux_driver.","breadcrumbs":"Develop » Profiling Flux","id":"29","title":"Profiling Flux"},"3":{"body":"The only way to use flux is to build it from source. First you need to clone the repository git clone https://github.com/flux-rs/flux\ncd flux To build the source you need a nightly version of rustc. We pin the version using a toolchain file (more info here ). If you are using rustup, no special action is needed as it should install the correct rustc version and components based on the information on that file. Next, run the following to build and install flux binaries cargo xtask install This will install two binaries rustc-flux and cargo-flux in your cargo home. These two binaries should be used respectively to run flux on either a single file or on a project using cargo. The installation process will also copy some files to $HOME/.flux.","breadcrumbs":"Install » Installing","id":"3","title":"Installing"},"30":{"body":"Below is a sample output for an invocation of cargo-flux check that took 19 seconds. The missing 2 seconds approximately accounts for the time it takes for cargo check to run. Note that check_crate contains everything running under check_top, which is why the sum of the spans is greater than 19 seconds. check_top Checker::infer num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 2.62ms max: 24.12ms total time: 229.64ms Checker::check num events: 205 min non-zero: 0.52ms 1st quartile: 0.52ms 2nd quartile: 1.05ms 3rd quartile: 5.24ms max: 159.91ms total time: 2028.47ms FixpointCtx::check num events: 205 min non-zero: 22.02ms 1st quartile: 26.21ms 2nd quartile: 28.31ms 3rd quartile: 40.37ms max: 1867.51ms total time: 9106.36ms\ntotal time: 11364.47ms check_crate Callbacks::check_wf num events: 1 min non-zero: 18.35ms 1st quartile: 18.87ms 2nd quartile: 18.87ms 3rd quartile: 18.87ms max: 18.87ms total time: 18.87ms Callbacks::check_crate num events: 1 min non-zero: 16986.93ms 1st quartile: 16995.32ms 2nd quartile: 16995.32ms 3rd quartile: 16995.32ms max: 16995.32ms total time: 16995.32ms\ntotal time: 17014.19ms","breadcrumbs":"Develop » Sample output","id":"30","title":"Sample output"},"31":{"body":"For example if you have code like in path/to/file.rs #[extern_spec]\n#[flux::refined_by(elems: Set)]\nstruct HashSet; and you want to see what the extern_spec macro expands it out to, then run cargo x run -- -Zunpretty=expanded path/to/file.rs Or you can run the xtask command directly cargo x expand path/to/file.rs","breadcrumbs":"Develop » Macro expansion","id":"31","title":"Macro expansion"},"32":{"body":"Flux is implemented as a compiler driver . We hook into the compiler by implementing the Callbacks trait. The implementation is located is in the flux-driver crate, and it is the main entry point to Flux.","breadcrumbs":"Develop » Architecture » High-level Architecture","id":"32","title":"High-level Architecture"},"33":{"body":"crates/flux-bin: Contains the cargo-flux and rustc-flux binaries used to launch the flux-driver. crates/flux-common: Common utility definitions used across all crates. crates/flux-config: Crate containing logic associated with global configuration flags that change the behavior of Flux, e.g, to enable or disable overflow checking. crates/flux-desugar: Implementation of name resolution and desugaring from Flux surface syntax into Flux high-level intermediate representation (fhir). This includes name resolution. crates/flux-driver: Main entry point to Flux. It contains the flux-driver binary and the implementation of the Callbacks trait. crates/flux-errors: Utility definitions for user facing error reporting. crates/flux-fhir-analysis: Implements the \"analyses\" performed in the fhir, most notably well-formedness checking and conversion from fhir into rty. crates/flux-fixpoint: Code to interact with the Liquid Fixpoint binary. crates/flux-macros: Procedural macros used internally to implement Flux. crates/flux-metadata: Logic for saving Flux crate metadata that can be used to import refined signatures from external crates. crates/flux-middle: This crate contains common type definitions that are used by the rest of Flux like the rty and fhir intermediate representations. Akin to rustc_middle . crates/flux-refineck: Implementation of refinement type checking. crates/flux-syntax: Definition of the surface syntax AST and parser. crates/flux-tests: Flux regression tests. lib/flux-attrs: Implementation of user facing procedural macros for annotating programs with Flux specs. lib/flux-rs: This is just a re-export of the macros implemented in flux-attrs. The intention is to eventually put Flux \"standard library\" here, i.e., a set of definitions that are useful when working with Flux.","breadcrumbs":"Develop » Architecture » Crates","id":"33","title":"Crates"},"34":{"body":"Flux has several intermediate representations (IR) for types. They represent a refined version of an equivalent type in some rustc IR. We have picked a distinct verb to refer to the process of going between these different representations to make it easier to refer to them. The following image summarizes all the IRs and the process for going between them. IRs diagram","breadcrumbs":"Develop » Architecture » Intermediate Representations","id":"34","title":"Intermediate Representations"},"35":{"body":"The surface IR represents source level Flux annotations. It corresponds to the rustc_ast data structures in rustc. The definition as well as the parser is located in the flux-syntax crate.","breadcrumbs":"Develop » Architecture » Surface","id":"35","title":"Surface"},"36":{"body":"The Flux High-Level Intermediate Representation (fhir) is a refined version of rustc's hir . The definition is located in the flux_middle crate inside the fhir module. The process of going from surface to fhir is called desugaring , and it is implemented in the flux-desugar crate.","breadcrumbs":"Develop » Architecture » Fhir","id":"36","title":"Fhir"},"37":{"body":"The definition in the flux_middle::rty module correspond to a refined version of the main rustc representation for types defined in rustc_middle::ty . The process of going from fhir to rty is called conversion , and it is implemented in the flux_fhir_analysis::conv module.","breadcrumbs":"Develop » Architecture » Rty","id":"37","title":"Rty"},"38":{"body":"The definition in the flux_middle::rustc module correspond to simplified version of data structures in rustc. They can be understood as the currently supported subset of Rust. The process of going from a definition in rustc_middle into flux_middle::rustc is called lowering and it is implemented in flux_middle::rustc::lowering.","breadcrumbs":"Develop » Architecture » Simplified Rustc","id":"38","title":"Simplified Rustc"},"39":{"body":"Besides the different translation between Flux intermediate representations, there are two ways to get a refined version from a rust type. The process of going from a type in hir into a type in fhir is called lifting , and it is implemented in flux_middle::fhir::lift. The process for going from a type in flux_middle::rustc::ty into a flux_middle::rty is called refining , and it is implemented flux_middle::rty::refining.","breadcrumbs":"Develop » Architecture » Lifting and Refining","id":"39","title":"Lifting and Refining"},"4":{"body":"You can run flux on a single file or entire crate.","breadcrumbs":"Run » Running Flux","id":"4","title":"Running Flux"},"40":{"body":"Online demo Types bring order to code. For example, if a variable i:usize then we know i is a number that can be used to index a vector. Similarly, if v:vec<&str> then we can be sure that v is a collection of strings which may be indexed but of course, not used as an index. However, by itself usize doesn't tell us how big or small the number and hence the programmer must still rely on their own wits, a lot of tests, and a dash of optimism, to ensure that all the different bits fit properly at run-time. Refinements are a promising new way to extend type checkers with logical constraints that specify additional correctness requirements that can be verified by the compiler, thereby entirely eliminating various classes of run-time problems. We're excited to introduce Flux , a refinement type checker plugin that brings this technology to Rust.","breadcrumbs":"Introducing Flux » Introducing Flux","id":"40","title":"Introducing Flux"},"41":{"body":"The most basic form of refinement type in flux is a type that is indexed by a logical value. For example Type Meaning i32[10] The (singleton) set of i32 values equal to 10 bool[true] The (singleton) set of bool values equal to true","breadcrumbs":"Introducing Flux » Indexed Types","id":"41","title":"Indexed Types"},"42":{"body":"We can already start using these indexed types to start writing (and checking) code. For example we can write the following specification which says that the value returned by mk_ten must in fact be 10 #[flux::sig(fn() -> i32[10])]\npub fn mk_ten() -> i32 { 5 + 4\n} but when you compile it, flux will say error[FLUX]: postcondition might not hold --> src/basics.rs:7:5 |\n7 | 5 + 4 | ^^^^^ The error says that that the postcondition might not hold which means that the output produced by mk_ten may not in fact be an i32[10] as indeed, in this case, the result is 9! You can eliminate the error by replacing the body with 5 + 5 or just 10.","breadcrumbs":"Introducing Flux » Post-Conditions","id":"42","title":"Post-Conditions"},"43":{"body":"Here's a second example that shows how you can use an index to restrict the space of inputs that a function expects. #[flux::sig(fn (b:bool[true]))]\npub fn assert(b:bool) { if !b { panic!(\"assertion failed\") }\n} Here, the refined specification for assert says that you can only call it with true as the input. So if you write fn test(){ assert(2 + 2 == 4); assert(2 + 2 == 5); // fails to type check\n} then flux will complain that error[FLUX]: precondition might not hold --> src/basics.rs:12:5 |\n12 | assert(2 + 2 == 5); // fails to type check | ^^^^^^^^^^^^^^^^^^ meaning that the call to assert fails to establish that the input is indeed true (as of course, in this case, it is not!)","breadcrumbs":"Introducing Flux » Pre-Conditions","id":"43","title":"Pre-Conditions"},"44":{"body":"It's not terribly exciting to only talk about fixed values like 10 or true. To be more useful, flux lets you index types by refinement parameters . For example, you can write #[flux::sig(fn(n:i32) -> bool[0 < n])]\npub fn is_pos(n: i32) -> bool { if 0 < n { true } else { false }\n} Here, the type says that is_pos takes as input some i32 indexed by n returns as output the bool indexed by 0 < n in other words, the output is true exactly when 0 < n. We might use this function to check that: pub fn test_pos(n: i32) { let m = if is_pos(n) { n - 1 } else { 0 }; assert(0 <= m);\n}","breadcrumbs":"Introducing Flux » Index Parameters and Expressions","id":"44","title":"Index Parameters and Expressions"},"45":{"body":"Often we don't care about the exact value of a thing -- but just care about some properties that it may have. For example, we don't care that an i32 is equal to 5 or 10 or n but that it is non-negative. Type Meaning i32{v: 0 < v} The set of i32 values that positive i32{v: n <= v} The set of i32 values greater than or equal to n Flux allows such specifications by pairing plain Rust types with assertions [1] that constrain the value. For example, we can rewrite mk_10 with the output type i32{v:0 i32{v: 0 < v})]\npub fn mk_ten() -> i32 { 5 + 5\n} Similarly, you might specify that a function that computes the absolute value of an i32 with a type which says the result is non-negative and exceeds the input n. #[flux::sig(fn (n:i32) -> i32{v:0<=v && n<=v})]\npub fn abs(n: i32) -> i32 { if 0 <= n { n } else { 0 - n }\n} As a last example, you might write a function to compute the factorial of n #[flux::sig(fn (n:i32) -> i32{v:1<=v && n<=v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; let mut res = 1; while i < n { i += 1; res = res * i; } res\n} Here the specification says the input must be non-negative, and the output is at least as large as the input. Note, that unlike the previous examples, here we're actually changing the values of i and res. Can you guess why the copilot suggestions failed to pass flux, and what refinements were inferred for i and res in the fixed code at the end?","breadcrumbs":"Introducing Flux » Existential Types","id":"45","title":"Existential Types"},"46":{"body":"In this post, we saw how Flux lets you decorate basic Rust types like i32 and bool with indices and constraints that let you respectively refine the sets of values that inhabit that type, and specify contracts on functions that state pre-conditions on the sets of legal inputs that they accept, and post-conditions that describe the outputs that they produce. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates, without sacrificing thread- or memory-safety. Next time, we'll see how Flux melds refinements and Rust's ownership to make refinements happily coexist with imperative code. These are not arbitrary Rust expressions but a subset of expressions from logics that can be efficiently decided by SMT Solvers","breadcrumbs":"Introducing Flux » Summary","id":"46","title":"Summary"},"47":{"body":"Online demo Previously we saw how to refine basic Rust types like i32 and bool with indices and constraints to constrain the set of values described by those types. The whole point of Rust, of course, is to allow for efficient imperative sharing and updates , via the clever type system that keeps an eye on the ownership of resources to make sure that aliasing and mutation cannot happen at the same time. Next, lets see how Flux melds refinements and Rust's ownership mechanisms to make refinements work in the imperative setting.","breadcrumbs":"Ownership in Flux » Ownership in Flux","id":"47","title":"Ownership in Flux"},"48":{"body":"Rust's most basic form of ownership is exclusive ownership, in which exactly one variable in a function has the right to mutate a memory location. When a location is exclusively owned, we can be sure that there are no other references to it, which lets flux update the type whenever the location is changed. For example, consider the program #[flux::sig(fn () -> i32[3])]\npub fn mk_three() -> i32 { let mut r = 0; // r: i32[0] r += 1; assert(r == 1); // r: i32[1] r += 1; assert(r == 2); // r: i32[2] r += 1; assert(r == 3); // r: i32[3] r\n} The variable r has different types at each point inside mk_three. It starts off as i32[0]. The first increment changes it to i32[1], then i32[2] and finally, the returned type i32[3]. This exclusive ownership mechanism is at work in the factorial example we signed off with previously #[flux::sig(fn (n:i32{0 <= n}) -> i32{v:n <= v})]\npub fn factorial(n: i32) -> i32 { let mut i = 0; // i: i32[0] let mut r = 1; // r: i32[1] while i < n { // i: i32{v:0<=v<=n} // r: i32{v:1<=v && i<=v} i += 1; r = r * i; } r\n} In the above code, i and r start off at 0 and 1 but then Rust infers (a story for another day) that inside the while-loop [1] i has type i32{v:0<=v && v < n} r has type i32{v:1<=v && i <= v} and hence, upon exit since i == n we get that the result is at least n.","breadcrumbs":"Ownership in Flux » Exclusive Ownership","id":"48","title":"Exclusive Ownership"},"49":{"body":"Exclusive ownership suffices for simple local updates like in factorial. However, for more complex data, functions must temporarily relinquish ownership to allow other functions to mutate the data. Rust cleverly allows this via the notion of borrowing using two kinds of references that give callees temporary access to a memory location. The simplest kind of references are of the form &T which denote read-only access to a value of type T. For example, we might write abs to take a shared reference to an i32 #[flux::sig(fn (p: &i32[@n]) -> i32{v:0<=v && n<=v})]\npub fn abs(p: &i32) -> i32 { let n = *p; if 0 <= n { n } else { 0 - n }\n} Notice that the input type has changed: the function now Accepts p a reference to an i32 whose value is n as denoted by @n Returns an i32 that is non-negative and larger than n The @ marks the n as a refinement parameter whose value is automatically computed by flux during type checking. So, for example, Flux can check the below code by automatically determining that the refinement parameter at the call-site is 10. pub fn test_abs() { let z = 10; assert(0 <= abs(&z)) assert(10 <= abs(&z))\n}","breadcrumbs":"Ownership in Flux » Borrowing: Shared References","id":"49","title":"Borrowing: Shared References"},"5":{"body":"You can use rustc-flux as you would use rustc. For example, the following command checks the file test.rs. rustc-flux path/to/test.rs The flux binary accepts the same flags as rustc. You could for example check a file as a library instead of a binary like so rustc-flux --crate-type=lib path/to/test.rs","breadcrumbs":"Run » Running on a File: rustc-flux","id":"5","title":"Running on a File: rustc-flux"},"50":{"body":"As an aside, we have secretly been using refinement parameters like @n all along. For example, Flux automatically desugars the signature fn(n:i32{0 <= n} -> ... that we wrote for factorial into fn ({i32[@n] : 0 <= n}) -> i32{v:n <= v} where @n is a refinement parameter that is implicitly determined from the rust parameter n:i32. However, explicit parameters are essential to name the value of what a reference points to. In abs the rust parameter p names the reference but the @n names the (input) value and lets us use it to provide more information about the output of abs. Flux is modular in that the only information it knows about the implementation of abs is the signature: for example if we remove the fact that the output exceeds n then Flux will reject the assertion 10 <= abs(&z).","breadcrumbs":"Ownership in Flux » Refinement Parameters","id":"50","title":"Refinement Parameters"},"51":{"body":"References of type &mut T denote mutable references that can be used to (read and) write or update the contents of a T value. Crucially, Rust ensures that while there may be multiple read-only (shared) references to a location, there is at most one active writeable (mutable) reference at any point in time. Flux exploits the semantics of &mut T to treat T as an invariant of the underlying data. As an example, consider the following function that decrements the value of a mutable reference while ensuring the data is non-negative: #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { *p = *p - 1;\n} Flux will complain with the following message error[FLUX]: assignment might be unsafe --> src/basics.rs:13:9 |\n13 | *p = *p - 1; | ^^^^^^^^^^^ as in fact, we may be writing a negative value into *p if, for example, the old value was zero. We can fix this code by guarding the update with a test that ensures the original contents are in fact non-zero #[flux::sig(fn(p: &mut i32{v:0 <= v}))]\npub fn decr(p: &mut i32) { let n = *p; if n != 0 { *p = n - 1; }\n} at which point Flux is happy to sign off on the code.","breadcrumbs":"Ownership in Flux » Borrowing: Mutable References","id":"51","title":"Borrowing: Mutable References"},"52":{"body":"Flux uses Rust's borrowing rules to track invariants even when there may be aliasing. As an example, consider the function #[flux::sig(fn (bool) -> i32{v:0 <= v})]\nfn test_alias(z: bool) -> i32 { let mut x = 1; // x: i32[1] let mut y = 2; // y: i32[2] let r = if z { &mut x } else { &mut y }; // r: &mut i32{v:0 <= v} decr(r); *r\n} The reference r could point to either x or y depending on the (unknown) value of the boolean z. Nevertheless, Flux determines that both references &mut x and &mut y point to values of the more general type i32{v:0<=v} and hence, infers r : &mut i32{v:0<=v} which allows us it to then call decr with the reference and guarantee the result (after decr) is still non-negative.","breadcrumbs":"Ownership in Flux » Aliased References","id":"52","title":"Aliased References"},"53":{"body":"In many situations, we want to lend a value to another function that actually changes the value's (refinement) type upon exit. For example, consider the following function to increment a reference to a non-negative i32 #[flux::sig(fn (p: &mut i32{v:0 <= v}))]\nfn incr(p: &mut i32) { *p += 1\n} Recall that Flux is modular in that the only information it has about incr is what is said in the signature. The signature for incr only says p remains non-negative: Flux does not know that incr actually increments the value of p. Hence, Flux fusses that the following assert may fail even though its patently obvious that it will succeed! To verify test_incr we need a signature for incr that says that its output is indeed one greater [2] than its input. Flux extends Rust with the notion of strong references of the form &strg T which refine Rust's &mut T to grant exclusive access to the underlying T. Crucially, strong references also let us specify how the type is updated when the function exits [3] . Thus, we can use strong references to type incr as #[flux::sig(fn(p: &strg i32[@n]) ensures p:i32[n+1])]\nfn incr(p: &mut i32) { *p += 1\n} The Flux signature refines the plain Rust one to specify that p is a strong reference to an i32, the input type of *p is i32[n], and the output type of *p is i32[n+1]. With this specification, Flux merrily checks test_incr, by determining that the refinement parameter @n is 10 and hence, that upon return x: i32[11].","breadcrumbs":"Ownership in Flux » Borrowing: Strong References","id":"53","title":"Borrowing: Strong References"},"54":{"body":"To sum up, Flux exploits Rust's ownership mechanisms to track properties of shared (&T) and mutable (&mut T) references, and additionally adds a strong (&strg T) reference -- a special case of &mut -- to support the cases where the type itself is changed by a call. Next, we'll see how refinements and ownership yield a simple refined API for vectors that lets Flux check bounds safety at compile time... For those familiar with the term, these types are loop invariants [2] : Setting aside the issue of overflows for now [3] : Thereby allowing so-called strong updates in the type specifications","breadcrumbs":"Ownership in Flux » Summary","id":"54","title":"Summary"},"55":{"body":"Online demo While rustc has a keen eye for spotting nasty bugs at compile time, it is not omniscient. We've all groaned in dismay at seeing deployed code crash with messages like panicked at 'index out of bounds: the len is ... but the index is ...' Next, lets see how flux's refinement and ownership mechanisms let us write a refined vector API whose types track vector sizes and ensure --- at compile time --- that vector accesses cannot fail at runtime.","breadcrumbs":"Refined Vectors » Refined Vectors","id":"55","title":"Refined Vectors"},"56":{"body":"To begin with, we will defined a refined vector type which is simply a wrapper around the standard Vec type #[flux::refined_by(len: int)]\npub struct RVec { inner: Vec,\n} The #[flux::refined_by(len: int)] attribute tells flux that the type RVec struct is indexed by a len refinement which tracks the size of the underlying vector, just like the indices for i32 and bool tracked the actual value of the underlying integer or boolean ). The idea is that the type RVec[10] represents a vector of i32 size 10, and RVec{v:0 < v} represents a non-empty vector of bool, and RVec[n]>[m] represents a vector of vectors of f32 of size m and each of whose elements is a vector of size n.","breadcrumbs":"Refined Vectors » Refining Vectors to Track their Size","id":"56","title":"Refining Vectors to Track their Size"},"57":{"body":"Now that we can talk about the size of a vector, lets build up an API for creating and manipulating vectors. I suppose one must start with nothing: an empty vector. impl RVec { #[flux::trusted] #[flux::sig(fn() -> RVec[0])] pub fn new() -> Self { Self { inner: Vec::new() } }\n} The above implements RVec::new as a wrapper around Vec::new. The #[flux::trusted] attribute tells Flux there is nothing to \"check\" here, as we are defining the API itself and trusting that the implementation (using vec is correct). However, the signature says that callers of the RVec::new get back a vector indexed with 0 i.e. an empty vector.","breadcrumbs":"Refined Vectors » Creating Vectors","id":"57","title":"Creating Vectors"},"58":{"body":"An empty vector is a rather desolate thing. To be of any use, we need to be able to push values into the container, like so #[flux::trusted]\n#[flux::sig(fn(self: &strg RVec[@n], T) ensures self: RVec[n+1])]\npub fn push(&mut self, item: T) { self.inner.push(item);\n} The refined type for push says that it takes a strong reference (self) --- where strg means the refined type may be changed by the function --- to an RVec of size n and a value T and upon exit, the size of self is increased by 1.","breadcrumbs":"Refined Vectors » Pushing Values","id":"58","title":"Pushing Values"},"59":{"body":"Not much point stuffing things into a vector if we can't get them out again. For that, we might implement a pop method that returns the last element of the vector. Aha, but what if the vector is empty? You could return an Option or since we're tracking sizes, we could require that pop only be called with non-empty vectors. #[flux::trusted]\n#[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T ensures self: RVec[n-1])]\npub fn pop(&mut self) -> T { self.inner.pop().unwrap()\n}","breadcrumbs":"Refined Vectors » Popping Values","id":"59","title":"Popping Values"},"6":{"body":"Flux is integrated with cargo and can be invoked in a package as follows: cargo flux By default, Flux won't verify a package unless it's explicitly enabled in the manifest. To do so add the following to Cargo.toml: [package.metadata.flux]\nenabled = true","breadcrumbs":"Run » Running on a package: cargo-flux","id":"6","title":"Running on a package: cargo-flux"},"60":{"body":"Now already flux can start checking some code, for example if you push two elements, then you can pop twice, but flux will reject the third pop at compile-time In fact, the error message from flux will point to exact condition that does not hold error[FLUX]: precondition might not hold --> src/vectors.rs:24:5 |\n24 | v.pop(); | ^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:78:47 |\n78 | #[flux::sig(fn(self: &strg {RVec[@n] | 0 < n}) -> T | ^^^^^","breadcrumbs":"Refined Vectors » Using the API","id":"60","title":"Using the API"},"61":{"body":"Perhaps we should peek at the size of the vector to make sure its not empty before we pop it. We can do that with a len method whose type says that the returned usize is, in fact, the size of the input vector #[flux::trusted]\n#[flux::sig(fn(&RVec[@n]) -> usize[n])]\npub fn len(&self) -> usize { self.inner.len()\n} Now, flux \"knows\" that after two pushes, the size of the vector is 2 and after the two pops, the size is 0 again","breadcrumbs":"Refined Vectors » Querying the Size","id":"61","title":"Querying the Size"},"62":{"body":"Of course, vectors are not just stacks , they also allow random access to their elements which is where those pesky panics occur, and where the refined vector API gets rather useful. Since we're tracking sizes, we can require that the method to get an element only be called with a valid index that is between 0 and the vector's size #[flux::sig(fn(&RVec[@n], i: usize{i < n}) -> &T)]\npub fn get(&self, i: usize) -> &T { &self.inner[i]\n} #[flux::sig(fn(&mut RVec[@n], i: usize{i < n}) -> &mut T)]\npub fn get_mut(&mut self, i: usize) -> &mut T { &mut self.inner[i]\n} With these refined get methods, flux can now spot the ``off-by-one'' error in the following code and accepts the fix [1] Its a bit gross to use get and get_mut directly, so instead we implement the Index and IndexMut traits for RVec which allows us to use the [] operator to access elements impl std::ops::Index for RVec { type Output = T; #[flux::sig(fn(&RVec[@n], i:usize{i < n}) -> &T)] fn index(&self, index: usize) -> &T { self.get(index) }\n} impl std::ops::IndexMut for RVec { #[flux::sig(fn(&mut RVec[@n], i:usize{i < n}) -> &mut T)] fn index_mut(&mut self, index: usize) -> &mut T { self.get_mut(index) }\n} And now the above vec_sum example looks a little nicer","breadcrumbs":"Refined Vectors » Random Access","id":"62","title":"Random Access"},"63":{"body":"Lets put the whole API to work in this \"memoized\" version of the fibonacci function which uses a vector to store the results of previous calls pub fn fib(n: usize) -> i32 { let mut r = RVec::new(); let mut i = 0; while i < n { if i == 0 { r.push(0); } else if i == 1 { r.push(1); } else { let a = r[i - 1]; let b = r[i - 2]; r.push(a + b); } i += 1; } r.pop()\n} Oops, flux is not happy with the call to pop at the end of the function which returns the last value as the result. error[FLUX]: precondition might not hold --> src/vectors.rs:40:5 |\n40 | r.pop() | ^^^^^^^ Flux complains that the vector may be empty and so the pop call may fail ... but why? Can you spot the problem? Indeed, we missed a \"corner\" case -- when n is 0 we skip the loop and so the vector is empty! Once we add a test for that, flux is happy.","breadcrumbs":"Refined Vectors » Memoization","id":"63","title":"Memoization"},"64":{"body":"As a last example, lets look at a simplified version of the binary_search method from std::vec , into which I've snuck a tiny little bug pub fn binary_search(vec: &RVec, x: i32) -> Result { let mut size = vec.len(); let mut left = 0; let mut right = size; while left <= right { let mid = left + size / 2; let val = vec[mid]; if val < x { left = mid + 1; } else if x < val { right = mid; } else { return Ok(mid); } size = right - left; } Err(left)\n} Flux complains in two places error[FLUX]: precondition might not hold --> src/vectors.rs:152:19 |\n152 | let val = vec[mid]; | ^^^^^^^^ call site | = note: a precondition cannot be proved at this call site\nnote: this is the condition that cannot be proved --> src/rvec.rs:189:44 |\n189 | #[flux::sig(fn(&RVec[@n], usize{v : v < n}) -> &T)] | ^^^^^ error[FLUX]: arithmetic operation may overflow --> src/vectors.rs:160:9 |\n160 | size = right - left; | ^^^^^^^^^^^^^^^^^^^ The vector access may be unsafe as mid could be out of bounds! The size variable may underflow as left may exceed right! Can you the spot off-by-one and figure out a fix?","breadcrumbs":"Refined Vectors » Binary Search","id":"64","title":"Binary Search"},"65":{"body":"So, we saw how Flux's index and constraint mechanisms combine with Rust's ownership to let us write a refined vector API that ensures the safety of all accesses at compile time. Next time, we'll see how these mechanisms are compositional in that we can use standard type machinery to build up compound structures and APIs from simple ones. Why not use an iterator? We'll get there in due course!","breadcrumbs":"Refined Vectors » Summary","id":"65","title":"Summary"},"66":{"body":"Flux is a research project described in the paper","breadcrumbs":"About » About Flux","id":"66","title":"About Flux"},"67":{"body":"Flux is being developed by Nico Lehmann , Adam Geller Cole Kurashige Gilles Barthe Niki Vazou Ranjit Jhala","breadcrumbs":"About » Team","id":"67","title":"Team"},"68":{"body":"Flux is open-source and available here","breadcrumbs":"About » Code","id":"68","title":"Code"},"69":{"body":"This work was supported by the National Science Foundation, European Research Council, and by generous gifts from Microsoft Research.","breadcrumbs":"About » Thanks","id":"69","title":"Thanks"},"7":{"body":"The following example declares a function inc that returns an integer greater than the input. We use the nightly feature register_tool to register the flux tool in order to add refinement annotations to functions. #[flux::sig(fn(x: i32) -> i32{v: x < v})]\npub fn inc(x: i32) -> i32 { x - 1\n} You can save the above snippet in say test0.rs and then run rustc-flux --crate-type=lib path/to/test0.rs you should see in your output error[FLUX]: postcondition might not hold --> test0.rs:3:5 |\n3 | x - 1 | ^^^^^ as indeed x - 1 is not greater than x as required by the output refinement i32{v: x < v}. If you fix the error by replacing x - 1 with x + 1, you should get no errors in the output (the output may be empty, but in this case no output is a good thing). Read these chapters to learn more about what you specify and verify with flux.","breadcrumbs":"Run » A tiny example","id":"7","title":"A tiny example"},"70":{"body":"This is a prototype! Use at your own risk. Everything could break and it will break.","breadcrumbs":"About » Limitations","id":"70","title":"Limitations"},"8":{"body":"The flux-driver binary is a rustc driver (similar to how clippy works) meaning it uses rustc as a library to \"drive\" compilation performing additional analysis along the way. Running the binary requires dynamically linking a correct version of librustc. Thus, to avoid the hassle you should never execute it directly. Instead, use rustc-flux or cargo-flux.","breadcrumbs":"Run » A note about the flux-driver binary","id":"8","title":"A note about the flux-driver binary"},"9":{"body":"This section assumes you have installed flux, cargo-flux, and rustc-flux.","breadcrumbs":"Run » Editor Support","id":"9","title":"Editor Support"}},"length":71,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"42":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"48":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"46":{"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":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"44":{"tf":1.0},"49":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":4,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"41":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":2,"docs":{"40":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":6,"docs":{"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"49":{"tf":1.0}},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"68":{"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":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"33":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.449489742783178},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"31":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"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":4,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"40":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"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":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"tf":1.0},"31":{"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":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"48":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"45":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":3.1622776601683795},"33":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"47":{"tf":1.0},"55":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"42":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":2.23606797749979},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"x":{"df":6,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"33":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"55":{"tf":1.0},"65":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":4.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"57":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":2,"docs":{"48":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"2":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"3":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":3.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.6457513110645907},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":1,"docs":{"53":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"34":{"tf":2.0},"35":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"44":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"44":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"64":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"33":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"p":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"64":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"45":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":2.8284271247461903},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"50":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":3.0},"48":{"tf":2.23606797749979},"49":{"tf":2.8284271247461903},"50":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"52":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"h":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"63":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"40":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"31":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":2.449489742783178},"53":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.6457513110645907},"53":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}},"s":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"63":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.7320508075688772},"61":{"tf":1.0}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"1":{"df":1,"docs":{"63":{"tf":1.0}}},"a":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"48":{"tf":4.242640687119285},"52":{"tf":2.23606797749979},"63":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"33":{"tf":1.0},"45":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"52":{"tf":2.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":30,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.4641016151377544},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"40":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"33":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"33":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":15,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"38":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"33":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"31":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"43":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.0},"57":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"63":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"33":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":3.872983346207417},"31":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"40":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":4.898979485566356},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"51":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"63":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"62":{"tf":1.0}}},"df":12,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.8284271247461903},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"v":{"df":1,"docs":{"55":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":9,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"52":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{"9":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.0}}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"27":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":9,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"3":{"6":{"4":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"1":{"1":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"f":{"5":{"1":{"c":{"a":{"a":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{".":{"9":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"9":{"8":{"6":{".":{"9":{"3":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{".":{"3":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"1":{"4":{".":{"1":{"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"8":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{".":{"5":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":15,"docs":{"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"2":{".":{"6":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"8":{".":{"4":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"2":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"6":{".":{"2":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"3":{"1":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"3":{"2":{"df":1,"docs":{"12":{"tf":1.0}}},"df":4,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"4":{"0":{".":{"3":{"7":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"5":{".":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"42":{"tf":1.0}}},"9":{"1":{"0":{"6":{".":{"3":{"6":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"48":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"(":{"&":{"df":0,"docs":{},"z":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"v":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"d":{"1":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}}}}}},"df":7,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}},"z":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}}},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"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":1,"docs":{"46":{"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":8,"docs":{"32":{"tf":1.7320508075688772},"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}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":2,"docs":{"44":{"tf":1.0},"49":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}},"b":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":4,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"/":{"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":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"s":{":":{"4":{":":{"5":{"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":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"26":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{":":{"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":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"3":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"41":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":4,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":2,"docs":{"40":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"[":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":6,"docs":{"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"23":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"49":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":2.0},"13":{"tf":1.0},"15":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"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":15,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"49":{"tf":1.0}},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0}}},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":2.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}},"s":{"df":1,"docs":{"17":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"33":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":3.7416573867739413}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"a":{"df":4,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":2.6457513110645907},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"v":{"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":17,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"31":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":5,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"8":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"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":4,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"40":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}}}},"v":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"23":{"tf":2.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":8,"docs":{"27":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"df":7,"docs":{"27":{"tf":2.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"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":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":1,"docs":{"30":{"tf":2.23606797749979}},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"tf":1.0},"31":{"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":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"48":{"tf":2.23606797749979},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":2.0},"45":{"tf":1.4142135623730951}}}}}}}},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"19":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":3.3166247903554},"33":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"47":{"tf":1.0},"55":{"tf":1.0}}}},"f":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"42":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"25":{"tf":2.0},"26":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":2.23606797749979},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"b":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":2.6457513110645907},"26":{"tf":2.6457513110645907},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"d":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"26":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"x":{"df":6,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"33":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"'":{"df":2,"docs":{"55":{"tf":1.0},"65":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"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":{"14":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"[":{"@":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"=":{"1":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"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":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"12":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"13":{"tf":1.0}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"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":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"12":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"28":{"tf":2.8284271247461903},"29":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":4.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":2.449489742783178},"50":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"@":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":21,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"26":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"22":{"tf":2.23606797749979},"23":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"3":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0}}}},"i":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0}}},"df":10,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"57":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"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":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"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":{}}}}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},".":{"df":3,"docs":{"10":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.0}}},"3":{"2":{"[":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"1":{"0":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":2,"docs":{"48":{"tf":1.7320508075688772},"52":{"tf":1.0}}},"2":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"3":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"@":{"a":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"n":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"x":{"df":2,"docs":{"18":{"tf":2.0},"26":{"tf":1.0}}}},"df":19,"docs":{"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"21":{"tf":2.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":3.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.7320508075688772}},"{":{"df":0,"docs":{},"v":{":":{"0":{"<":{"=":{"df":0,"docs":{},"v":{"<":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"1":{"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}}}}},"<":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"l":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"19":{"tf":1.7320508075688772},"22":{"tf":3.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.6457513110645907},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":1,"docs":{"53":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}},"x":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"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":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":1,"docs":{"3":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.0},"3":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"22":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"40":{"tf":2.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}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"34":{"tf":2.0},"35":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"44":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"44":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"64":{"tf":2.6457513110645907}}}},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"22":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"t":{"df":11,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"33":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}},"k":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"[":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"17":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"12":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"p":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}}},"w":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"30":{"tf":2.23606797749979}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"64":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":2.23606797749979}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"_":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}},"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":2.23606797749979},"54":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":2.449489742783178},"45":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":2.8284271247461903},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}}},"n":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"50":{"tf":1.0}},"{":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"<":{"=":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":17,"docs":{"17":{"tf":3.1622776601683795},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":3.0},"48":{"tf":2.23606797749979},"49":{"tf":2.8284271247461903},"50":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":5,"docs":{"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"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":{"52":{"tf":1.0}}}}}}}}}}}},"w":{"df":4,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"w":{"df":11,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":3.0}}},"l":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":2,"docs":{"22":{"tf":1.0},"63":{"tf":1.0}}},"df":9,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":3,"docs":{"12":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"40":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"31":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"46":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}},"p":{":":{"df":0,"docs":{},"i":{"3":{"2":{"[":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"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":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"22":{"tf":1.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.6457513110645907},"53":{"tf":1.0}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.0}}}}},"df":5,"docs":{"25":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.6457513110645907},"53":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"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":1,"docs":{"17":{"tf":1.0}}}}}}}}},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"0":{"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"4":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"45":{"tf":1.0},"63":{"tf":1.0}},"s":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"63":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"i":{"d":{"df":2,"docs":{"29":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"58":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":3,"docs":{"14":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":3.872983346207417}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":2.0},"61":{"tf":1.4142135623730951}}}}}}},"r":{"(":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"1":{"df":1,"docs":{"63":{"tf":1.0}}},"a":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":5,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":5.196152422706632},"48":{"tf":4.242640687119285},"52":{"tf":2.23606797749979},"63":{"tf":1.0}},"e":{"a":{"d":{"df":4,"docs":{"18":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"33":{"tf":1.0},"45":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.4142135623730951},"51":{"tf":2.6457513110645907},"52":{"tf":2.23606797749979},"53":{"tf":2.6457513110645907},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":36,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"4":{":":{"1":{"5":{"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":{}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"40":{"tf":1.0}},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"33":{"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":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"33":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":6,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":2.449489742783178}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"26":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"4":{"tf":2.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}},"c":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"38":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"5":{"tf":2.6457513110645907},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{":":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"3":{"2":{">":{"[":{"1":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{">":{"[":{"df":0,"docs":{},"n":{"]":{">":{"[":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{">":{"[":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"@":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"22":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":2.23606797749979},"33":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"31":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"12":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"43":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"22":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.0},"57":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"29":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"63":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"33":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":8,"docs":{"16":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"2":{":":{"5":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{":":{"9":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{":":{"5":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"9":{":":{"4":{"4":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{":":{"4":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"5":{"2":{":":{"1":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{":":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{":":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"<":{">":{"(":{"df":1,"docs":{"22":{"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":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"0":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":2.6457513110645907},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":2.23606797749979},"22":{"tf":4.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"35":{"tf":1.0},"38":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"25":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"m":{"df":2,"docs":{"30":{"tf":1.0},"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"17":{"tf":1.0},"18":{"tf":3.0},"22":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":11,"docs":{"17":{"tf":2.0},"19":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"40":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"0":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"b":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"z":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"25":{"tf":5.0},"26":{"tf":2.6457513110645907},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"u":{"df":3,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":6,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"22":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":28,"docs":{"0":{"tf":1.4142135623730951},"17":{"tf":5.0990195135927845},"21":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":2.23606797749979}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"51":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"s":{"df":32,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"22":{"tf":2.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"v":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"0":{".":{"1":{".":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":16,"docs":{"17":{"tf":2.6457513110645907},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":12,"docs":{"17":{"tf":2.0},"21":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"62":{"tf":1.0}}},"df":13,"docs":{"40":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":3.1622776601683795},"57":{"tf":2.8284271247461903},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0}}}},"y":{"df":5,"docs":{"28":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"40":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"v":{"df":1,"docs":{"55":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":1,"docs":{"40":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":8,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.23606797749979},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{",":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":9,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"18":{"tf":3.0},"52":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"3":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"30":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"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":{"18":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"14":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"16":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"41":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"61":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"38":{"tf":1.0},"5":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"56":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"19":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"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":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