diff --git a/CHANGELOG.mdown b/CHANGELOG.mdown index 0f13c59b..5e9b95f1 100644 --- a/CHANGELOG.mdown +++ b/CHANGELOG.mdown @@ -4,6 +4,8 @@ * fix issue [#8](https://github.com/weixsong/elasticlunr.js/issues/8#issuecomment-193266856), boolean "AND" error. * need to add test cases for issue fix #8 +* Optimized AND boolean search, merged pull request [#14](https://github.com/weixsong/elasticlunr.js/pull/14), thanks for [mhalle](https://github.com/mhalle), this is really brilliant idea. +* Fixed documents update issue, merged pull request [#12](https://github.com/weixsong/elasticlunr.js/pull/12), thanks [deerawan](https://github.com/deerawan). ## 0.8.8 diff --git a/VERSION b/VERSION index 6201b5f7..55485e17 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.8 +0.8.9 diff --git a/bower.json b/bower.json index 175a8237..d94206f6 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "elasticlunr.js", - "version": "0.8.8", + "version": "0.8.9", "main": "elasticlunr.js", "ignore": [ "tests/", diff --git a/component.json b/component.json index db441844..9e2492b0 100644 --- a/component.json +++ b/component.json @@ -1,7 +1,7 @@ { "name": "elasticlunr", "repo": "weixsong/elasticlunr.js", - "version": "0.8.8", + "version": "0.8.9", "description": "Lightweight full-text search engine in Javascript for browser search and offline search.", "license": "MIT", "main": "elasticlunr.js", diff --git a/docs/index.js.html b/docs/index.js.html index 363db1bb..17281a76 100644 --- a/docs/index.js.html +++ b/docs/index.js.html @@ -115,9 +115,9 @@
elasticlunr.Index.prototype.removeDocByRef = function (docRef, emitEvent) {
if (!docRef) return;
if (this.documentStore.isDocStored() === false) {
- elasticlunr.utils.warn('remove doc by ref is not allowed, because currectly not storing documents in DocumentStore');
return;
}
@@ -632,6 +631,38 @@
results.sort(function (a, b) { return b.score - a.score; });
return results;
};
+ Option name | +Type | +Description | +
---|---|---|
queryTokens | +Array | +The query tokens to query in this field. |
+
field | +String | +Field to query in. |
+
config | +elasticlunr.Configuration | +The user query config, JSON format. |
+
return | +Object | ++ |
search queryTokens in specified field.
elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, config) {
var booleanType = config[fieldName].bool;
var expand = config[fieldName].expand;
- var scores = {};
+ var scores = null;
var docTokens = {};
queryTokens.forEach(function (token) {
@@ -682,11 +713,41 @@
if (expand == true) {
tokens = this.index[fieldName].expandToken(token);
}
-
+ // Consider every query token in turn. If expanded, each query token
+ // corresponds to a set of tokens, which is all tokens in the
+ // index matching the pattern queryToken* .
+ // For the set of tokens corresponding to a query token, find and score
+ // all matching documents. Store those scores in queryTokenScores,
+ // keyed by docRef.
+ // Then, depending on the value of booleanType, combine the scores
+ // for this query token with previous scores. If booleanType is OR,
+ // then merge the scores by summing into the accumulated total, adding
+ // new document scores are required (effectively a union operator).
+ // If booleanType is AND, accumulate scores only if the document
+ // has previously been scored by another query token (an intersection
+ // operation0.
+ // Furthermore, since when booleanType is AND, additional
+ // query tokens can't add new documents to the result set, use the
+ // current document set to limit the processing of each new query
+ // token for efficiency (i.e., incremental intersection).
+
+ var queryTokenScores = {};
tokens.forEach(function (key) {
var docs = this.index[fieldName].getDocs(key);
var idf = this.idf(key, fieldName);
-
+
+ if (scores && booleanType == 'AND') {
+ // special case, we can rule out documents that have been
+ // already been filtered out because they weren't scored
+ // by previous query token passes.
+ var filteredDocs = {};
+ for (var docRef in scores) {
+ if (docRef in docs) {
+ filteredDocs[docRef] = docs[docRef];
+ }
+ }
+ docs = filteredDocs;
+ }
// only record appeared token for retrieved documents for the
// original token, not for expaned token.
// beause for doing coordNorm for a retrieved document, coordNorm only care how many
@@ -714,28 +775,25 @@
var score = tf * idf * fieldLengthNorm * penality;
- if (docRef in scores) {
- scores[docRef] += score;
+ if (docRef in queryTokenScores) {
+ queryTokenScores[docRef] += score;
} else {
- scores[docRef] = score;
+ queryTokenScores[docRef] = score;
}
}
}, this);
+
+ scores = this.mergeScores(scores, queryTokenScores, booleanType);
}, this);
- if (booleanType == 'AND') {
- scores = this.intersect(scores, docTokens, queryTokens.length);
- }
-
scores = this.coordNorm(scores, docTokens, queryTokens.length);
-
return scores;
};
- -
docTokens | +bool | Object | -a data structure stores which token appears in the retrieved doc. |
+ accumulated scores. Should be null on first call. |
token | +scores | String | -query token |
+ new scores to merge into accumScores. |
docs | +op | Object | -the retrieved documents of the query token |
+ merge operation (should be 'AND' or 'OR'). |
Record the occuring query token of retrieved doc specified by doc field.
Only for inner user.
elasticlunr.Index.prototype.fieldSearchStats = function (docTokens, token, docs) {
- for (var doc in docs) {
- if (doc in docTokens) {
- docTokens[doc].push(token);
+ Merge the scores from one set of tokens into an accumulated score table.
Exact operation depends on the op parameter. If op is 'AND', then only the
intersection of the two score lists is retained. Otherwise, the union of
the two score lists is returned. For internal use only.
+ elasticlunr.Index.prototype.mergeScores = function (accumScores, scores, op) {
+ if (!accumScores) {
+ return scores;
+ }
+ if (op == 'AND') {
+ var intersection = {};
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ intersection[docRef] = accumScores[docRef] + scores[docRef];
+ }
+ }
+ return intersection;
} else {
- docTokens[doc] = [token];
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ accumScores[docRef] += scores[docRef];
+ } else {
+ accumScores[docRef] = scores[docRef];
+ }
+ }
+ return accumScores;
}
- }
};
-
- intersect
+
+ fieldSearchStats
-
methodelasticlunr.Index.prototype.intersect()
+ methodelasticlunr.Index.prototype.fieldSearchStats()
@@ -791,39 +863,31 @@
- results
- Object
- first results
-
-
- docs
+ docTokens
Object
- field search results of a token
+ a data structure stores which token appears in the retrieved doc.
- n
- Integer
- query token number
+ token
+ String
+ query token
- return
+ docs
Object
-
+ the retrieved documents of the query token
- find documents contain all the query tokens.
only for inner use.
- elasticlunr.Index.prototype.intersect = function (scores, docTokens, n) {
- var res = {};
-
- for (var doc in scores) {
- if (!(doc in docTokens)) continue;
- if (docTokens[doc].length == n) {
- res[doc] = scores[doc];
+ Record the occuring query token of retrieved doc specified by doc field.
Only for inner user.
+ elasticlunr.Index.prototype.fieldSearchStats = function (docTokens, token, docs) {
+ for (var doc in docs) {
+ if (doc in docTokens) {
+ docTokens[doc].push(token);
+ } else {
+ docTokens[doc] = [token];
}
}
-
- return res;
};
coordNorm
diff --git a/elasticlunr.js b/elasticlunr.js
index cc78e1c9..91956718 100644
--- a/elasticlunr.js
+++ b/elasticlunr.js
@@ -1,6 +1,6 @@
/**
* elasticlunr - http://weixsong.github.io
- * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
+ * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.9
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
@@ -83,7 +83,7 @@ var elasticlunr = function (config) {
return idx;
};
-elasticlunr.version = "0.8.8";
+elasticlunr.version = "0.8.9";
/*!
* elasticlunr.utils
* Copyright (C) 2016 Oliver Nightingale
@@ -749,7 +749,6 @@ elasticlunr.Index.prototype.addDoc = function (doc, emitEvent) {
elasticlunr.Index.prototype.removeDocByRef = function (docRef, emitEvent) {
if (!docRef) return;
if (this.documentStore.isDocStored() === false) {
- elasticlunr.utils.warn('remove doc by ref is not allowed, because currectly not storing documents in DocumentStore');
return;
}
@@ -917,6 +916,14 @@ elasticlunr.Index.prototype.search = function (query, userConfig) {
return results;
};
+/**
+ * search queryTokens in specified field.
+ *
+ * @param {Array} queryTokens The query tokens to query in this field.
+ * @param {String} field Field to query in.
+ * @param {elasticlunr.Configuration} config The user query config, JSON format.
+ * @return {Object}
+ */
/**
* search queryTokens in specified field.
*
@@ -928,7 +935,7 @@ elasticlunr.Index.prototype.search = function (query, userConfig) {
elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, config) {
var booleanType = config[fieldName].bool;
var expand = config[fieldName].expand;
- var scores = {};
+ var scores = null;
var docTokens = {};
queryTokens.forEach(function (token) {
@@ -936,11 +943,41 @@ elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, conf
if (expand == true) {
tokens = this.index[fieldName].expandToken(token);
}
-
+ // Consider every query token in turn. If expanded, each query token
+ // corresponds to a set of tokens, which is all tokens in the
+ // index matching the pattern queryToken* .
+ // For the set of tokens corresponding to a query token, find and score
+ // all matching documents. Store those scores in queryTokenScores,
+ // keyed by docRef.
+ // Then, depending on the value of booleanType, combine the scores
+ // for this query token with previous scores. If booleanType is OR,
+ // then merge the scores by summing into the accumulated total, adding
+ // new document scores are required (effectively a union operator).
+ // If booleanType is AND, accumulate scores only if the document
+ // has previously been scored by another query token (an intersection
+ // operation0.
+ // Furthermore, since when booleanType is AND, additional
+ // query tokens can't add new documents to the result set, use the
+ // current document set to limit the processing of each new query
+ // token for efficiency (i.e., incremental intersection).
+
+ var queryTokenScores = {};
tokens.forEach(function (key) {
var docs = this.index[fieldName].getDocs(key);
var idf = this.idf(key, fieldName);
-
+
+ if (scores && booleanType == 'AND') {
+ // special case, we can rule out documents that have been
+ // already been filtered out because they weren't scored
+ // by previous query token passes.
+ var filteredDocs = {};
+ for (var docRef in scores) {
+ if (docRef in docs) {
+ filteredDocs[docRef] = docs[docRef];
+ }
+ }
+ docs = filteredDocs;
+ }
// only record appeared token for retrieved documents for the
// original token, not for expaned token.
// beause for doing coordNorm for a retrieved document, coordNorm only care how many
@@ -968,24 +1005,58 @@ elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, conf
var score = tf * idf * fieldLengthNorm * penality;
- if (docRef in scores) {
- scores[docRef] += score;
+ if (docRef in queryTokenScores) {
+ queryTokenScores[docRef] += score;
} else {
- scores[docRef] = score;
+ queryTokenScores[docRef] = score;
}
}
}, this);
+
+ scores = this.mergeScores(scores, queryTokenScores, booleanType);
}, this);
- if (booleanType == 'AND') {
- scores = this.intersect(scores, docTokens, queryTokens.length);
- }
-
scores = this.coordNorm(scores, docTokens, queryTokens.length);
-
return scores;
};
+/**
+ * Merge the scores from one set of tokens into an accumulated score table.
+ * Exact operation depends on the op parameter. If op is 'AND', then only the
+ * intersection of the two score lists is retained. Otherwise, the union of
+ * the two score lists is returned. For internal use only.
+ *
+ * @param {Object} bool accumulated scores. Should be null on first call.
+ * @param {String} scores new scores to merge into accumScores.
+ * @param {Object} op merge operation (should be 'AND' or 'OR').
+ *
+ */
+
+elasticlunr.Index.prototype.mergeScores = function (accumScores, scores, op) {
+ if (!accumScores) {
+ return scores;
+ }
+ if (op == 'AND') {
+ var intersection = {};
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ intersection[docRef] = accumScores[docRef] + scores[docRef];
+ }
+ }
+ return intersection;
+ } else {
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ accumScores[docRef] += scores[docRef];
+ } else {
+ accumScores[docRef] = scores[docRef];
+ }
+ }
+ return accumScores;
+ }
+};
+
+
/**
* Record the occuring query token of retrieved doc specified by doc field.
* Only for inner user.
@@ -1005,28 +1076,6 @@ elasticlunr.Index.prototype.fieldSearchStats = function (docTokens, token, docs)
}
};
-/**
- * find documents contain all the query tokens.
- * only for inner use.
- *
- * @param {Object} results first results
- * @param {Object} docs field search results of a token
- * @param {Integer} n query token number
- * @return {Object}
- */
-elasticlunr.Index.prototype.intersect = function (scores, docTokens, n) {
- var res = {};
-
- for (var doc in scores) {
- if (!(doc in docTokens)) continue;
- if (docTokens[doc].length == n) {
- res[doc] = scores[doc];
- }
- }
-
- return res;
-};
-
/**
* coord norm the score of a doc.
* if a doc contain more query tokens, then the score will larger than the doc
diff --git a/elasticlunr.min.js b/elasticlunr.min.js
index 8ca97310..2b4a24dd 100644
--- a/elasticlunr.min.js
+++ b/elasticlunr.min.js
@@ -1,10 +1,10 @@
/**
* elasticlunr - http://weixsong.github.io
- * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
+ * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.9
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
* MIT Licensed
* @license
*/
-!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.8.8",t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!=n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)})}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e){if(this.documentStore.isDocStored()===!1)return void t.utils.warn("remove doc by ref is not allowed, because currectly not storing documents in DocumentStore");if(this.documentStore.hasDoc(e)){var n=this.documentStore.getDoc(e);this.removeDoc(n,!1)}}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];var i=null;null!=n&&(i=JSON.stringify(n));var o=new t.Configuration(i,this.getFields()).get(),r=this.pipeline.run(t.tokenizer(e)),s={};for(var u in o){var a=this.fieldSearch(r,u,o),l=o[u].boost;for(var c in a)a[c]=a[c]*l;for(var c in a)c in s?s[c]+=a[c]:s[c]=a[c]}var d=[];for(var c in s)d.push({ref:c,score:s[c]});return d.sort(function(e,t){return t.score-e.score}),d},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r={},s={};return e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e)),n.forEach(function(n){var i=this.index[t].getDocs(n),o=this.idf(n,t);n==e&&this.fieldSearchStats(s,n,i);for(var u in i){var a=this.index[t].getTermFrequency(n,u),l=this.documentStore.getFieldLength(u,t),c=1;0!=l&&(c=1/Math.sqrt(l));var d=1;n!=e&&(d=.15*(1-(n.length-e.length)/n.length));var f=a*o*c*d;u in r?r[u]+=f:r[u]=f}},this)},this),"AND"==i&&(r=this.intersect(r,s,e.length)),r=this.coordNorm(r,s,e.length)},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.intersect=function(e,t,n){var i={};for(var o in e)o in t&&t[o].length==n&&(i[o]=e[o]);return i},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,x=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),I=new RegExp("^"+o+i+"[^aeiouwxy]$"),S=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=x,a=w,l=I,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=S,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0},this.length=0},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t.length=e.length,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1,this.length+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root,length:this.length}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
\ No newline at end of file
+!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.8.9",t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!=n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)})}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];var i=null;null!=n&&(i=JSON.stringify(n));var o=new t.Configuration(i,this.getFields()).get(),r=this.pipeline.run(t.tokenizer(e)),s={};for(var u in o){var a=this.fieldSearch(r,u,o),l=o[u].boost;for(var c in a)a[c]=a[c]*l;for(var c in a)c in s?s[c]+=a[c]:s[c]=a[c]}var d=[];for(var c in s)d.push({ref:c,score:s[c]});return d.sort(function(e,t){return t.score-e.score}),d},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=null,s={};return e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var u={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(r&&"AND"==i){var l={};for(var c in r)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(s,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in u?u[c]+=v:u[c]=v}},this),r=this.mergeScores(r,u,i)},this),r=this.coordNorm(r,s,e.length)},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,x=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),S=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=x,a=w,l=S,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0},this.length=0},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t.length=e.length,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1,this.length+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root,length:this.length}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
\ No newline at end of file
diff --git a/example/elasticlunr.js b/example/elasticlunr.js
index cc78e1c9..91956718 100644
--- a/example/elasticlunr.js
+++ b/example/elasticlunr.js
@@ -1,6 +1,6 @@
/**
* elasticlunr - http://weixsong.github.io
- * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
+ * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.9
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
@@ -83,7 +83,7 @@ var elasticlunr = function (config) {
return idx;
};
-elasticlunr.version = "0.8.8";
+elasticlunr.version = "0.8.9";
/*!
* elasticlunr.utils
* Copyright (C) 2016 Oliver Nightingale
@@ -749,7 +749,6 @@ elasticlunr.Index.prototype.addDoc = function (doc, emitEvent) {
elasticlunr.Index.prototype.removeDocByRef = function (docRef, emitEvent) {
if (!docRef) return;
if (this.documentStore.isDocStored() === false) {
- elasticlunr.utils.warn('remove doc by ref is not allowed, because currectly not storing documents in DocumentStore');
return;
}
@@ -917,6 +916,14 @@ elasticlunr.Index.prototype.search = function (query, userConfig) {
return results;
};
+/**
+ * search queryTokens in specified field.
+ *
+ * @param {Array} queryTokens The query tokens to query in this field.
+ * @param {String} field Field to query in.
+ * @param {elasticlunr.Configuration} config The user query config, JSON format.
+ * @return {Object}
+ */
/**
* search queryTokens in specified field.
*
@@ -928,7 +935,7 @@ elasticlunr.Index.prototype.search = function (query, userConfig) {
elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, config) {
var booleanType = config[fieldName].bool;
var expand = config[fieldName].expand;
- var scores = {};
+ var scores = null;
var docTokens = {};
queryTokens.forEach(function (token) {
@@ -936,11 +943,41 @@ elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, conf
if (expand == true) {
tokens = this.index[fieldName].expandToken(token);
}
-
+ // Consider every query token in turn. If expanded, each query token
+ // corresponds to a set of tokens, which is all tokens in the
+ // index matching the pattern queryToken* .
+ // For the set of tokens corresponding to a query token, find and score
+ // all matching documents. Store those scores in queryTokenScores,
+ // keyed by docRef.
+ // Then, depending on the value of booleanType, combine the scores
+ // for this query token with previous scores. If booleanType is OR,
+ // then merge the scores by summing into the accumulated total, adding
+ // new document scores are required (effectively a union operator).
+ // If booleanType is AND, accumulate scores only if the document
+ // has previously been scored by another query token (an intersection
+ // operation0.
+ // Furthermore, since when booleanType is AND, additional
+ // query tokens can't add new documents to the result set, use the
+ // current document set to limit the processing of each new query
+ // token for efficiency (i.e., incremental intersection).
+
+ var queryTokenScores = {};
tokens.forEach(function (key) {
var docs = this.index[fieldName].getDocs(key);
var idf = this.idf(key, fieldName);
-
+
+ if (scores && booleanType == 'AND') {
+ // special case, we can rule out documents that have been
+ // already been filtered out because they weren't scored
+ // by previous query token passes.
+ var filteredDocs = {};
+ for (var docRef in scores) {
+ if (docRef in docs) {
+ filteredDocs[docRef] = docs[docRef];
+ }
+ }
+ docs = filteredDocs;
+ }
// only record appeared token for retrieved documents for the
// original token, not for expaned token.
// beause for doing coordNorm for a retrieved document, coordNorm only care how many
@@ -968,24 +1005,58 @@ elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, conf
var score = tf * idf * fieldLengthNorm * penality;
- if (docRef in scores) {
- scores[docRef] += score;
+ if (docRef in queryTokenScores) {
+ queryTokenScores[docRef] += score;
} else {
- scores[docRef] = score;
+ queryTokenScores[docRef] = score;
}
}
}, this);
+
+ scores = this.mergeScores(scores, queryTokenScores, booleanType);
}, this);
- if (booleanType == 'AND') {
- scores = this.intersect(scores, docTokens, queryTokens.length);
- }
-
scores = this.coordNorm(scores, docTokens, queryTokens.length);
-
return scores;
};
+/**
+ * Merge the scores from one set of tokens into an accumulated score table.
+ * Exact operation depends on the op parameter. If op is 'AND', then only the
+ * intersection of the two score lists is retained. Otherwise, the union of
+ * the two score lists is returned. For internal use only.
+ *
+ * @param {Object} bool accumulated scores. Should be null on first call.
+ * @param {String} scores new scores to merge into accumScores.
+ * @param {Object} op merge operation (should be 'AND' or 'OR').
+ *
+ */
+
+elasticlunr.Index.prototype.mergeScores = function (accumScores, scores, op) {
+ if (!accumScores) {
+ return scores;
+ }
+ if (op == 'AND') {
+ var intersection = {};
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ intersection[docRef] = accumScores[docRef] + scores[docRef];
+ }
+ }
+ return intersection;
+ } else {
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ accumScores[docRef] += scores[docRef];
+ } else {
+ accumScores[docRef] = scores[docRef];
+ }
+ }
+ return accumScores;
+ }
+};
+
+
/**
* Record the occuring query token of retrieved doc specified by doc field.
* Only for inner user.
@@ -1005,28 +1076,6 @@ elasticlunr.Index.prototype.fieldSearchStats = function (docTokens, token, docs)
}
};
-/**
- * find documents contain all the query tokens.
- * only for inner use.
- *
- * @param {Object} results first results
- * @param {Object} docs field search results of a token
- * @param {Integer} n query token number
- * @return {Object}
- */
-elasticlunr.Index.prototype.intersect = function (scores, docTokens, n) {
- var res = {};
-
- for (var doc in scores) {
- if (!(doc in docTokens)) continue;
- if (docTokens[doc].length == n) {
- res[doc] = scores[doc];
- }
- }
-
- return res;
-};
-
/**
* coord norm the score of a doc.
* if a doc contain more query tokens, then the score will larger than the doc
diff --git a/example/elasticlunr.min.js b/example/elasticlunr.min.js
index 8ca97310..2b4a24dd 100644
--- a/example/elasticlunr.min.js
+++ b/example/elasticlunr.min.js
@@ -1,10 +1,10 @@
/**
* elasticlunr - http://weixsong.github.io
- * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
+ * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.9
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
* MIT Licensed
* @license
*/
-!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.8.8",t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!=n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)})}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e){if(this.documentStore.isDocStored()===!1)return void t.utils.warn("remove doc by ref is not allowed, because currectly not storing documents in DocumentStore");if(this.documentStore.hasDoc(e)){var n=this.documentStore.getDoc(e);this.removeDoc(n,!1)}}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];var i=null;null!=n&&(i=JSON.stringify(n));var o=new t.Configuration(i,this.getFields()).get(),r=this.pipeline.run(t.tokenizer(e)),s={};for(var u in o){var a=this.fieldSearch(r,u,o),l=o[u].boost;for(var c in a)a[c]=a[c]*l;for(var c in a)c in s?s[c]+=a[c]:s[c]=a[c]}var d=[];for(var c in s)d.push({ref:c,score:s[c]});return d.sort(function(e,t){return t.score-e.score}),d},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r={},s={};return e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e)),n.forEach(function(n){var i=this.index[t].getDocs(n),o=this.idf(n,t);n==e&&this.fieldSearchStats(s,n,i);for(var u in i){var a=this.index[t].getTermFrequency(n,u),l=this.documentStore.getFieldLength(u,t),c=1;0!=l&&(c=1/Math.sqrt(l));var d=1;n!=e&&(d=.15*(1-(n.length-e.length)/n.length));var f=a*o*c*d;u in r?r[u]+=f:r[u]=f}},this)},this),"AND"==i&&(r=this.intersect(r,s,e.length)),r=this.coordNorm(r,s,e.length)},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.intersect=function(e,t,n){var i={};for(var o in e)o in t&&t[o].length==n&&(i[o]=e[o]);return i},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,x=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),I=new RegExp("^"+o+i+"[^aeiouwxy]$"),S=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=x,a=w,l=I,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=S,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0},this.length=0},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t.length=e.length,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1,this.length+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root,length:this.length}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
\ No newline at end of file
+!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.8.9",t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!=n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)})}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];var i=null;null!=n&&(i=JSON.stringify(n));var o=new t.Configuration(i,this.getFields()).get(),r=this.pipeline.run(t.tokenizer(e)),s={};for(var u in o){var a=this.fieldSearch(r,u,o),l=o[u].boost;for(var c in a)a[c]=a[c]*l;for(var c in a)c in s?s[c]+=a[c]:s[c]=a[c]}var d=[];for(var c in s)d.push({ref:c,score:s[c]});return d.sort(function(e,t){return t.score-e.score}),d},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=null,s={};return e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var u={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(r&&"AND"==i){var l={};for(var c in r)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(s,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in u?u[c]+=v:u[c]=v}},this),r=this.mergeScores(r,u,i)},this),r=this.coordNorm(r,s,e.length)},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,x=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),S=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=x,a=w,l=S,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0},this.length=0},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t.length=e.length,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1,this.length+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root,length:this.length}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
\ No newline at end of file
diff --git a/example/example_index.json b/example/example_index.json
index 7d59d98e..50340147 100644
--- a/example/example_index.json
+++ b/example/example_index.json
@@ -1 +1 @@
-{"version":"0.8.8","fields":["title","tags","body"],"ref":"id","documentStore":{"docs":{"78932":{"id":78932,"title":"How do I programatically set the value of a select box element using javascript?","body":"I have the following HTML select element:
\n\n<select id=\"leaveCode\" name=\"leaveCode\">\n <option value=\"10\">Annual Leave</option>\n <option value=\"11\">Medical Leave</option>\n <option value=\"14\">Long Service</option>\n <option value=\"17\">Leave Without Pay</option>\n</select>\n
\n\nUsing a javascript function with the leave code number as a parameter, how do I select the appropriate option in the list?
\n","tags":"javascript html dom"},"318630":{"id":318630,"title":"Get real image width and height with Javascript in Safari/Chrome?","body":"I am creating a jQuery plugin.
\n\nHow do I get real image width and height with Javascript in Safari?
\n\nFollowing works with Firefox 3, IE7 and Opera 9:
\n\nvar pic = $(\"img\")\n\n// need to remove these in of case img-element has set width and height\npic.removeAttr(\"width\"); \npic.removeAttr(\"height\");\n\nvar pic_real_width = pic.width();\nvar pic_real_height = pic.height();\n
\n\nBut in Webkit browsers like Safari and Google Chrome values are 0...
\n\nDoing this on server side is not an option.
\n","tags":"javascript jquery safari google-chrome webkit"},"814910":{"id":814910,"title":"Animating Background Image","body":"I Like using Jquery and its companion Jquery Ui but can not find a way to animate background image over a certain period of time like 5 seconds.\nI can not do something like:
\n\n$('sampleelement').animate({'background-image':'url(hello.jpg)'},5000);\n
\n\nAny ideas??
\n","tags":"javascript jquery jquery-ui animation jquery-animation"},"3047391":{"id":3047391,"title":"Parsing complex string using regex","body":"My regex skills are not very good and recently a new data element has thrown my parser into a loop
\n\nTake the following string
\n\n\"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write\"
\n\nPreviously I had the following for my regex : [+\\\\-/]
\n\nWhich would turn the result into
\n\nUSER=Bob Smith
\nGROUP=Admin
\nFUNCTION=Read
\nFUNCTION=Write
\nFUNCTION=Read
\n\nBut now I have values with dashes in them which is causing bad output
\n\nNew string looks like \"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write/FUNCTION=Read-Write\"
\n\nWhich gives me the following result , and breaks the key = value structure.
\n\nUSER=Bob Smith
\nGROUP=Admin
\nFUNCTION=Read
\nFUNCTION=Write
\nFUNCTION=Read
\nWrite
\n\nCan someone help me formulate a valid regex for handling this or point me to some key / value examples. Basically I need to be able to handle + - / signs in order to get combinations.
\n","tags":"java javascript xml regex parsing"},"3802824":{"id":3802824,"title":"Problem opening page with javascript pop ups in android webview","body":"I am very new to both Android WebKit and JavaScript. I have a web page with 3 links (say A,B,C). When I open that page on my PC browser(Chrome) and click on the links, A opens in the same browser window, whereas B and C pops up a new window. In my android application I am \nloading the original URL in a WebView. I have implemented my WebViewClient and overridden the shouldOverrideUrlLoading
. I am getting the call to shouldOverrideUrlLoading
whenever I click on A, but not getting it when I click on B or C?
\n\nI went through the page source and it looks like the 2 links that are \nnot supported are opened as IFRAMEs. are IFRAMEs supported by WebView?
\n\nThanks
\n\nKK
\n","tags":"javascript android"},"3827055":{"id":3827055,"title":"Run JavaScript unit tests inside of Visual Studio 2010","body":"I have been searching for a good way to run JavaScript unit tests inside of the Visual Studio 2010 IDE. I currently use TestDriven.net to run my C# units tests and it is very convenient to be able to quickly get the result of my tests in the output pane. I would love to find a similar experience for JavaScript (ideally working with TestDriven.net).
\n\nI have read about different solutions that let you execute JavaScrpt unit tests. Some have their own JS engine while others like JS-Test-Driver are able to send the code to the browsers and fetch the results. But I have yet to see something that is integrated into VS 2010.
\n\nDoes anyone know of an extension that might do this?
\n","tags":"javascript unit-testing visual-studio-2010"},"4047072":{"id":4047072,"title":"JS: setInterval and blur.","body":"I have this:
\n\n$(window).blur(function() {\n setInterval(function() {\n $.ajax({\n type: \"POST\",\n url: \"imback.php\",\n data: {\n mode: 'ajax',\n getUpdates: 'auto',\n },\n success: function(msg){\n document.title = msg + titleOrig;\n }\n });\n }, 35000);\n
\n\nWorks fine.
\n\nAlthough, if you have been blur, and then when you focus back, it will keep making the ajax call, it doesnt stop sending ajax call after interval 35 seconds.
\n\nHow can i fix this?\n })
\n","tags":"javascript"},"4185821":{"id":4185821,"title":"Is it possible to programmatically detect the caret position within a element?","body":"Assuming a regular <input type=text>
text-box with data in it.
\n\nIs it possible to detect (via JavaScript) the position of the text-coursor inside that text-box?
\n\nI am able to detect an ARROW LEFT or ARROW RIGHT keydown event - but how to detect the cursor location?
\n\nWhy I need this:
\n\nI have a dynamic text-box here: http://vidasp.net/tinydemos/dynamic-textbox.html
\nIt works great, however there are two scenarios that I would like to fix:
\n\n\n- when the cursor is at the beginning of the text-box and the user presses BACKSPACE
\n- when the cursor is at the end of the text-box and the user presses DELETE
\n
\n\n(In both cases, the text-box must contain data for the effect to be observable.)
\n","tags":"javascript"},"4272538":{"id":4272538,"title":"How can I parse XML in javascript in both IE and firefox?","body":"I'm trying to write a single piece of code to parse javascript in both IE and firefox.
\n\nThe following works in IE, and functions without complaining in firefox
\n\nfunction XmlDom(sXml){\n var oXml;\n if (window.ActiveXObject) {\n // ie\n oXml = new ActiveXObject(\"Microsoft.XMLDOM\");\n oXml.resolveExternals = false;\n oXml.async = false;\n oXml.loadXML(sXml);\n }\n else if (window.DOMParser){\n\n var parser = new DOMParser(); \n oXml = parser.parseFromString(sXml, \"text/xml\");\n\n }\nreturn oXml\n}\n
\n\nThe following works in IE, but gives errors (because childNodes doesn't exist) under Firefox
\n\nvar oXml = XmlDom(sourceXML);\nvar listHtml = \"\";\nif (oXml.firstChild != null) {\n var childNodes = null;\n try {\n childNodes = oXml.lastChild.lastChild.firstChild.childNodes;\n }\n if (childNodes != null && childNodes.length > 0) {\n\n for (var i = 0; i < childNodes.length; i++) {\n\n var vehicleName = NodeText(SelectSingleNode(childNodes[i], 'VehicleName', 'VehicleName'));\n var vehicleId = NodeText(SelectSingleNode(childNodes[i], 'VehicleId', 'VehicleId'));\n\n }\n }\n}\n
\n\nUsing jquery gives me correct behavior under firefox, but doesn't quite work in IE (it finds the correct number of vehicles, but each one has a null id and name)
\n\n $(sourceXml).find(\"Table1\").each(function() {\n var vehicleId = $(this).find(\"VehicleId\").text();\n var vehicleName = $(this).find(\"VehicleName\").text();\n });\n
\n\nI firmly believe that both these approaches should work. But something is going wrong. I'd love a hand.
\n\n<?xml version=\"1.0\" encoding=\"utf-16\"?>\n<DataSet>\n <xs:schema id=\"NewDataSet\" xmlns=\"\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:msprop=\"urn:schemas-microsoft-com:xml-msprop\">\n <xs:element name=\"NewDataSet\" msdata:IsDataSet=\"true\" msdata:UseCurrentLocale=\"true\">\n <xs:complexType>\n <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n <xs:element name=\"Table1\">\n <xs:complexType>\n <xs:sequence>\n <xs:element name=\"VehicleId\" msprop:metadatacolumnname=\"VehicleId\" msprop:caption=\"VehicleId\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"VehicleName\" msprop:metadatacolumnname=\"VehicleName\" msprop:caption=\"VehicleName\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"SendAlarms\" msprop:metadatacolumnname=\"SendAlarms\" msprop:caption=\"SendAlarms\" type=\"xs:string\" minOccurs=\"0\" />\n </xs:sequence>\n </xs:complexType>\n </xs:element>\n </xs:choice>\n </xs:complexType>\n </xs:element>\n </xs:schema>\n <diffgr:diffgram xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:diffgr=\"urn:schemas-microsoft-com:xml-diffgram-v1\">\n<NewDataSet>\n <Table1 diffgr:id=\"Table11\" msdata:rowOrder=\"0\" diffgr:hasChanges=\"inserted\">\n <VehicleId>8</VehicleId>\n <VehicleName>AIS Gate</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1>\n <Table1 diffgr:id=\"Table12\" msdata:rowOrder=\"1\" diffgr:hasChanges=\"inserted\">\n <VehicleId>82</VehicleId>\n <VehicleName>Amigos</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1> \n</NewDataSet>\n</diffgr:diffgram>\n</DataSet>\n
\n","tags":"javascript xml"},"4460205":{"id":4460205,"title":"detect ipad/iphone webview via javascript","body":"Is there a way to differ via javascript if the website runs inside the ipad safari or inside an application WebView?
\n","tags":"javascript ipad ios webview"},"4508230":{"id":4508230,"title":"php/ajax user actions undo manager","body":"does exist a library that gives you undo/redo capability with history for a web app? An idea would be a php/javascript/ajax system in which you can register for every user action an opposite action and the variable state (like a normal undo manager!). and it should work both at client level and server level.
\n\nDid i ask too much?
\n","tags":"php javascript ajax undo-redo"},"4529460":{"id":4529460,"title":"How to fix the width and height of jquery lightbox?","body":"I have aplied jquery lighbox on my image gallery, but due to the variable size of images, the lightbox size is not fixed hence opens up with image's original size, this in turn causes the biga images to go out of screen and display horizontal scroll bar in browser.
\n\nHence I am looking for the way to apply the fix width and height to lightbox so that every image must be displayed with this size in lightbox.
\n\nPlease help..
\n\n\n Update
\n
\n\ni Just tried with the solution Scott (http://geekswithblogs.net/wojan/archive/2009/06/17/jquerylightbox.aspx) has given to me, I did this,
\n\nfunction _resize_container_image_box(intImageWidth,intImageHeight) {\n// Get current width and height\n//rescale if necessary\nif((settings.maxWidth != null && settings.maxHeight != null) && (intImageWidth > settings.maxWidth || intImageHeight > settings.maxHeight)){\nvar isWider = intImageWidth > intImageHeight;//is the image wide or tall?\nvar scale = isWider ? settings.maxWidth/intImageWidth : settings.maxHeight/intImageHeight;\nintImageWidth = intImageWidth * scale;\nintImageHeight = intImageHeight * scale;\n}\n\n$('#lightbox-image').height(intImageHeight); \n$('#lightbox-image').width(intImageWidth); \nvar intCurrentWidth = $('#lightbox-container-image-box').width();\nvar intCurrentHeight = $('#lightbox-container-image-box').height();\n// Get the width and height of the selected image plus the padding\nvar intWidth = (intImageWidth + (settings.containerBorderSize * 2)); // Plus the image´s width and the left and right padding value\nvar intHeight = (intImageHeight + (settings.containerBorderSize * 2)); // Plus the image´s height and the left and right padding value\n// Diferences\nvar intDiffW = intCurrentWidth - intWidth;\nvar intDiffH = intCurrentHeight - intHeight;\n// Perfomance the effect\n$('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight },settings.containerResizeSpeed,function() { _show_image(); });\nif ( ( intDiffW == 0 ) && ( intDiffH == 0 ) ) {\nif ( $.browser.msie ) {\n___pause(250);\n} else {\n___pause(100); \n}\n} \n$('#lightbox-container-image-data-box').css({ width: intImageWidth });\n$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });\n};\n
\n\nAND
\n\n$('#gallery a').lightBox( maxHeight: null,\nmaxWidth: null);\n});\n
\n\nBut whenever I do this and click on the image just gets open in browsers annother tab, all the lightbox functinalty fails
\n\nPlease help me to correct it
\n\nThanks
\n","tags":"javascript jquery css lightbox"},"5306132":{"id":5306132,"title":"Translate Javascript keyCode into charCode for non-U.S. keyboard layout (i.e. azerty)","body":"Quick background:
\n\n\n- when a key is pressed in a browser, three events are generated: keyDown, keyPress and keyUp.
\n- keyDown and keyUp have a keyCode property which is approximately the physical key pressed.
\n- keyPress also has charCode property set which takes into account modifier keys and keyboard layout (A and a have same keyCode but a different charCode).
\n- all three events have properties that indicate which modifier keys were pressed during those events.
\n
\n\nI'm the main noVNC developer and I have a tough problem: noVNC needs the translated charCode value without using the keyPress event for the following reasons:
\n\n\n- noVNC needs to send the keyDown and keyUp events separately to the VNC server (otherwise it's not a completely functional VNC client).
\n- more importantly, noVNC needs to prevent the default keyboard actions while connected which means calling the preventDefault() method of the keyDown event. This has the side-effect of also preventing the keyPress event from firing.
\n
\n\nDue to differences in keyboard layouts (i.e. different keyCode to charCode mappings) I've determine that noVNC will need a lookup table for different keyboard layouts.
\n\nBut here is the real problem: on alternate layouts, some different physical keys have the SAME keyCode. For example, with an azerty (French) keyboard layout the '-' (dash) and '_' underscore keys both generate keyCode 189. Ack!!!
\n\nSo ... how do I get proper keyCode to charCode mapping and prevent default browser actions at the same time?
\n\nBTW, I suspect the solution to this will be applicable to other interactive web applications and HTML5 games since you often want to be able to know full information about the key pressed without triggering any additional browser response to that keypress.
\n\nUseful links:
\n\n\n- Here is an useful test page that show the three events and some other useful properties.
\n- Summary of the crazy state of key events in Javascript (thanks @Tim)
\n- Quirksmode Detecting keystrokes
\n- Quirksmode Events - key events
\n- noVNC issue with more discussion of the problem.
\n
\n\nSolution: see my post below.
\n","tags":"javascript html5 browser cross-browser"},"5351143":{"id":5351143,"title":"how to create autocomplete forum using html5 local storage?","body":"Hi to all, I am new to programming. will you help me to write code for autocomplete text fields in a html form. I want to use local storage data.\nIf any time user will inter some data in text field, it will be stored in local storage. if next time when he enters data then, localstorage data related to that field will appear as popup(like mozila or chrome autocomplete).
\n\nplease provide me some guidelines
\n","tags":"javascript forms html5 autocomplete localstorage"},"5549729":{"id":5549729,"title":"JQuery Mobile Calendar ?","body":"Does anyone know of any Calendar that I could use on JQuery Mobile?
\n\nNeeds to be able to save dates locally etc.
\n\nThanks
\n","tags":"javascript html5 jquery-mobile"},"6174688":{"id":6174688,"title":"jquery ajax post call issue with special chracters [solved]","body":"Solution: i guess the problem was related to firefox as a browser. I solved making the ajax call pass through a php proxy..
\n\ni have a form with two data fields (a checkbox and a textarea) sent via an ajax call. \nThe tomcat server response is an html page with some javascript code in it. I must use the POST method given the amount of data to be sent (if i could use GET i woud not have this issue!).\nThe problem arises if i send accented characters (èàòù) throught the textarea, for which i get weird question marks in place of them.\nFrom the firebug console i can see that both sent and received data are utf-8 encoded:
\n\nSENT DATA: Content-Type application/x-www-form-urlencoded; charset=UTF-8 \nRECEIVED DATA: text/html;charset=UTF-8
\n\nThe problem does not show in chrome or IE, but only in firefox and on all browsers on mac. HAve anybody any suggestione about this?
\n\nThanks\nVitto
\n","tags":"javascript jquery ajax post"},"6294393":{"id":6294393,"title":"Navigation Menu Hover Effect only on a Particular Occasion","body":"I need the exact effect of this website's navigation menu http://recruitmentmalta.com/ptowers/ but in neater code. This code was generated with a tool which converts from PSD to HTML/CSS and basically created a bunch of useless code. I know how to make that menu, except for the part where the Shop Now effect should turn off only if the contact is hovered over.
\n\nAny ideas of how I can recreate that hovering off effect when I hover over the contact button (when Shop Now gets turned off)?
\n\nThis is what I have done so far to give you an idea
\n\n <ul>\n <li id=\"homeButton\"> <img src=\"images/home.png\" onmouseout=\"this.src='images/home.png'\" onmouseover=\"this.src='images/homeHover.png'\" width=\"115\" height=\"55\" alt=\"home\" /></li>\n <li id=\"aboutButton\"> <img src=\"images/about.png\" onmouseout=\"this.src='images/about.png'\" onmouseover=\"this.src='images/aboutHover.png'\" width=\"115\" height=\"55\" alt=\"about\" /></li>\n <li id=\"newsButton\"> <img src=\"images/news.png\" onmouseout=\"this.src='images/news.png'\" onmouseover=\"this.src='images/newsHover.png'\" width=\"115\" height=\"55\" alt=\"news\" /></li>\n <li id=\"brandsButton\"> <img src=\"images/brands.png\" onmouseout=\"this.src='images/brands.png'\" onmouseover=\"this.src='images/brandsHover.png'\" width=\"115\" height=\"55\" alt=\"brands\" /></li>\n <li id=\"storesButton\"> <img src=\"images/stores.png\" onmouseout=\"this.src='images/stores.png'\" onmouseover=\"this.src='images/storesHover.png'\" width=\"115\" height=\"55\" alt=\"stores\" /></li>\n <li id=\"careersButton\"> <img src=\"images/careers.png\" onmouseout=\"this.src='images/careers.png'\" onmouseover=\"this.src='images/careersHover.png'\" width=\"115\" height=\"55\" alt=\"careers\" /></li>\n <li id=\"contactButtonMenu\"> <img src=\"images/contactButton.png\" onmouseout=\"this.src='images/contactButton.png'\" onmouseover=\"this.src='images/contactButtonHover.png'\" width=\"115\" height=\"55\" alt=\"contact\" /></li>\n <li id=\"shopNowButton\"> <img src=\"images/shopNowHover.png\" width=\"114\" height=\"53\" alt=\"Shop Now\" /> </li>\n </ul>\n
\n\nThis is my JS Fiddle Link: http://jsfiddle.net/GHHJM/
\n","tags":"javascript jquery html css menu"},"6296451":{"id":6296451,"title":"problem in file upload","body":"I have the following markup:
\n\n <select multiple=\"multiple\" id=\"targetFilesList\" style=\"width:200px;height:110px;\">\n </select>\n <input type=\"button\" value=\"Get\" id=\"btnGet\" />\n
\n\nand following javascript:
\n\n $(function()\n {\n $('#btnGet').click(function()\n {\n var fileupload = $(\"<input type='file' name='filetoupload' style='visibility:hidden;'/>\");\n $('body').append(fileupload);\n\n fileupload[0].onchange = function()\n {\n $('#targetFilesList').append('<option >' + fileupload.val() + '</option>');\n return false;\n }\n fileupload.click();\n });\n });\n
\n\nScenario is that i have to upload multiple files and once user has chosen the file to be uploaded i have to show the file name to user.Then,on submitting the form i will upload all the files.For this,on clicking the get button i am adding a fileupload control dynamically\nand initialise onchange event of the fileupload control just added. The problem in chrome 12 on clicking get button fileupload control does not get opened but in firefox4 and ie8 it is working.\nAny idea why?
\n","tags":"javascript jquery html file-upload"},"6364675":{"id":6364675,"title":"HtmlUnit's HtmlPage.getElementById seems to reinitialize JavaScript after many calls.","body":"I have a simple HTML page (ratings.html) that I'm trying to test using HtmlUnit. The action that I'm testing works when I load it up in a browser and do it by hand. However, when I try to test it with HtmlUnit, it seems like too many calls to getElementById (or getInputByName) cause the JavaScript on the page to be reinitialized.
\n\nIn the AddRating.scala test, the first two calls to page.addRating work, but the third fails because it can't find the 'rating3' element on the page. After lots of debugging, I've discovered that the ratingCount
gets reset back to 0 for some reason.
\n\nSee my comments below (between the // ******
sections) to see where the problem areas are.
\n\nHas anyone else experience this behavior or have any advice on how to deal with it? Thanks!
\n\nratings.html (HTML Page to add \"ratings\"):
\n\n<html>\n <head>\n <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js\"></script>\n <script src=\"http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js\"></script>\n </head>\n <body>\n <form name=\"new-rating\" method=\"post\" action=\"/add-rating\">\n <table>\n <tr>\n <td valign=\"top\">Ratings:</td>\n <td>\n Should be ordered from best to worst.<br>\n <a id=\"add-rating\" href=\"#\">add rating</a></td>\n </tr>\n <tr>\n <td></td>\n <td>\n <button name=\"submit-button\" type=\"submit\">Add Rating</button>\n </td>\n </tr>\n </table>\n </form>\n <h2>All Ratings</h2>\n\n <ul id=\"ratings\">\n </ul>\n\n <script>\n $(window).load(function(){ \n // display ratings\n $.getJSON(\"/ratings\", function(data)\n {\n var items = $.map(data, function(el) {\n var ratingsTable = \"\";\n if (el.ratings.length > 0)\n {\n $.tmpl(\"<li><table><tr><th>Rating</th></tr>{{each ratings }}<tr><td>${$value.label}</td></tr>{{/each}}</table></li>\", el).appendTo(\"#ratings\");\n }\n });\n });\n\n // add rating action\n // ***********\n var ratingCount = 0; // THIS GETS RE-INITIALIZED TO 0 AFTER TOO MANY getElementById or getElementByName calls.\n // ***********\n $('#add-rating').click(function()\n {\n ratingCount += 1;\n $('#remove-rating').show();\n $.tmpl(\"<span id='rating${ratingId}'><input name='rating${ratingId}'><br></span>\",\n {ratingId: ratingCount}).insertBefore('#add-rating');\n if(ratingCount >= 5) { $('#add-rating').hide(); }\n });\n });\n </script>\n </body>\n</html>\n
\n\nRatingsPage.scala (Scala interface to HTML page):
\n\npackage portal\n\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\n\nimport infrastructure.SuperHtmlUnitConversions._\n\nimport infrastructure.WaitFor\n\nclass RatingsPage(page: HtmlPage)\n{\n val newRatingForm: HtmlForm = page.getFormByName(\"new-rating\")\n\n var ratingCount = 0\n\n def submit(): RatingsPage =\n {\n val page = newRatingForm.getButtonByName(\"submit-button\").click[HtmlPage]()\n ratingCount = 0\n new RatingsPage(page)\n }\n\n def addRating(rating: String)\n {\n page.getElementById(\"add-rating\").click()\n ratingCount += 1\n newRatingForm.getInputByName(\"rating\" + ratingCount).asInstanceOf[HtmlInput].setValueAttribute(rating)\n }\n\n def asText(): String = page.asText\n def asXml(): String = page.asXml\n}\n
\n\nAddRating.scala (Scala HtmlUnit test that fails):
\n\npackage portal\n\nimport java.util.Date\nimport org.scalatest.FunSuite\nimport org.scalatest.junit.JUnitRunner\nimport org.junit.runner.RunWith\nimport org.scalatest.matchers.ShouldMatchers\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\nimport infrastructure.WaitFor\n\n@RunWith(classOf[JUnitRunner])\nclass AddRating extends FunSuite with ShouldMatchers\n{\n test(\"add ratings\")\n {\n val client = new WebClient()\n val index = new PortalIndexPage(client)\n var page = index.goToRatingsPage()\n\n page.addRating(\"Buy\") // WORKS\n page.addRating(\"Sell\") // WORKS\n // *********\n page.addRating(\"Sell\") // FAILS! Can't find element with \"rating3\" name!\n // *********\n page = page.submit()\n WaitFor(\"rating to show up\", ()=>page.asXml.contains(\"Sell\"))\n\n page.asText should include (\"Buy\")\n\n client.closeAllWindows()\n }\n}\n
\n","tags":"java javascript html scala htmlunit"},"6395651":{"id":6395651,"title":"Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?","body":"Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?
\n\nI'm afraid this is all there is to ask, but if more elaboration is needed please do not hesitate to tell me in a comment.
\n\nThanks.
\n","tags":"javascript flash hash webgl sha256"},"6396782":{"id":6396782,"title":"Facebook style autocomplete using dojo needed.","body":"I found facebook style autocomplete using jQuery. But im using dojo framework for my web app. Can you suggest how to implement or any open source code available for autocomplete using dojo framework. ?
\n\nUsing jquery :
\n\nhttp://devthought.com/wp-content/articles/autocompletelist/test.html
\n","tags":"javascript autocomplete dojo jquery-autocomplete"},"6397574":{"id":6397574,"title":"How to access session in express, outside of the req?","body":"I know that I can use
\n\nfunction(req, res) {\n req.session\n}\n
\n\nusing express. However I need to access the session outside of the response function. How would I go about doing that?
\n\nI'm using socket.io to pass information for adding posts and comments. So when I receive the socket.io message on the server-side, I need to verify the person posting the information by using the session. However since this is being done via socket.io there is no req/res.
\n","tags":"javascript node.js express socket.io"},"6398787":{"id":6398787,"title":"Javascript Shorthand for getElementById","body":"Is there any shorthand for the JavaScript document.getElementById? Or is there any way I can define one? It gets repetitive retyping that over and over.
\n","tags":"javascript"},"6401696":{"id":6401696,"title":"javascript, what is this?","body":"I have found this javascript code from instapaper's bookmarklet.
\n\nWhat exactly is this code doing?
\n\njavascript:\nfunction%20iprl5(){\n var%20d=document,z=d.createElement('scr'+'ipt'),b=d.body,l=d.location;\n try{\n if(!b)\n throw(0);\n d.title='(Saving...)%20'+d.title;\n z.setAttribute('src',l.protocol+'//www.instapaper.com/j/deyNbbpjuSei?u='+encodeURIComponent(l.href)+'&t='+(new%20Date().getTime()));\n b.appendChild(z);\n }\n catch(e){\n alert('Please%20wait%20until%20the%20page%20has%20loaded.');\n }\n}\niprl5();\nvoid(0)\n
\n\nThanks in advance!
\n","tags":"javascript"},"6401946":{"id":6401946,"title":"Prototyping Built-In Modules in NodeJS","body":"I've been trying to add some convenience functions to Node's file system module (mainly because it lacks some common sense things), but every time I begin fs.prototype.myfunc =
in the repl, Node complains that I am trying to set a property of an undefined variable. Is it really true that you cannot access Node's built-in module prototypes from the outside? If so, does anyone know a feasible workaround to extend Node's built-in modules?
\n\n--Thanks!
\n\n
\n\nJust to note: I did require fs before trying to prototype it!
\n\nvar fs = require('fs');\nfs.prototype.myfunc = function() {}; //TypeError thrown here\n
\n","tags":"javascript node.js prototype"},"6403354":{"id":6403354,"title":"javascript : parsing multi-level json array","body":"I have a asp.net web service that returns a multi-level array.
\n\nthe json string is parse using the json2.js lib :
\n\nvar donnee = JSON.parse(msg.d);\n
\n\nthe 1st level parsing is ok but the 2nd level array (data) remains as an array of objects
\n\n\n ? donnee[0]
\n
\n\n{...}\ncolor: \"#0000CD\"\ndata: [[object Object],[object Object]]\nlabel: \"formol\"\ntype: \"traitement\"\n
\n\n\n ? donnee[0].data
\n
\n\n[[object Object],[object Object]]\n[0]: {...}\n[1]: {...}\n
\n\n\n ? donnee[0].data[0]
\n
\n\n{...}\n_l: \"\"\n_x: 7\n_y: 25\n
\n\nwhereas I need an array of data e.g.
\n\n\n ? donnee[0]
\n
\n\n{...}\nlabel: \"traitement formol 2\"\ntype: \"traitement\"\ncolor: \"#0000CD\"\ndata: [7,25,,7,40,formol]\n
\n\n\n ? donnee[0].data
\n
\n\n[7,25,,7,40,formol]\n[0]: [7,25,]\n[1]: [7,40,formol]\n
\n\n\n ? donnee[0].data[0]
\n
\n\n[7,25,]\n[0]: 7\n[1]: 25\n[2]: \"\"\n
\n\nwhat is the best way to decode/parse all the levels of the json string at once ?
\n\nbest regards
\n","tags":"javascript arrays json parsing"},"6403728":{"id":6403728,"title":"Set table cell width using Javascript - jQuery","body":"I have a table as below;
\n\n<table style=\"width: 100%\">\n<tr>\n<td style=\"width: 30px\">cell</td>\n<td class=\"cell\">cell</td>\n<td class=\"cell\">cellcell</td>\n<td class=\"cell\">cellcellcell</td>\n<td class=\"cell\">cellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcellcell</td>\n<td style=\"width: 30px\">cell</td>\n</tr>\n</table>\n
\n\nThe table is designed to stretch to screen (or a div having specific width). I want equal width for all cells having class=\"cell\"
and this works well when the character length of text in all cells having class=\"cell\"
are equal. But, I want to fix the cell width even if the character lengths of contents in class=\"cell\"
are different.
\n\nAlso you can see that the first and last cells have fixed width, in pixels and others cell widths are to be calculated on the basis of percentage .. I want equal width for all cells (except first and last with fixed width in pixels).
\n\nI think this can be done using javascript
with the help of jQuery
, by calculating the table cell widths on document ready, and then adding some function using on window resize
and thereby calculating cell widths. The cell widths will be (tablewidth in px - 60px)/6
I am a beginner and I don't know much.. How can i do this using jQuery and (or) javascript.
\n\nIt will be very helpful if someone make me a fiddle..
\n\nThanks in advance..
\n","tags":"javascript jquery"},"6404725":{"id":6404725,"title":"Google tasks update error","body":"I am attempting to update a task with the following code:\n
\n
\n\nfunction updtsk(task,id)\n{\n var url = 'https://www.googleapis.com/tasks/v1/lists/@default/tasks/'+id;\n var req = {\n 'method': 'PUT',\n 'headers': {\n 'Content-type': 'application/json'\n },\n 'body': JSON.stringify(task)\n };\n var addDone = function(resp, xhr) {\n if (xhr.status != 200) {\n notifyFailure('Couldn\\'t update task.', xhr.status);\n return;\n }\n\n //notifySuccess(task['title']);\n }\n\n oauth.sendSignedRequest(url, addDone, req);\n}\n
\n\nI get the following error however:
\n\n\"{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"global\",\n \"reason\": \"invalid\",\n \"message\": \"Invalid Value\"\n }\n ],\n \"code\": 400,\n \"message\": \"Invalid Value\"\n }\n}\n\"\n
\n\nThe update body is this:
\n\n{\n 'title': $(this).val()\n};\n
\n\nI am using the chrome_ex_oauth api and could use some help.
\n","tags":"javascript google-chrome-extension"},"6405964":{"id":6405964,"title":"Check if a String is HTML or XML","body":"Is there a way to check if a String is HTML or XML in JavaScript? Preferably using jQuery rather than some other library?\nWhy I need to do this is because I need to know if it possible to have a function into which XML or HTML can be passed. If it is HTML we take one action and if it is XML we take another action.
\n","tags":"javascript jquery html xml check"},"6406161":{"id":6406161,"title":"JavaScript Encode","body":"Surfing on web i find Ext.Gantt plugin for ExtJS, that extension have a special encode. Anybody know how to encode like that or another complicated form.
\n\n\n","tags":"javascript obfuscation decode encode ext"},"6409944":{"id":6409944,"title":"NowJS manually initiating a new connection after a lost connection","body":"i have a case where clients connect to a node.js server running nowjs and remain connected for a fairly long time (about 30 minutes). on some browsers though the connection gets dropped after a while and the client disconnects.
\n\ni implemented a disconnect handler on the client side like this:
\n\nnow.core.on('disconnect', function () {\n // we should reconnect here, maybe after a short timeout\n});\n
\n\nwhat i am unclear about is how exactly to trigger a reconnect. this might be something blatantly obvious to experienced users but i didn't manage to figure this out.
\n\nthe now.js script initializes on page load and after that i can use the now object, but i can't figure out how to repeat this process without reloading the page.
\n\nthanks!
\n","tags":"javascript node.js socket.io nowjs"},"6409972":{"id":6409972,"title":"How to dynamically set the grids CheckBox Selection Model in ExtJs4?","body":"This leads on from my previous question.
\nI initialize a grid with a CheckBox Selection Model, however when I reconfigure the grid the Check Box Selection Model visaully dissapears.
\nWhat I want to do is dynamically add a CheckBox Selection Model to a grid after reconfiguring the grids columns, and visually display it.
\n\nI have tried something like this:
\n\nvar sm = new Ext.selection.CheckboxModel();\ngrid.selModel = sm;\ngrid.doLayout();\n
\n","tags":"javascript extjs grid columns extjs4"},"6410184":{"id":6410184,"title":"jQuery.find().each(fn) is not working in Firefox","body":"I have AJAX call to one XML file and the source code is given below. It works perfectly in Chrome but is not working in Firefox. When doing debug I see that it doesn't enter to the cycle of $(response).find(\"simpleType\").each(function() in Firefox.
\n\nDoes anybody know what is the problem here in my code?
\n\n$.ajax({\n type:\"GET\",\n url:\"views/workspace/branching_forms/StudentModelDescription.xml\",\n dataType:\"xml\",\n error:function(XMLHttpRequest, textStatus, errorThrown){\n alert(\"error=\"+XMLHttpRequest+\" error2=\"+textStatus+\" error3=\"+errorThrown);\n },\n success:function(response){ \n var i=1;\n console.log(\"response=\"+response);\n $(response).find(\"simpleType\").each(function(){ \n adaptation_type_name[i]=$.trim($(this).find(\"documentation\").text()); \n var restriction = $(this).find(\"restriction[base=xs:string]\");\n j=1;\n var values=new Array(); \n $(restriction).find(\"enumeration\").each(function(){\n var tmp=$(this).attr(\"value\"); \n values[j] = tmp;\n j++;\n });\n adaptation_type_variables[i]=values; \n console.log(\"adaptation_type_name=\"+adaptation_type_name[i]+\", adaptation_type_variables=\"+adaptation_type_variables[i]);\n i++; \n }); \n for(var i=1;i<=adaptation_type_name.length;i++) \n $('#adaptation_type_dialog #branching_adaptation_type').append($(\"<option></option>\").attr(\"value\",i).text(adaptation_type_name[i]));\n\n }\n});\n
\n\nThe content of StudentModelDescription.xml is given below:
\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">\n <xs:simpleType name=\"browser\" id=\"context_browser\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Web Browser</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"Safari\" id=\"1\" />\n <xs:enumeration value=\"Google Chrome\" id=\"2\" />\n <xs:enumeration value=\"Opera\" id=\"3\" />\n <xs:enumeration value=\"Mozilla Firefox\" id=\"4\" />\n <xs:enumeration value=\"Internet Explorer\" id=\"5\" />\n </xs:restriction>\n </xs:simpleType> \n <xs:simpleType name=\"networktype\" id=\"context_networktype\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Network Type</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"ADSL2+/Cable (High capacity)\" id=\"1\" />\n <xs:enumeration value=\"ADSL / HSPA (Moderate capacity)\" id=\"2\" />\n <xs:enumeration value=\"Dialup / GPRS (Low capacity)\" id=\"3\" />\n </xs:restriction>\n </xs:simpleType>\n</xs:schema>\n
\n","tags":"javascript jquery xml firefox"},"6410224":{"id":6410224,"title":"to get value from database table into select box","body":"i m creating a combo box which gets value from mysql database table.\n here is a sample code which i m implementing but it will not populates selectbox values.
\n\n mydata +='<div class=\"content nodisplay\"><div class=\"row\"><div class=\"label\" style=\"font-size:22px;\">Subject</div><div class=\"data\">\n<select id=\"fillsubject\" name=\"fillsubject\">';\n$.post(document.URL,qstring,function(data){\n\n var subjects = $(data).filter('.subjects');\n\n $.each(subjects,function(index,value){\n var subid = $(this).attr('id');\n var subname = $(this).text();\n mydata += \"<option value='\"+subid+\"'>\"+subname+\"</option>\";\n //mydata += \"<option value='english'>english</option>\";\n });\n\n});\nmydata +='</select></div></div></div>'; \n
\n","tags":"javascript mysql php5"},"6411169":{"id":6411169,"title":"Javascript replace undefined error ends but not replace continues","body":"Friends i got success with this piece of code:
\n\nvar avidno = '800.123.1234';\nvar bodytext = document.body.innerHTML;\nvar newbodytext;\nfunction validate () {\nvar regex = /^\\(?([0-9]{3})\\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/;\n\nif (regex.test(avidno)) {\n alert('bingo');\n var avidno_new = '<span>'+avidno+'</span>';\n var newbodytext = bodytext.replace(new RegExp(avidno, \"g\"), avidno_new);\n document.body.innerHTML = newbodytext;\n // Valid international phone number\n} else {\n alert('uupss');\n // Invalid international phone number\n}\n}\nvalidate();\n
\n","tags":"javascript html replace body"},"6411194":{"id":6411194,"title":"Jquery plugin - Tree Context menu","body":"Can you suggest a context-menu plugin that supports nesting menu items? When clicking on an item, if the item has sub-items, it should open a secondary menu.
\n\nEDIT
\n\nLike this but for jquery
\n","tags":"javascript jquery plugins"},"6411282":{"id":6411282,"title":"How to lock scrolling of a web page temporarily?","body":"How can I lock scrolling of a webpage temporarily when a dialog box is displayed ? I have a dialog box within which I want to enable scrolling after deactivating scrolling from the overlayed webpage.
\n\nIs there a js command to temporarily disable scrolling ?
\n","tags":"javascript html"},"6411574":{"id":6411574,"title":"Resources that turns a javascript developer into a great javascript developer ?","body":"I am more and more working with javascript, especially with JQuery for web site and node.js for server side (really like node.js though) and I quite often struggle to understand the inner structure of the language (such as prototypes, asynchronous function, ...).
\n\nWhat are the best articles, or so, that could help a developer to leverage his competency in this language (that is really worth learning IMHO).
\n","tags":"javascript"},"6411636":{"id":6411636,"title":"Javascript slider problem","body":"Hi I am currently working on a script given to me by my boss and it is not working in all browsers except IE.
\n\nNow he is using the CSS property left to animate it so he has a variable which gets the current value of left. For example lets say left is equal to -100px
.
\n\nNow once it has this value it adds 10px
onto the value to make it move in from the left.
\n\nNow my issue lies with parseInt()
and the \"px\"
prefix at the end of the number. it keeps returning NaN
instead of the value of left.
\n\nDoes anyone know how to fix this problem?
\n\nThanks in advance
\n","tags":"javascript css nan parseint"},"6411637":{"id":6411637,"title":"Javascript count number of steps","body":"How can I count number of steps between different numbers.
\n\nI have a method that takes a number and runs a code snippet with the number. I need to see if the number is the number right next to the other or two steps, three steps, four steps over or below etc.
\n\nEx. I send a number of 1 to the method. The next number sent is 4. I then need to find out how many steps over one it is etc in this case 3 steps over 1 should be the result.
\n\nAny clues?
\n","tags":"javascript count script"},"6411778":{"id":6411778,"title":"Rails 3 plugin nested_form versus JavaScript appraoch for adding form fields dynamically in a nested form","body":"I am researching ways on how to dynamically add form fields for nested models and stumbled accross the nested_form plugin by ryanb. No doubt this is a a great piece of code, but I wondered why does it have to be so sophisticated?
\n\nExample: A form for creating / adding a project has one or more tasks assigned. The user can dynamically add more tasks by clicking on a add-task button. A project must have at least one task. Each task has a name and a description.
\n\nSo why not just:\n- When generating the html, sourround each set of task fields with a div given an ID such as \"dynamic_fields\"\n- When the user clicks the add-task button, call a JavaScript function via link_to_function to clone the dynamic_fields subtree. Insert the new set of fields at the bottom of the task list.\n- Via JavaScript, remove the values of the newly added fields and replace the child ID with something unique (Ryan suggests using a value based on the current time)
\n\nI am aware that the nested_forms plugin also works for deeper nesting structures, but given my simple use case with only one level of hierarchy, is the approach outlined above practical? Or am I missing something important? Any guidance on this topic is appreciated.
\n","tags":"javascript ruby-on-rails nested-forms"},"6411964":{"id":6411964,"title":"Should I rely on externally-hosted services?","body":"I am wondering over the dangers / difficulties in using external services like Google Chart in my production state website.
\n\nWith external services I mean them that you can't download and host on your own server.
\n\n(-) Potentially the Google service can be down when my site is up.
\n\n(+) I don't have to develop those particular systems for new browser technologies, hopefully Google will do that for me.
\n\n(-) Extra latency while my site fetch the data from the google servers.
\n\nWhat else? Is it worth spending time and money to develop my own systems to be more in control of things?
\n","tags":"php javascript web-development"},"6412119":{"id":6412119,"title":"show larger Image with CSS and onMouseOver","body":"I use this simple script :
\n\n<body>\n <script type=\"text/javascript\">\nfunction mouseOver()\n{\ndocument.getElementById(\"img1\").src =\"images/p2.jpg\";\n}\nfunction mouseOut()\n{\ndocument.getElementById(\"img1\").src =\"images/p1.jpg\";\n}\n</script>\n<div class=\"img\">\n <a target=\"_blank\" href=\"images/p1.jpg\"><img src=\"images/p1.jpg\" alt=\"Klematis\" width=\"110\" height=\"90\" id=\"img1\" onMouseOver= \"mouseOver()\" onMouseOut=\"mouseOut()\"/></a>\n <div class=\"desc\">Add a description of the image here</div>\n</div>\n
\n\nThe images are pretty big so I adjust them with width and height properties, I thought that if I just call the function I'll see the bigger image but it dosen't happen.So what can I do to see an enlarged image with onMouseOver?\n I'll add the style sheet in case it matters:
\n\n<style type=\"text/css\">\ndiv.img\n{\n margin: 2px;\n border: 1px solid #0000ff;\n height: auto;\n width: auto;\n float: left;\n text-align: center;\n}\ndiv.img img\n{\n display: inline;\n margin: 3px;\n border: 1px solid #ffffff;\n}\ndiv.img a:hover img {border: 1px solid #0000ff;}\ndiv.desc\n{\n text-align: center;\n font-weight: normal;\n width: 120px;\n margin: 2px;\n}\n</style>\n
\n\nP.S
\n\nDon't mind the <a href
thing I just use the raw code from w3 schools...
\n\nP.S Maybe I'll ask another question for this, the problem with the enlarged images is solved but now I want them to show in some kind of block cause now if I have even 4 iamges when i hover the last one the enlarged image goes far away from the starting location, and I want to make it just like gallery block and all images ot be shown there, wthout going outside the borders of the gallery.Any help or maybe another Qs better....
\n","tags":"javascript css"},"6412151":{"id":6412151,"title":"why does the bracket works in coffeescript when bugs came","body":"If i want to get a js code like this which compiles from coffeescript:
\n\n var sortableTodos = new Sortables(\"todo-list\", {\nconstrain: true,\nclone: true,\nhandle: \".todo-content\",\nonComplete: function(ele){\n sortableTodos.serialize(false, function(element, index){\n todo = Todos.get(element.getProperty(\"id\").replace(\"todo-\", \"\"));\n todo.save({\"order\": index});\n });\n}\n});\n
\n\nI can't write coffee code like below:
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:(ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n\n) \n )\n
\n\nbut the following works(it got brackets after onComplete)
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:((ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n )\n) \n ) \n
\n\nI don't know why?Is it a bug?
\n","tags":"javascript coffeescript"},"6412259":{"id":6412259,"title":"Prototype.js error - 'undefined' is null or not an object","body":"I am getting following error in Prototype.js
\n\n'undefined' is null or not an object line 5557 char 5\n
\n\nwhich is this:
\n\nvar respondersForEvent = registry.get(eventName);\n if (Object.isUndefined(respondersForEvent)) {\n respondersForEvent = [];\n registry.set(eventName, respondersForEvent);\n }\n
\n\nHow can i fix this?
\n","tags":"javascript prototypejs"},"6412334":{"id":6412334,"title":"jQuery \"drop\" and \"over\" are not firing on a droppable","body":"I was trying to improve my web-dev skills for work but got a bit carried away with jQuery's drag and drop feature. Unfortunately I can't get the \"drop\" or \"over\" events of the droppable to fire.
\n\nI didn't want to use a jQuery table drag/drop plugin so i have multiple div in a div in a td structures (all generated in $(document).ready). The middle div is to be the droppable and the inner most div is to be the draggable. The generated HTML looks like this:
\n\n<td class=\"vertical\">\n<div id=\"droppable3\" class=\"droppable ui-droppable\" style=\"width: 100%; height: 100%;\"\nover=\"function () { alert(\"working!\"); }\" \ndrop=\"function (event, ui) { \n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\" + firstDrag.id + \"\\nSecondDrag:\" + secondDrag.id\n + \"\\ndest Drop:\" + destDrop.id + \"\\nsourceDrop:\" + sourceDrop.id); }\">\n <div id=\"draggable3\" class=\"draggable ui-draggable\" \n style=\"width: 100%; height: 100%;\">\n </div>\n</div>\n</td>\n
\n\nand it is exactly the same in other TDs except for the ids.
\n\nNow the dragging seems to work fine; i can drag that inner div out and it will revert back if i don't put it on an appropriate droppable or just stick there if i do but it never triggers the \"over\" or \"drop\" events. The debugger line in that code is never hit.
\n\nHere is how i'm setting up the draggable/droppable:
\n\nfunction getTD(claz){\nvar td = jQuery(\"<td/>\",{'class': claz});\nvar droppable = jQuery(\"<div/>\",{\n 'class': 'droppable',\n width: '100%',\n height:'100%',\n id: \"droppable\"+ids[index],\n over: function() {\n alert('working!');\n },\n drop: function(event,ui){\n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\"+firstDrag.id +\"\\nSecondDrag:\"+secondDrag.id\n +\"\\ndest Drop:\"+destDrop.id +\"\\nsourceDrop:\"+sourceDrop.id);\n\n }\n });\n var draggable = jQuery(\"<div/>\",{\n 'class': 'draggable',\n width: '100%',\n height:'100%',\n id: \"draggable\"+ids[index], \n });\n\n draggable.draggable({\n revert: 'invalid'\n });\n droppable.droppable({\n accept: \".draggable\"\n });\n index++;\n droppable.append(draggable);\n td.append(droppable);\n return td;\n
\n\n}
\n\nBasically what i am trying to achieve is swappable tiles in a table and i'm pretty sure the js in the event handler is rubbish but we'll deal with that once it's firing.
\n\nOh and im using:\nhttps://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js\nhttps://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js
\n\nAny comments would be appreciated.\nThanks :)
\n\nEDIT:
\n\nI was being really stupid. I was putting the \"drop\" and \"over\" events in the attributes of the element, not the options of the droppable!
\n","tags":"javascript jquery jquery-ui droppable"},"6412428":{"id":6412428,"title":"Login page redirection in Java and Javascript","body":"Ok, so I've got an interesting case of login page redirection going on.
\nMy webservice has a login page (login.html) with some javascript to handle logging in and redirecting to a hardcoded 'default' page. The webservice is written in Java with a servlet filter handling redirection if a user is unauthenticated (so if a user tries to access domain/statistics
without being logged in, they are directed to domain/login.html
). The redirection from the protected services works: I can redirect to the login page and once a user is authenticated, redirect them to a default page. I am having issues, however, redirecting to the previous page.
\nI know this is usually handled with the argument document.referrer
in the Javascript, which I have tried, but due to the Java's redirection with response.sendRedirect
, the Referer header is not sent.
\n\nHow can I get these two aspects to redirect to the previously called page? Is it something I need to add on the Javascript side, the Java side, or both?
\n","tags":"java javascript web-services redirect login"},"6412566":{"id":6412566,"title":"Determining whether html5 geolocation function is available AND whether it knows where you are?","body":"I'm experimenting with HTML5 geolocation, and embedded a small test script into a page to return my present co-ordinates.
\n\nThe current application I have in mind for using this is as a 'nice to have' feature on site i'm working on - it includes a 'find my nearest' lookup on some locations, and I figured that if you had a location aware device, I could easily include 'to my current location' alongside the normal 'to my postal/zip code'. I'm not interested in loading a bunch of extra libraries and fallbacks for such a small and non-essential feature. If you have a capable device, great, if not, you won't ever see the option.
\n\nSo I tried the script on an iPad, and as expected - I was prompted for permission to use my present location, to which I agreed, and my test script returned my present location. Total win.
\n\nI tried the same on my desktop, since i'm using Firefox 4 and its a HTML5 compliant browser. It asked me if I wanted to share my location, and then promptly returned the error that it didn't know my location (because its a desktop computer and has no GPS). I thought this rendered the original question of 'do you want to share your location' somewhat pointless - it could needlessly annoy people who might have thought they could use a feature that they in fact can't.
\n\nSo, what is a reliable technique to detect if:
\n\n\n a) The browser can access HTML5 geolocation
\n \n AND
\n \n b) The browser knows or can find out what the users location is.
\n
\n\nWithout actually calling the geolocation function beforehand, and asking the user an annoying, and unnecessary question?
\n\nFor a) i'm simply using:
\n\nif (navigator.geolocation) {\n navigator.geolocation.getCurrentPosition(showCoords,handleGeoErrors); \n}\n
\n\nBut for b) the only answer I have involves having called getCurrentPosition, which triggers the question to the user.
\n\nAny thoughts on this, anyone?
\n","tags":"javascript html html5 geolocation"},"6412589":{"id":6412589,"title":"Set length property of JavaScript object","body":"Let's say I have a JavaScript object:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n };\n this.add = function(x){\n A.push(x);\n };\n this.remove = function(){\n return A.pop();\n };\n};\n
\n\nI can use it like so:
\n\nvar x = new a();\nx.add(3);\nx.add(4);\nalert(x.length()); // 2\nalert(x.remove()); // 4\nalert(x.length()); // 1\n
\n\nI was trying to make .length
not a function, so I could access it like this: x.length
, but I've had no luck in getting this to work.
\n\nI tried this, but it outputs 0
, because that's the length of A
at the time:
\n\nfunction a(){\n var A = [];\n this.length = A.length;\n //rest of the function...\n};\n
\n\nI also tried this, and it also outputs 0
:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n }();\n //rest of the function...\n};\n
\n\nHow do I get x.length
to output the correct length of the array inside in the object?
\n","tags":"javascript"},"6412607":{"id":6412607,"title":"Passing argument to function. What's wrong?","body":"In this jsFiddle
\n\nam I trying to pass an argument to a function, but it doesn't receive the argument or it isn't executed.
\n\n<a href=\"javascript:addRemove('7249');\">Details</a>\n
\n\nJQuery
\n\n$(document).ready(function() {\n\n function addRemove(u) {\n alert(u);\n }\n\n});\n
\n\nAny ideas what's wrong and how to fix it?
\n","tags":"javascript jquery"},"6412632":{"id":6412632,"title":"How to find and modify an asp.net control with JavaScript?","body":"This has been bothering me for quite some time. I'm simply trying to change the value of a textbox defined in asp.net, which normally works when it is not within a LoggedInTemplate.
\n\nI've searched everywhere on the net and even here, but the only thing I can find close to doing what I need is here Finding an asp:button and asp:textbox in Javascript. Unfortunately that doesn't work. Here's what I have so far:
\n\n<head id=\"Head1\" runat=\"server\">\n <script src=\"../../scripts/webeffects.js\" type=\"text/javascript\" language=\"javascript\"></script>\n</head>\n<asp:LoginView ID=\"LoginView1\" runat=\"server\">\n <LoggedInTemplate>\n <div class=\"lotto_pick_container\">\n <table runat=\"server\" id=\"tblLottoPick\">\n <tr><th colspan=\"3\">Pick a Lotto Number</th></tr>\n <tr>\n <td><asp:TextBox ID=\"txt1stNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt2ndNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt3rdNum\" runat=\"server\"></asp:TextBox></td>\n </tr>\n <tr>\n <td><asp:Button ID=\"cmdSubmitPick\" runat=\"server\" Text=\"Submit Lotto Number\" \n onclientclick=\"return validateLottoPicks()\" /></td>\n </tr>\n</table>\n </div>\n </LoggedInTemplate>\n</asp:LoginView>\n
\n\nRight now I'm trying to use an external js script to find a textbox and modify it with an arbitrary value of 12, just so that I know it can work:
\n\nfunction validateLottoPicks() {\n document.getElementById('<%= LoginView1.FindControl(\"txt2ndNum\").ClientID %>').value = 12\n}\n
\n\nWhen I debug this with Firebug it seems all my other code works, except for this one function. I have verified the function gets called, it's just this line that doesn't work. Can someone please provide some guidance? I'll send milk and cookies.
\n\nUpdate:
\n\nThanks for all the help so far! I got some pretty quick responses.\n
\n
I removed the visible=\"false\" portion of the html, but no luck.\n
I also tried using tblLottoPick.FindControl, but no luck.\n
I added my header which includes the script that contains the function I am trying to run.\n
Using the rendered id, document.getElementById(\"LoginView1_txt2ndNum\").value = 12, works fine.
\n","tags":"javascript asp.net"},"6412720":{"id":6412720,"title":"Need suggestions on interactive Javascript based map","body":"can anyone help identify the Javascript library used for interactive maps on http://www.africatravelresource.com/
\n\nOr is it a custom solution? Any suggestions for something similar?
\n","tags":"javascript map"},"6412753":{"id":6412753,"title":"Ajax RSS reader","body":"I am wanting to write a small application that can pull RSS feeds from any RSS feed url. if anyone could give me very basic help on how to achieve this?
\n\nim only really starting out in the world on AJAX and this kinda stuff so any help would be appreciated.
\n\nThanks
\n\nEDIT :- I am only trying to do this with Jquery and Ajax, I dont want to use PHP or any other server side code.
\n","tags":"javascript jquery ajax rss"},"6412863":{"id":6412863,"title":"jQuery: Two elements using the same event function.","body":"What is the best way to share one function between two different event handlers? I want the same outcome but some situation dependent variables will need to be defined within the function depending on which element was clicked.
\n\nI could hack a solution but want to know the best practice for such a scenario. Simple problem must have a simple answer...
\n\nEXAMPLE
\n\nvar onMyEvent = function(e){\n if(click triggered from 'a'){\n //do that \n } \n if(click triggered from 'div'){\n //do that\n } \n}\n\n\n$('a').click(onMyEvent);\n$('div').click(onMyEvent);\n
\n\nFIDDLE: http://jsfiddle.net/f6C92/
\n","tags":"javascript jquery events javascript-events"},"6412913":{"id":6412913,"title":"Javascript return false, still submits form","body":"I have a form with JS validation, upon there being an error, the submit button should 'grey-out' and the form should not be submitted, however the last couple of functions seem to submit the form even though they pop the alert box!?!?!
\n\nButton code:
\n\n<input type=\"submit\" name=\"button\" id=\"button\" \n onclick='return formvalidation();' value=\"Next\" />\n
\n\nNon Working Function Example:
\n\nfunction BlankSite() {\n var SiteNum= document.getElementsByName(\"sitesinput\")[0].value;\n if ((SiteNum == \"\") || (SiteNum == 0))\n {\n alert(\"You have not selected an amount of sites.\")\n document.forms[0].button.disabled=true;\n return false;\n }\n }\n
\n\nFunction initiator:
\n\nfunction formvalidation()\n{\n ZeroPhones();\n BlankPC();\n BlankSite();\n BlankSeats();\n phone_change();\n}// End of formvalidation\n
\n\nThis is very strange and I have tried various work arounds all to no avail!
\n\nThanks,\nB.
\n","tags":"javascript forms"},"6412993":{"id":6412993,"title":"How do I remove the hyphens in this string (more complex than it sounds!)","body":"I must first confess that I understand very little JS and this is a bastardised version of some code I picked up elsewhere. Essentially it runs through a collection of list-items and extracts their class names (which are being populated by a CMS to reflect for example \"Brand\" or \"Manufacturer\") builds them into a string, splits the string into arrays and dedupes them. It then creates a list of unique check boxes based on the class name which, when selected or deselected, filters the list-items on the page using jquery.
\n\nMy problem is, that because the string of class names is being split by a 'space' if the value of the class consists of multiple-words the values populating the class must be hyphenated.
\n\nBUT... when the label for the checkbox is generated on the page by the script I wonder if it is possible to remove the hyphen without upsetting the logic generating it.
\n\nHere is the code I have so far, if you drop this into an HTML file you will see how it works (the jquery file is hosted elsewhere).
\n\nAny help would be highly appreciated!
\n\n<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"> \n<html>\n<head>\n\n<script type=\"text/javascript\" src=\"http://www.chewbz.com/jquery-1.4.3.min.js\"></script>\n<script type=\"text/javascript\"> \n/**\n * Removes duplicates in the array 'a'\n */\nfunction unique(a) {\n tmp = new Array(0);\n for(i=0;i<a.length;i++){\n if(!contains(tmp, a[i])){\n tmp.length+=1;\n tmp[tmp.length-1]=a[i];\n }\n }\n return tmp;\n}\n\n/**\n * Returns true if 's' is contained in the array 'a'\n */\n\nfunction contains(a, e) {\n for(j=0;j<a.length;j++)if(a[j]==e)return true;\n return false;\n}\n\n$(document).ready(function () {\n // create a string of class names, \n var stringOfClassNames = '';\n\n // grab the class name of each list item to build that string\n $('.filterThis > li').each( function (i) {\n var thisClassString = $(this).attr('class');\n stringOfClassNames = stringOfClassNames +' '+ thisClassString\n });\n\n // Trim spaces from the ends of that string:\n stringOfClassNames = jQuery.trim(stringOfClassNames);\n\n // convert the string to an array.\n var arrayClasses = stringOfClassNames.split(' ');\n\n // pull out only unique values from that array\n arrayUniqueClasses = (unique(arrayClasses));\n\n // we only want to create filters if there are multiple classes\n if (arrayUniqueClasses.length > 1) {\n\n // create box for filters\n $('<div class=\"filters\" id=\"filters\"><\\/div>').insertBefore('.filterThis');\n\n // create the filter checkboxes based on all the class names\n $.each(arrayUniqueClasses, function() {\n $('<div class=\"filter-options\"><input type=\"checkbox\" checked=\"checked\" value=\"'+this+'\" class=\"filter-checkbox\" id=\"filterID'+this+'\" />'+this+'<\\/div>').appendTo('.filters');\n });\n\n // create a 'show all' checkbox\n $('<div class=\"filter-options-all\"><input type=\"checkbox\" checked=\"checked\" value=\"filterAll\" class=\"filter-checkbox\" id=\"filterIDall\" />Show All<\\/div>').appendTo('.filters');\n\n // create a close button\n $('<img src=\"\" id=\"filter-close\" onClick=\"document.getElementById(\\'filters\\').style.display = \\'none\\'\"><\\/div>').appendTo('.filters');\n\n // the filter part\n $('.filters input').click( function() {\n var value= $(this).val();\n if (value == 'filterAll') {\n if ($(this).is(':checked')) {\n $('.filters input').attr('checked','checked');\n $('.filterThis li').fadeIn();\n } else {\n var one=1;\n }\n } else {\n stringValue = '.filterThis > li.'+value;\n if ($(this).is(':checked')) {\n $(stringValue).fadeIn();\n } else {\n $(stringValue).fadeOut();\n $('.filters #filterIDall').removeAttr('checked');\n }\n }\n });\n }\n});\n</script> \n\n</head>\n<body>\n\n<style>\n<!-- \nul.filterThis {\nlist-style-type:none;\n}\nul.filterThis li {\nwidth:200px;height:200px;background:#eee;border:solid 1px #ccc;float:left;margin:10px;\n}\n-->\n</style>\n\n<ul class=\"filterThis\">\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Large-Jars\">\n <div class=\"product-container\">\n Large Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n</ul>\n\n\n</body>\n\n</html>\n
\n","tags":"javascript string-manipulation"},"6412997":{"id":6412997,"title":"Add divs between divs in jQuery","body":"I'm working with a great jQuery plugin (booklet), and pages of the booklet are defined as so:
\n\n<div id=\"mybook2\">\n <div class=\"b-load\">\n <div> \n <h3>Yay, Page 1!</h3>\n </div>\n <div> \n <h3>Yay, Page 2!</h3>\n </div>\n <div> \n <h3>Yay, Page 3!</h3>\n </div>\n <div> \n <h3>Yay, Page 4!</h3>\n </div>\n </div>\n</div>\n
\n\nI want to add a div before each one of the pages (all the divs in div class=\"b-load\").
\n\nHow would I add it? .prepend? I'm not sure what to do here, I've never worked with jQuery or javascript at all, really.
\n","tags":"javascript jquery jquery-plugins"},"6413018":{"id":6413018,"title":"Internet Explorer: how to escape extra carriage return after editing Textarea?","body":"We have a multiline textarea in Internet Explorer.
\n\nIf we check it's content after the next then everything is correct (there are no extra carriage returns in textarea):
\n\ndocument.getElementById( 'text-area' ).value = \"Hello,\\nWorld!\";\n
\n\nBut if we set caret in the beginning position of the second line (in Internet Explorer, not in the code) and press tab key there is extra carriage character (there is a string dump on keydown below):
\n\nvalue[0]='H'\nvalue[1]='e'\nvalue[2]='l'\nvalue[3]='l'\nvalue[4]='o'\nvalue[5]=','\nvalue[6]='\\r'\nvalue[7]='\\n'\nvalue[8]='W'\nvalue[9]='o'\nvalue[10]='r'\nvalue[11]='l'\nvalue[12]='d'\nvalue[13]='!'\n
\n\nIt's a problem because other browsers don't insert extra carriage return.
\n\nDo you know how to prevent this in Internet Explorer? With help of CSS or Javascript.
\n","tags":"javascript jquery css internet-explorer"},"6413036":{"id":6413036,"title":"Get current clipboard content?","body":"I'd like to know a way to make my script detect the content of the clipboard and paste it into a text field when the page is opened, with no input from the user. How can it be done?
\n","tags":"javascript content clipboard paste"},"6413183":{"id":6413183,"title":"Manipulate Select Multiple List Setup On Page Load","body":"I have the following two select (multiple lists) which I'm trying to setup as a shuttle by where I provide the user an \"Available List\" on the left which they can select from, which then gets transported to the right select list, which is my \"Assigned List\".
\n\nThe HTML code is as follows:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n\n<select multiple=\"multiple\" name=\"assign_list\" size=\"7\" style=\"width:250px;\" id=\"ASSIGNED_LIST\">\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n
\n\nThrough the use of jQuery, how could I possibly remove from the AVAILABLE_LIST, the options that have been selected and are now in the ASSIGNED_LIST?
\n\nI need to some how perform on the option values only (AVAILABLE_LIST minus ASSIGNED_LIST).
\n\nSo based on the above, the AVAILABLE_LIST would then look like this:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n</select>\n
\n\n**NOTE:Just to make myself clear, I already have the above data setup when entering my page, that is, there are already values in the \"Assigned List\" on the right.
\n\nOn entry when presenting this page with the two select lists to the user, I want to programmatically perform the minus between the two sets in the background. There is no human interaction required as the selection has already been made.
\n\nJust wondering if this is possible?
\n\nThanks.
\n","tags":"javascript jquery"},"6413240":{"id":6413240,"title":"seperate validation of two forms with jquery","body":"I have two forms in one page and i would like to validate each form seperatly DEPENDING on what the user fills. So basically the user must fill only ONE form and NOT both of them...SO basically if the user fills up form number 1, the validation will be on form 1 ONLY..
\n\nBelow please find the code of both forms:
\n\n <form action=\"/registration.flow\" method=\"post\" id=\"formElem1\" name=\"formElem1\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n\n\n<form action=\"/registration.flow\" method=\"post\" id=\"formElem2\" name=\"formElem2\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n
\n\nCan someone help me please?? THANKS
\n","tags":"javascript jquery"},"6413244":{"id":6413244,"title":"How to set the google-maps marker as it is showed on the original website","body":"Try to Search the first address on google maps, and click on it :
\n\nit will show us a marker with a photo (if avaiable), description, and some links.\nI'd like to add the same marker in my web application.
\n\nWhich API I need to use? At the moment I just make my own string and append it :
\n\nvar finestra='';\nfinestra += '<div style=\"position:relative;width:200px;\">';\nfinestra += '<div style=\"position:relative;float:left; color:#000000;\" class=canale>';\nfinestra += 'Archimede<br />Via Brennero,12<br />38100 Trento(TN)<br />c.+39 555555555';\nfinestra += '</div>';\nfinestra += '</div>';\n\nvar marker = createMarker(map.getCenter());\nmap.setCenter(new GLatLng(46.084989,11.118851), 16, G_NORMAL_MAP);\nmap.addOverlay(marker);\nmarker.openInfoWindowHtml(finestra); \n
\n\nBut I need the same marker as google maps show on the original website.\nIs it possible?
\n","tags":"javascript google-maps marker"},"6413265":{"id":6413265,"title":"Appending to instead of below . What's wrong?","body":"In this jsFiddle
\n\nhttp://jsfiddle.net/littlesandra88/tZqYX/
\n\nwould I like that a new <tr>
is inserted below the one where \"Details\" is clicked.
\n\nI do
\n\n$('.row').append(\"<tr><td>It worked</td></tr>\");\n
\n\nbut this results in
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n<tr><td>It worked</td></tr></tr>\n
\n\nwhere I was hoping for
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n</tr>\n<tr><td>It worked</td></tr>\n
\n\nAny idea how to fix this?
\n","tags":"javascript jquery"},"6413327":{"id":6413327,"title":"DOJO include files a directory back","body":"I have dojo files in resources/js/dojo1.6/dojo/dojo.js
\n\nI have another file here resources/js/pages/file1.js
\n\nThis file requires another file which is located at resources/js/folder/file2.js
\n\nThis is how I am including it dojo.require('folder.file2');
\n\nSo these three folder are in hirarchy
\n\ndojo1.6, pages and folder
\n\nWhen I run application
\n\nI got the following error
\n\nFile not found: /resources/js/dojo1.6/folder/file2.js\n
\n\nHow can I overcome this error.
\n","tags":"javascript dojo include-path dojo.data"},"6413356":{"id":6413356,"title":"What is the \"this\" in an example JS function?","body":"Below is the entire contents of a JS/JQuery file. I didn't write it, but I'm trying to add on to it. I am having trouble understanding what this
is referring to. I haven't seen functions set up in this style before (SmartPhone = function() {}
)
\n\nSmartPhone = function()\n{\n this.miniMap = new GameModeMap();\n\n this.init = function()\n {\n var self=this;\n var $PhoneContainer = $(\"#PhoneContainer\");\n $PhoneContainer.append(\"<div id='PhoneScreen'></div>\");\n $PhoneContainer.append(\"<div class='PhoneButton'></div>\");\n $('.PhoneButton').click(function(){self.toggleClicked()});\n\n this.miniMap.init(\"#PhoneScreen\");\n\n //append the appMenu\n $(\"#PhoneScreen\").append(\"<div id='AppMenu'></div>\");\n $(\"#AppMenu\").hide();\n initMenu();\n //toggleClicked();\n }\n\n this.toggleClicked = function() \n {\n console.log(this);\n $('#PhoneContainer').toggleClass ('clicked');\n $('#PhoneScreen').toggleClass ('vertical');\n this.miniMap.toggle();\n $('#AppMenu').toggle();\n }\n\n this.init();\n}\n
\n","tags":"javascript jquery this"},"6413416":{"id":6413416,"title":"How to sort page elements by z-index while debugging?","body":"I'm debugging a JavaScript method on an ASP.NET 3.5 web site using jQuery in Visual Studio 2008. As a sanity check, I would like to look at a list of the page elements sorted by z-index. What's a good/easy way to do this? I would prefer an expression that I can input into the Watch window, but I'm open to other suggestions.
\n","tags":"javascript jquery visual-studio-2008"},"6413440":{"id":6413440,"title":"Jquery: passing variable to the next chained function, is this the correct way?","body":"I want to know if this is correct.
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n}).blur(function(length){\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nAbove i've simplified my code, im just checking if length == 0
on focus and blur for my input. notice how I declared length
in focus, but not in blur, but i added the variable name inside .blur(function(length){
. Is this the better way to get length
accessible in .blur
without having to re-declare var length = $(this).val().length;
in .blur?
\n\nas opposed to this:
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n})\n\n$('.myfilter').blur(function(length){\n var length = $(this).val().length;\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nthe first code block is the better way to do this?
\n","tags":"javascript jquery function variables passing"},"6413444":{"id":6413444,"title":"Regex Comma Separated Emails","body":"I am trying to get this Regex statement to work
\n\n^([_a-z0-9-]+(\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*(\\.[a-z]{2,3})+(\\s?[,]\\s?|$))+$
\n\nfor a string of comma separated emails in a textbox
using jQuery('#textbox').val();
which passes the values into the Regex statement to find errors for a string like:
\n\n\"test@test.com, test1@test.com,test2@test.com\"
\n\nBut for some reason it is returning an error. I tried running it through http://regexpal.com/ but i'm unsure ?
\n\nNB: This is just a basic client-side test. I validate emails via the MailClass
on the server-side using .NET4.0 - so don't jump down my throat re-this. The aim here is to eliminate simple errors.
\n\nEscaped Version:
\n\n^([_a-z0-9-]+(\\\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\\\.[a-z0-9-]+)*(\\\\.[a-z]{2,3})+(\\\\s?[,]\\\\s?|$))+$
\n","tags":"javascript regex comma"},"6413512":{"id":6413512,"title":"Javascript: Weird \"getElementById\"","body":"I have a function that populates a pages with something like this
\n\n<span id=\"span_title_'+result_no+'\">'+title+'</span>\n
\n\nand then I have another function that has this:
\n\n document.getElementById(\"span_title_\"+which_table).innerHTML=\"asg\";\nalert(document.getElementById(\"span_title_\"+which_table).value);\n
\n\nThe strange thing is the first (innerHTML) call works perfectly, the second one, the alert, gives me \"undefined
\"
\n\nAny idea why this is?
\n","tags":"javascript getelementbyid"},"6413523":{"id":6413523,"title":"complex problem with setTimeout, clearTimeout, and javascript","body":"I am a bit of a noob at Javascript and am writing an \"autoresult\" script that automatically gets the results of an as the user is typing. However, because the PHP backend is slow, I want the script to check and see if it has been 1 second since the last keyup. That way, the PHP backend won't be called unless the user is done typing. My idea was to use setTimeout and clearTimeout to handle this. However, my script doesn't work. Here is the input that calls the script:
\n\n<input type=\"text\" id=\"inputbox\" onkeyup=\"lookup_input(this.value,0);\" />\n
\n\n\"0\" is a flag used to check whether a Timeout has been set. Here is the script:
\n\nvar timeOut1;\n\nfunction showQuery(input_myinput2) { \n $.post(\"mybackendfile.php\", {queryString: input_myinput2}, function(data){\n if(data.length >0) {\n $('#mydiv').html(data); //php backend stuff, don't worry about this\n }\n });\n} \nfunction lookup_input(input_myinput,flag) {\n if(input_myinput.length == 0) {\n $('#mydiv').hide(); //check to see if there is an input, and if not, hide the div that displays autoresults\n } \n else { \n //the flag checks to see if the Timeout has been set\n\n if(!flag) { \n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000);\n //change the flag to \"1\" so that if another key is pressed it will throw the else statement, and if the key is pressed soon enough, it will clear the Timeout\n $('#inputbox').onkeyup('lookup_input(this.value,1)'); \n $('#mydiv').show();\n $('#mydiv').html('Searching... ');\n }\n else { //if timeout has been set then and next key has been pressed\n clearTimeout(timeOut1);\n $('#mydiv').html('Searching... ');\n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000); \n }\n }\n} \n
\n\nany suggestions on how to access the showQuery function correctly and how to get this script to work? also, any suggestions on another way to do the autoresult stall besides using setTimeout/clearTimeout? thanks!
\n","tags":"javascript settimeout autosuggest"},"6413541":{"id":6413541,"title":"Put an image on Google map","body":"I am creating a web page which shows the Google map using java script. I did this part now i have to pun an image on that map as a icon.Would you please tell me how will i able to do that?
\n\n\n\n
\n\n<script language=\"javascript\">\n var lat=1067;\n var lon=-110;\n\n function load() {\n if (GBrowserIsCompatible()) {\n var map = new GMap2(document.getElementById(\"map\"));\n map.setCenter(new GLatLng(lat, lon), 13);\n }\n }\n function map(position) {\n lat = position.coords.latitude;\n lon = position.coords.longitude;\n load();\n }\n function get_location() {\n navigator.geolocation.getCurrentPosition(map);\n }\n </script>\n
\n\n\n\nSearch
\n\n\n\nThanks\nAmit Pal
\n","tags":"javascript google-maps google"},"6413549":{"id":6413549,"title":"Facebook uid scripts","body":"is there an existing java script to enable admins of trade pages to scan fb uids for know scammers, so we can ban known scammers ids before they managed to join or scam on newer trade pages? im not a scripter in any way but do admin a trade page and as far as i know there is a script but only for sale from another trade page, i was hopeing to get it free, we are growing daily and there are larger sites with larger banned scammers we want to be able to check for these id
sd and ban nefore they can scam on our group page, thank you for any info you can give
\n","tags":"javascript"},"6413720":{"id":6413720,"title":"facebook wall post message with js from innerhtml","body":"Three divs nested in one
\n\n<div id=\"fulltxt\">\n<div id='action'>txt1 </div>\n<div id='reason'> txt2 </div>\n<div id=\"party\"> txt3 </div>\n</div>\n
\n\nusing encodeURIComponent I want to use all the text as a message to send to users wall when they click my \"send to facebook\" link
\n\nThis is in my
\n\n<script>\n // A function to post on the users wall\n function wallPost() {\n FB.ui(\n {\n method: 'feed',\n name: 'example',\n link: 'http://www.example.com',\n picture: 'http://www.example.com/logo.png',\n caption: 'funny example',\n description: 'This was posted from example.com.',\n message: ''\n },\n function(response) {\n if (response && response.post_id) {\n document.getElementById('message').innerHTML = 'Thanks for sharing!';\n } else {\n document.getElementById('message').innerHTML = 'Hey, you didn\\'t share!';\n }\n }\n );\n }\n</script>\n
\n\nThis is before my closing body tag
\n\n<div id=\"fb-root\"></div>\n<script src=\"https://connect.facebook.net/he_IL/all.js\"></script>\n<script>\n FB.init({\n appId : 'number goes here',\n status : true, // check login status\n cookie : true, // enable cookies to allow the server to access the session\n xfbml : true // parse XFBML\n });\n</script>\n
\n\nThis is the link
\n\n<p id=\"message\">\n <a href=\"#\" onclick=\"wallPost();\">Share Me!</a>\n</p>\n
\n\nSo what I need is that when the link is clicked the message changes to the content of fulltxt and passes to facebook
\n\nhow do i change the message in the wallpost function to the dynamically created content in the fulltxt div
\n","tags":"javascript facebook innerhtml getelementbyid"},"6413732":{"id":6413732,"title":"Why won't this web page finish loading?","body":"If I run this code, why doesn't the page ever finish loading? It will always show connecting on my browser tab.
\n\nIt is a simple javascript which will prompt an alert box and change the entire document to the word testing.
\n\nJavascript - testQuery.js
\n\n(function (window, undefined) {\n\nvar testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n}\n\n\ntestQuery.alertMessage = function () {\n alert(\"alert\");\n document.write(\"testing\");\n};\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\nHTML - testQuery.html
\n\n<html>\n<head>\n\n<script src=\"testQuery.js\"></script>\n<script>\n\nfunction onClick() {\n\ntestQuery.alertMessage();\n\n}\n\n</script>\n</head>\n
\n\n\n\n\n\n\n
\n","tags":"javascript firefox browser"},"6413744":{"id":6413744,"title":"Looking to access 16-bit image data in Javascript/WebGL","body":"I'm trying to download 16-bit image data from a server and push it into a WebGL texture without browser plug-ins. texImage2d will work with: ImageData, HTMLImageElement, HTMLCanvasElement, or HTMLVideoElement. I'm looking for some javascript (a library or code sample) which can decode 16-bit TIFF or similar (hdf5, etc.) image data into one of these object types.
\n\nI have no problem doing this is 8-bit per channel RGB by using an to load a PNG but this doesn't work with 16-bit per channel data since there aren't any \"standard\" browser supported image formats which are 16-bit.
\n","tags":"javascript image-processing webgl"},"6413778":{"id":6413778,"title":"javascript: Problem with dynamically adding xsl-stylesheet to XML Data","body":"I'm trying to write my first Firefoy-Eytension. The extension is supposed to display FOAF-Files in a nice way using XSLT. Right now I just wan't to add the XSL Stylesheet to the rdf file when I press a button. The function is called but the presentation of the rdf-file does not change.
\n\nfunction loadXMLDoc(dname)\n{\n if (window.XMLHttpRequest)\n {\n xhttp=new XMLHttpRequest();\n }\n else\n {\n xhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n xhttp.open(\"GET\",dname,false);\n xhttp.send(\"\");\n return xhttp.responseXML;\n}\n\nfunction displayMyResult()\n{\n alert(\"test\")\n xml=loadXMLDoc(\"http://www.example.com/me.rdf\");\n xsl=loadXMLDoc(\"http://www.example.com/test.xsl\");\n if (window.ActiveXObject)\n {\n ex=xml.transformNode(xsl);\n content.document.location.replace(ex)\n }\n // code for Mozilla, Firefox, Opera, etc.\n else if (document.implementation && document.implementation.createDocument)\n {\n xsltProcessor=new XSLTProcessor();\n xsltProcessor.importStylesheet(xsl);\n resultDocument = xsltProcessor.transformToFragment(xml,document);\n content.document.location.replace(ex)\n }\n}\n
\n\nThe first function loadXMLDoc is copied from another post here, and should probably work. The Probem is in the displayMyResult Method. The test-Alert confirms, that the function is called but the me.rdf file is not displayed any different.
\n\nI belive that the line content.document.location.replace(ex) is wrong but have not found anything on the web that would explain to me what to use instead.
\n\nCan anybody tell me how to load the XLST-Stylesheet to present the RDF File?
\n","tags":"javascript xml xslt firefox-addon"},"6413881":{"id":6413881,"title":"Setting a maximum and minimum value for text box","body":"I own a canvas website and want my customers to be able to enter a custom length of the canvas within a set range.
\n\nSay the range for the product is:
\n\n\n- Minimum: 10 cm
\n- Maximum: 200 cm
\n
\n\nThen in the text box they can enter any number between that range, but if they enter \"215\" then it should automatically go down to \"200\". Likewise if they enter \"7\" then it should automatically go up to \"10\"
\n","tags":"php javascript"},"6413889":{"id":6413889,"title":"Use JavaScript to store and return user info","body":"I'm looking for a way to have users fill out a form and then print their information through the entire site (Like when you sign in to StackOverflow, your name changes on the top and it retains the information as you navigate the rest of the site). I'm thinking it's something to do with placing \"onClick\" on the submit button, but I need the information to be carried throughout the pages.
\n\n<form name=\"input\" action=\"html_form_action.asp\" method=\"get\">\nFirst name: <input type=\"text\" name=\"FirstName\" value=\"Mickey\" /><br />\nLast name: <input type=\"text\" name=\"LastName\" value=\"Mouse\" /><br />\n<input type=\"submit\" value=\"Submit\" />\n</form> \n
\n\nThanks in advance.
\n","tags":"javascript forms user"},"6413908":{"id":6413908,"title":"Simple XMLHttpRequest (Google Weather)","body":"Hello I want to get xml from Google Weather
\n\nvar xmlhttp;\n\nif (window.XMLHttpRequest)\n {// code for IE7+, Firefox, Chrome, Opera, Safari\n xmlhttp= new XMLHttpRequest();\n }\nelse\n {// code for IE6, IE5\n xmlhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n\n xmlhttp.open(\"GET\", \"http://www.google.com/ig/api?weather=london&hl=en\", true);\n\nxmlhttp.send(null);\n\nxmlDoc=xmlhttp.responseXML;\n
\n\nIt`s not working . Thanks
\n","tags":"javascript xmlhttprequest google-weather-api"},"6413944":{"id":6413944,"title":"Changing content of a webpage using Ajax","body":"Is it possible to change the content of a webpage using ajax?\nMy need is to actually change the options of a selection. \nFor example my x123.com/setting.html
\n\n<html>\n<head>\n <meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\">\n <title>Webpage</title> \n <script>\n function save_changes() {\n //save the selection\n }\n </script>\n\n</head> \n<body>\n <select name=\"\" multiple>\n <option value=\"123\">123</option>\n <option value=\"456\">456</option>\n </select> \n <input type=\"button\" name=\"Submit Dude\" onclick='save_changes()'>\n</body> \n</html>\n
\n\nI want to give a request from x123.com/123.html
and reload the current page(x123.com/123.html
) so that the changes in x123.com/setting.html
are actually reflected in this one.
\n\nLemme know if my explanation is not clear.
\n","tags":"javascript ajax jquery-ajax"},"6413951":{"id":6413951,"title":"How do I update my model object before a create/update?","body":"It's me the big rails newbie. I have another problem.
\n\nThis is my partial for _care_point.html.erb
\n\n<div id='<%=dom_id(care_point) %>' class='draggable node_chin'>\n <div id=<%=\"node_#{care_point.id}\" %> class='node'><%= care_point.body %>\n </div>\n <textarea class='node_input'><%= care_point.body %></textarea>\n <%= link_to 'Close', [care_map, care_point], :method => :post, :remote => true, :class => 'close' %>\n <%= link_to 'Delete', [care_map, care_point], :confirm => \"Are you sure?\", :method => :delete, :remote => true, :class => 'delete' %>\n</div>\n
\n\nWhen I click the Close link the request is sent to the server as expected. All the fields are null though. How do I make sure that my model object is kept updated before it is sent to the server? Do I have to use the form functionality or can I just update it with Javascript somehow?
\n\nCheers
\n","tags":"javascript ruby-on-rails"},"6414060":{"id":6414060,"title":"how get href all images in page using javascript?","body":"how get href all images in page using javascript\nthis code return src how retunr href?
\n\nfunction checkimages() {\n var images = document.images;\n for (var i=0; i<images.length; i++){\n var img =images[i].src;\n alert(img);\n }\n}\n
\n","tags":"javascript attributes"},"6414093":{"id":6414093,"title":"Why isn't this google maps loaded?","body":"This is my code :
\n\n<script type=\"text/javascript\" src=\"http://maps.google.com/maps/api/js?sensor=true\"></script> \n<script type=\"text/javascript\">\n function load() {\n if (GBrowserIsCompatible()) {\n var map;\n var location = new google.maps.LatLng(46.084989, 11.118851);\n\n var stylez =\n [\n {\n featureType: \"all\",\n elementType: \"all\",\n stylers: [\n { saturation: -98 }\n ]\n }\n ];\n\n var mapOptions = {\n zoom: 11,\n center: location,\n mapTypeControlOptions: {\n mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'myScale']\n }\n };\n\n map = new google.maps.Map(document.getElementById(\"map_canvas\"), mapOptions);\n var mapType = new google.maps.StyledMapType(stylez, { name: \"Grayscale\" });\n map.mapTypes.set('myScale', mapType);\n map.setMapTypeId('myScale') \n }\n }\n\n $(document).ready(function(){\n load();\n });\n</script>\n\n\n<div id=\"map_canvas\" style=\"width: 100%; height: 700px\"></div>\n
\n\nbut nothing is loaded. Where am I wrong? Removing GBrowserIsCompatible() it works, but it doesn't recognize the location.
\n","tags":"javascript google-maps"},"6414105":{"id":6414105,"title":"Facebook API FB.getLoginStatus returns undefined","body":"I have added a like button on my website, and want to know who clicked the like button.\nThese are my sample code:
\n\n <div id=\"fb-root\"></div>\n <script>\n window.fbAsyncInit = function() {\n FB.init({appId: '182722795115444', status: true, cookie: true,\n xfbml: true});\n\n // To find who clicked the like button\n FB.Event.subscribe('edge.create', function(response){\n FB.getLoginStatus(function(response) {\n\n if (response.session) {\n // logged in and connected user, someone you know\n alert(\"logged in and connected user\");\n } else {\n // no user session available, someone you dont know\n alert(\"no user session available\");\n }\n });\n });\n };\n (function() {\n var e = document.createElement('script'); e.async = true;\n e.src = document.location.protocol +\n '//connect.facebook.net/en_US/all.js';\n document.getElementById('fb-root').appendChild(e);\n }());\n </script>\n <script src=\"http://connect.facebook.net/en_US/all.js#appId=182722795115444&xfbml=1\"></script>\n <fb:like href=\"www.blogcountry.net\" send=\"true\" width=\"450\" show_faces=\"true\" font=\"\"></fb:like>\n
\n\nWhen I clicked the Like button, and login facebook, do like successfully, but got \"no user session available\" alert.
\n\nSo I am confused:
\n\n\n- My appId in FB.init is the same as\nfb:like tag, is it right?
\n- Are there something wrong in my\nprogram ?
\n- How to get user name who click the\nLike button?
\n
\n\nThanks in advance.
\n","tags":"javascript facebook api like app-id"},"6414107":{"id":6414107,"title":"In Java, How do I represent multiple objects (of same type) in a single JSON object.","body":"I need to pass the attribtutes of particular type, as apart of a restful service to a javascript which will then display them to a webpage
\n\n @GET\n @Produces(\"application/json\")\n @Consumes(\"application/json\") \n @Path(\"/getStatusAll\")\n\n public void getStatusAll(\n @Context HttpServletRequest request,\n @Context HttpServletResponse response) throws ServletException,\n IOException\n\n{\n\n JSONArray jArray = new JSONArray();\n\n Collection<S> s = Manager.getS().values();\n for (Server i : svr)\n {\n JSONObject m = new JSONObject();\n\n m.put(\"name\",i.getName());\n m.put(\"status\",i.getStatus());\n\n jArray.add(m);\n\n }\n\n return jArray.toString();\n\n\n response.getOutputStream().print(jArray);\n response.flushBuffer();\n}\n
\n\nJAVASCRIPT will need to read ONE JSON object looking like:
\n\n[ {name:someName0, status: someStatus},\n {name:someName1, status: someStatus},\n {name:someName2, status: someStatus}...etc]\n
\n","tags":"java javascript json"},"6414123":{"id":6414123,"title":"javascript trigger function on event from a script, not explicitly from html","body":"So I'm making a registration form ATM, I have it like I want it so far except the excess JavaScript code to check the values realtime (onmouseover, onmouseout, onblur etc.).
\nA small sample:
\n\n<tr>\n <td>\n <label for=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\">\n Enter your name:\n </label>\n </td>\n <td>\n <input type=\"text\"\n id=\"name\"\n name=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\"\n onblur=\"checkValue('name', '', 3);\">\n </td>\n</tr>\n
\n\nfieldSelected makes the field background yellow if the value of the specified element (first parameter) matches the second parameter (default value) or is shorter than third parameter.
\nYou mouseover the label or the input field and it changes the bg first to yellow, then to red (since you didn't input anything).
\ncheckValue changes the field background to either red or green depending on the value (same parameters).
\nYou enter something in the input field, switch to another field and it changes the background color.
\n\nNow, as you will probably notice, there's a LOT of JavaScript function calls right there (5 per each input/select field). It would be great if someone would know a way to attach those event triggers from another place (I don't usually code this dirty), not directly in the form like this and preferably to multiple IDs at once. I have jQuery here, but I'm really no expert in JavaScript.
\n\nOr maybe there's a simpler way to do this? I want that the field background color changes on all those events for maximum interactivity. Sure, it's nothing much when all the data goes to the server side but I just want it that way.
\n","tags":"javascript javascript-events"},"6414152":{"id":6414152,"title":"Navigating / scraping hashbang links with javascript (phantomjs)","body":"I'm trying to download the HTML of a website that is almost entirely generated by JavaScript. So, I need to simulate browser access and have been playing around with PhantomJS. Problem is, the site uses hashbang URLs and I can't seem to get PhantomJS to process the hashbang -- it just keeps calling up the homepage.
\n\nThe site is http://www.regulations.gov. The default takes you to #!home. I've tried using the following code (from here) to try and process different hashbangs.
\n\nif (phantom.state.length === 0) {\n if (phantom.args.length === 0) {\n console.log('Usage: loadreg_1.js <some URL>');\n phantom.exit();\n }\n var address = 'http://www.regulations.gov/';\n var hash = phantom.args[0];\n console.log(address);\n phantom.state = Date.now().toString();\n phantom.open(address);\n\n} else {\n var hash = phantom.args[0];\n document.location = hash;\n console.log(document.location.hash);\n var elapsed = Date.now() - new Date().setTime(phantom.state);\n if (phantom.loadStatus === 'success') {\n if (!first_time) {\n var first_time = true;\n if (!document.addEventListener) {\n console.log('Not SUPPORTED!');\n }\n phantom.render('result.png');\n var markup = document.documentElement.innerHTML;\n console.log(markup);\n phantom.exit();\n }\n } else {\n console.log('FAIL to load the address');\n phantom.exit();\n }\n}\n
\n\nThis code produces the correct hashbang (for instance, I can set the hash to '#!contactus') but it doesn't dynamically generate any different HTML--just the default page.
\n\nI've also tried to set the initial address to the hashbang, but then the script just hangs and doesn't do anything.
\n\nThoughts?
\n","tags":"javascript python web-scraping hashbang phantomjs"},"6414240":{"id":6414240,"title":"Constant Variables in Javascript","body":"I am trying to have some const global variables which I can use in the javascript and I came out with this code and picking up from some answers referred in SO. But it seems that I have a little mistake somewhere which I couldn't spot. Can someone help me with this?
\n\nin testQuery.js
\n\n(function (window, undefined) {\n\n var testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n }\n\n var MYGLOBALS = function() {\n var globals = {\n foo : \"bar\",\n batz : \"blah\" \n }\n\n return {\n getValue : function(s) {\n return globals[s];\n }\n }\n }();\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\n
\n\nand in the html javascript tag i have this line of code.
\n\nin testQuery.html file
\n\n<html>\n <head>\n <script src=\"testQuery.js\"></script>\n <script>\n\n function onClick() {\n\n alert(MYGLOBALS.getValue(\"foo\"));\n }\n\n </script>\n </head>\n\n <body>\n\n <input type=\"button\" onclick=\"onClick()\">\n\n </body>\n\n</html>\n
\n","tags":"javascript javascript-library"},"6414253":{"id":6414253,"title":"Prototype - How to deselect the selected value from a dropdown","body":"How do I deselect the selected value from a dropdown list using Prototype.
\n\nFrom
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2” SELECTED>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nTo
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2”>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nThanks for any help in advance.
\n","tags":"javascript html prototype prototypejs"},"6414376":{"id":6414376,"title":"Can I see what jquery is sending to an external server?","body":"I am on a website...it has jquery and is sending some requests using javascript out to a php page.
\n\nIs their any way to see what data it is sending out from my computer and/or which URLs it is talking to?
\n\nI am using firefox and can load software if their is any needed.
\n\nEDIT - I have downloaded firebug and have the page loaded. Any idea what option I need to select?
\n","tags":"javascript jquery firefox"},"6414438":{"id":6414438,"title":"jQuery jqPlot library 12 hour Time Y-Axis Inversion issue","body":"I've started using jqPlot recently. The generated graphs look amazing and I love it. There are a few little things to learn here and there, but overall it's great.
\n\nI'm using the stacked bar generation and came into a werid issue. Basically, I want a 12 hour time from hours 0 - 24 on the Y axis, days on the X axis, and plot seconds of a certain activity on the graph. But also, I want the days (midnight) to start at the top of the graph, and come to the bottom.
\n\nI can flip the data easily with an inverse of the 'min' and 'max', but the issue arises when I try to flip the ticks; essentially, the \"time\".
\n\nI have my series defaults set to a hidden axis:
\n\nseriesDefaults: {\n renderer: $.jqplot.BarRenderer,\n yaxis: 'y2axis'\n},\n
\n\nAnd I put a placeholder series ( with the values all 0's, eg: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] ) to associate with a separate yaxis to plot the date ticks:
\n\nseries: [\n { show: true, yaxis: 'yaxis', }\n],\n
\n\nI can flip the values by changing the min and max on the default y axis and hiding it:
\n\ny2axis:{\n min: 24,\n max: 0,\n showTicks: false\n}\n
\n\nThen I set the ticks, and format them with the DateAxisRenderer:
\n\nyaxis:{\n renderer:$.jqplot.DateAxisRenderer,\n ticks: ['0', '2', '4', '6', '8', '10', '12', '14', '16', '18', '20', '22', '24'],\n tickOptions: { formatString: '%I:%M %p' }\n}\n
\n\nThis creates a yaxis with the time's from 12:00 AM to 12:00PM back to 12:00 AM in that format. but in increasing order from the bottom of the graph.
\n\nObviously, flipping the min and max on the 'yaxis' would accomplish nothing, as there is only place holder values, and it only flips the values. How would I go about to flip the axis values so that the time goes (from the bottom) 24, 22, 20... etc, etc, ?
\n\nThanks for your help in advance.
\n","tags":"javascript jquery jquery-plugins jqplot time-format"},"6414473":{"id":6414473,"title":"How to cause live text wrap while image/element is being dragged, in javascript?","body":"I want to make a text editor which incorporates this sort of effect (see video). However, I have no idea how this would be possible with javascript.
\n\nhttp://www.youtube.com/watch?v=mYnj4Mz9g9g
\n\nAny ideas would be amazing!
\n\nThanks
\n","tags":"javascript html text-editor textwrapping"},"6414530":{"id":6414530,"title":"Change background using Javascript - AJAX - jQuery","body":"I have a table as below;
\n\n<table style=\"width: 100%; border: solid 1px #666600; min-width: 800px\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n<td id=\"aaa\"> </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td id=\"bbb\"> </td>\n</tr>\n<tr>\n<td> </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td> </td>\n</tr>\n</table>\n
\n\nI am using jquery ajax and i have script as below;
\n\n$(document).ready( function() {\nvar i = 1;\n$.ajax({\n type: 'POST',\n url: 'ajax.php',\n data: 'id=' + i,\n dataType: 'json',\n cache: false,\n success: function(result) {\n $('.title').each(function(index){\n values = result[index].split('*');\n indexa = values[0];\n indexb = values[1];\n if((result[index])){\n $(this).html(indexb);\n }else{\n $(this).html(\" \");\n }\n });\n },\n });\n});\n
\n\nThe php file will return [\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"]
for i=1, [\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]
for i=2 etc etc.. The text in class=\"title\"
changes accordingly with respect to the data, as abc
or whatever it is..
\n\nYou can see another cell above every title cell having class=\"content\"
. I have a php file, ajax2.php
, which will return an image name with respect to a $_POST[\"data1\"]
and $_POST[\"data2\"]
. The $_POST[\"data1\"]
portion should have value indexa
and $_POST[\"data2\"]
portion should have value indexb
from javascript for each ajax request. The images are placed in images folder and the data returned by php file will be only image_name.extension
.
\n\nIn short, I want to change the background image of content cell above title cell to change when data / text in corresponding title cell changes. Anybody tell me how to do the AJAX request and change background image (change background image url).
\n\nI think it will be something like;
\n\n$(.content).css({ 'background-image':'url(images/' + imagename });
\n\nYou can see my fiddle here
\n\nThanks in advance..
\n","tags":"javascript jquery ajax jquery-ajax"},"6414558":{"id":6414558,"title":"In IE8 with Chrome Frame, after Download, App hangs","body":"Here's a strange one. Throwing it out there to see if anyone has any thoughts.
\n\nThis problem only occurs with IE8 with Chrome Frame installed. However, some machines with IE8 and chrome frame do not have the problem.
\n\nWhen a user downloads a file, the app stops responding (the file is successfully downloaded). Links still work, but all JS appears to be blocked. If the user re-loads the browser, the app works fine, and re-downloading (even the same file) no longer causes the app to hang.
\n\nI should add that only a small number of users have this issue (so its definitely something in the app causing the problem). The problem seems to require: certain user, certain setup with IE8+chrome frame.
\n","tags":"javascript internet-explorer-8 frame hang google-chrome-frame"},"6414578":{"id":6414578,"title":"Javascript slider not showing in IE9","body":"We have an automatic slider on this website, http://www.realcapfinancial.com and it has been working on all browsers. IE9 doesnt seem to work. It comes up with and error, no object line 298... character 2 etc. I forget what it says but I can't check it again since I'm at work using a mac.
\n\nAny help is perfect, thank you
\n","tags":"javascript jquery internet internet-explorer-9 explorer"},"6414613":{"id":6414613,"title":"Using Dashcode's List Controller without their DataSource option","body":"I'm working on my own custom google calendar, so far i'm able to get everything to work, i've loaded all the data and everything works great, each event shows up on a select box.
\n\nWhat i want to do now is to load each event name on the LIST part. How exactly can i do that? i'm very lost with it.
\n\nI looked at the sample code that dashcode has for the list part but i really am lost with populating the list in real time, can somebody help me? i can provide more info as needed, thanks!
\n","tags":"javascript json apple dashcode"},"6414614":{"id":6414614,"title":"Fairly easy JQuery Input Selection location problem","body":"I am having a problem with getting my JQuery javascript code to apply to the select box elements that it is supposed to. What's happening is that the select boxes are not following the actions that are specified in the javascript code. They are simply staying disabled and checked (see code below) instead of changing based on the first checkbox's selection.
\n\nI believe it is a problem regarding how I specify the location of the select boxes in the javascript code, but I don't know how to go about fixing it. Then again, I could be wrong about that too.
\n\nIf you have any insight on this or can correct the code, please do! Cheers.
\n\n
\n\nHTML:
\n\n<div class=\"medium_box\">\n <form name=\"searchform\" class=\"FECKsearch\" method=\"get\" onSubmit=\"return dosearch();\">\n <input name=\"s\" id=\"searchBox\" class=\"input\" type=\"text\" value=\"\" onfocus=\"myFocusHandler(this);\" onblur=\"myBlurHandler(this);\" size=\"18\" maxlength=\"50\">\n <input type=\"submit\" name=\"searchsubmit\" class=\"button\" value=\"Go\" />\n\n <span class=\"searcher\">International: <input type=\"checkbox\" id=\"International\" checked=\"yes\"></input></span>\n <span class=\"searcher1\">Americas: <input type=\"checkbox\" id=\"Americas\" disabled checked=\"yes\"></input></span>\n <span class=\"searcher1\">Europe: <input type=\"checkbox\" id=\"Europe\" disabled checked=\"yes\"></input></span>\n Asia: <input type=\"checkbox\" id=\"Asia\" disabled checked=\"yes\"></input>\n </form> \n</div>\n
\n\nJavascript:
\n\n$('#International').click(function() {\nvar paramChangeBoxes = $('input:checkbox');\nif ($(this).is(':checked')) {\n $('#Americas').attr('checked', 'checked');\n $('#Americas').attr('disabled', 'disabled');\n $('#Europe').attr('checked', 'checked');\n $('#Europe').attr('disabled', 'disabled');\n $('#Asia').attr('checked', 'checked');\n $('#Asia').attr('disabled', 'disabled');\n}\nelse {\n paramChangeBoxes.removeAttr('disabled');\n $('#Americas').removeAttr('disabled');\n $('#Europe').removeAttr('disabled');\n $('#Asia').removeAttr('disabled');\n\n }\n});\n
\n\n
\n\nUpdate & Solution:
\n\nCheers to John for the code $('#International').live(\"click\",function() {
which corrected the error of the JQuery code not functioning. Apparently if you are importing the code from a remote file you must include the \"live\" portion inside of your coding.
\n\nThanks again John!
\n","tags":"php javascript jquery html div"},"6414755":{"id":6414755,"title":"Convert Matlab Fuzzy Logic toolbox fis file to c# / c++ / javascript","body":"I have a Matlab program that is partially relies on Matlab's Fuzzy logic toolbox, which I want to convert to c# program (and later on to objective-c, but let's keep this for later).\nIs ther any means to convert my fuzzy logic fis file into c# (or c++, or maybe even javascript)?
\n\nP.S. I know the deploytool
can convert my program to exe, but I don't want to rely on matlab runtime
component and dlls but to make it a complete c# (or c++) program.
\n","tags":"c# javascript matlab"},"6414782":{"id":6414782,"title":"Provide link/Redirect after a 'Like' or 'Share' on Facebook or a 'Share' on Twitter","body":"basically what I want to do is forward people to a download link once they either 'like' my page on Facebook or post a link of the page to their profile (whatever is easier) and something similar for Twitter.
\n\nI have seen some bands do this when promoting a free download — to download the new song you must post this to your profile etc.
\n\nAnybody know how I could go about this? (This isn't a 'can you do it for me' question, I just need a point in the right direction regarding API's or any examples)
\n\nThanks.
\n","tags":"php javascript facebook twitter share"},"6414827":{"id":6414827,"title":"Why does my checkbox return the wrong state?","body":"I'm really confused. I have the following:
\n\n<input class=\"check-box\" \n id=\"Data__Correct\" \n name=\"Data.Correct\" \n type=\"checkbox\" value=\"Data.Correct\" />\n
\n\nWhen I put a check in the checkbox and check with fiddler I see it's sending back:
\n\nData.Correct False\n
\n\nI thought it should be the other way around. What's happening?
\n","tags":"javascript jquery html"}},"docInfo":{"78932":{"title":8,"tags":3,"body":34},"318630":{"title":6,"tags":6,"body":50},"814910":{"title":3,"tags":7,"body":24},"3047391":{"title":5,"tags":5,"body":80},"3802824":{"title":8,"tags":2,"body":67},"3827055":{"title":8,"tags":6,"body":68},"4047072":{"title":3,"tags":1,"body":43},"4185821":{"title":9,"tags":1,"body":80},"4272538":{"title":6,"tags":2,"body":220},"4460205":{"title":5,"tags":4,"body":13},"4508230":{"title":5,"tags":5,"body":31},"4529460":{"title":5,"tags":4,"body":211},"5306132":{"title":10,"tags":5,"body":223},"5351143":{"title":7,"tags":5,"body":41},"5549729":{"title":3,"tags":4,"body":14},"6174688":{"title":8,"tags":4,"body":90},"6294393":{"title":6,"tags":5,"body":143},"6296451":{"title":3,"tags":5,"body":81},"6364675":{"title":7,"tags":5,"body":296},"6395651":{"title":13,"tags":5,"body":25},"6396782":{"title":6,"tags":5,"body":32},"6397574":{"title":5,"tags":4,"body":44},"6398787":{"title":3,"tags":1,"body":12},"6401696":{"title":1,"tags":1,"body":27},"6401946":{"title":4,"tags":3,"body":63},"6403354":{"title":6,"tags":4,"body":123},"6403728":{"title":7,"tags":2,"body":130},"6404725":{"title":4,"tags":4,"body":73},"6405964":{"title":4,"tags":5,"body":27},"6406161":{"title":2,"tags":5,"body":24},"6409944":{"title":7,"tags":4,"body":69},"6409972":{"title":7,"tags":5,"body":48},"6410184":{"title":3,"tags":4,"body":147},"6410224":{"title":5,"tags":3,"body":51},"6411169":{"title":7,"tags":4,"body":46},"6411194":{"title":5,"tags":3,"body":22},"6411282":{"title":5,"tags":2,"body":27},"6411574":{"title":7,"tags":1,"body":38},"6411636":{"title":3,"tags":4,"body":58},"6411637":{"title":4,"tags":3,"body":56},"6411778":{"title":13,"tags":5,"body":124},"6411964":{"title":4,"tags":4,"body":61},"6412119":{"title":5,"tags":2,"body":170},"6412151":{"title":5,"tags":2,"body":86},"6412259":{"title":5,"tags":2,"body":26},"6412334":{"title":5,"tags":5,"body":240},"6412428":{"title":5,"tags":6,"body":86},"6412566":{"title":8,"tags":4,"body":172},"6412589":{"title":5,"tags":1,"body":79},"6412607":{"title":5,"tags":2,"body":28},"6412632":{"title":5,"tags":2,"body":172},"6412720":{"title":6,"tags":2,"body":17},"6412753":{"title":3,"tags":4,"body":43},"6412863":{"title":7,"tags":5,"body":52},"6412913":{"title":6,"tags":2,"body":77},"6412993":{"title":6,"tags":3,"body":337},"6412997":{"title":5,"tags":4,"body":63},"6413018":{"title":8,"tags":5,"body":75},"6413036":{"title":3,"tags":4,"body":16},"6413183":{"title":7,"tags":2,"body":140},"6413240":{"title":5,"tags":2,"body":107},"6413244":{"title":7,"tags":4,"body":72},"6413265":{"title":7,"tags":2,"body":53},"6413327":{"title":5,"tags":5,"body":40},"6413356":{"title":3,"tags":2,"body":61},"6413416":{"title":6,"tags":5,"body":33},"6413440":{"title":8,"tags":5,"body":75},"6413444":{"title":4,"tags":3,"body":83},"6413512":{"title":3,"tags":2,"body":33},"6413523":{"title":5,"tags":3,"body":141},"6413541":{"title":4,"tags":4,"body":56},"6413549":{"title":3,"tags":1,"body":57},"6413720":{"title":6,"tags":4,"body":135},"6413732":{"title":5,"tags":3,"body":61},"6413744":{"title":7,"tags":4,"body":65},"6413778":{"title":8,"tags":5,"body":107},"6413881":{"title":6,"tags":2,"body":45},"6413889":{"title":6,"tags":3,"body":63},"6413908":{"title":4,"tags":5,"body":31},"6413944":{"title":5,"tags":4,"body":65},"6413951":{"title":5,"tags":3,"body":87},"6414060":{"title":5,"tags":2,"body":24},"6414093":{"title":4,"tags":3,"body":68},"6414105":{"title":5,"tags":5,"body":105},"6414107":{"title":9,"tags":3,"body":70},"6414123":{"title":7,"tags":3,"body":164},"6414152":{"title":6,"tags":6,"body":128},"6414240":{"title":3,"tags":3,"body":81},"6414253":{"title":5,"tags":4,"body":46},"6414376":{"title":5,"tags":3,"body":37},"6414438":{"title":10,"tags":7,"body":184},"6414473":{"title":8,"tags":5,"body":20},"6414530":{"title":6,"tags":5,"body":200},"6414558":{"title":6,"tags":9,"body":73},"6414578":{"title":4,"tags":7,"body":34},"6414613":{"title":7,"tags":4,"body":55},"6414614":{"title":7,"tags":5,"body":162},"6414755":{"title":10,"tags":3,"body":49},"6414782":{"title":6,"tags":5,"body":44},"6414827":{"title":4,"tags":3,"body":32}},"length":100,"save":true},"index":{"title":{"root":{"1":{"2":{"docs":{"6414438":{"tf":1}},"df":1},"6":{"docs":{"6413744":{"tf":1}},"df":1},"docs":{},"df":0},"2":{"0":{"1":{"0":{"docs":{"3827055":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"3":{"docs":{"6411778":{"tf":1}},"df":1},"docs":{},"df":0,"c":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6405964":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6409972":{"tf":1},"6414827":{"tf":1}},"df":2}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"g":{"docs":{"6413944":{"tf":1},"6414530":{"tf":1}},"df":2}},"i":{"docs":{},"df":0,"n":{"docs":{"6413440":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6414755":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6412632":{"tf":1},"6414613":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1},"6413944":{"tf":1}},"df":2}},"x":{"docs":{},"df":0,"t":{"docs":{"6411194":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6411169":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1},"6412993":{"tf":1},"6413523":{"tf":1}},"df":3}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6413440":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"6414473":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{"6174688":{"tf":1},"6364675":{"tf":1}},"df":2},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"5549729":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413018":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}},"d":{"docs":{"6395651":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"6412151":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413036":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6412119":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1},"6413018":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":1},"6414827":{"tf":1}},"df":5}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1},"6413444":{"tf":1}},"df":2}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"6414107":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"q":{"docs":{"6397574":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1}},"df":1},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412753":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412993":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6411574":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"6412753":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412607":{"tf":1},"6413265":{"tf":1},"6414827":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"6412607":{"tf":1},"6413265":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414613":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1},"4529460":{"tf":1},"6403728":{"tf":1}},"df":3}}}},"e":{"docs":{},"df":0,"b":{"docs":{"6411282":{"tf":1},"6413732":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413944":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1}},"df":1}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"3802824":{"tf":1},"4460205":{"tf":1}},"df":2}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413908":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413512":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"k":{"docs":{"6410184":{"tf":1},"6412151":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1}},"df":1}},"y":{"docs":{"6413440":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"6414827":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"3047391":{"tf":1},"6405964":{"tf":1},"6412993":{"tf":1}},"df":3}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1}},"df":1}},"e":{"docs":{"6413889":{"tf":1}},"df":1}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"6396782":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"3827055":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412913":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6409972":{"tf":1},"6410224":{"tf":1},"6413183":{"tf":1},"6414253":{"tf":1},"6414614":{"tf":1}},"df":6}}}},"t":{"docs":{"78932":{"tf":1},"6403728":{"tf":1},"6409972":{"tf":1},"6412589":{"tf":1},"6413244":{"tf":1},"6413881":{"tf":1}},"df":6,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"4047072":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413444":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{"6413240":{"tf":1}},"df":1}}},"e":{"docs":{"6414376":{"tf":1}},"df":1,"m":{"docs":{"6364675":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{"6414376":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414376":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"c":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6397574":{"tf":1}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"2":{"5":{"6":{"docs":{"6395651":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6414782":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"w":{"docs":{"6412119":{"tf":1},"6413244":{"tf":1},"6414578":{"tf":1}},"df":3},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411636":{"tf":1},"6414578":{"tf":1}},"df":2}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6413549":{"tf":1},"6414123":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6411282":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6413908":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6414107":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6412863":{"tf":1},"6414107":{"tf":1}},"df":2}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6413416":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"v":{"docs":{"6174688":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6174688":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"6396782":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6414105":{"tf":1},"6414782":{"tf":1}},"df":5}}}}}},"l":{"docs":{},"df":0,"s":{"docs":{"6412913":{"tf":1}},"df":1}}},"i":{"docs":{"6414755":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1},"6413327":{"tf":1},"6414755":{"tf":1}},"df":3}},"r":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1}},"df":1,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6413732":{"tf":1}},"df":1}}},"d":{"docs":{"6412632":{"tf":1}},"df":1}},"x":{"docs":{"4529460":{"tf":1}},"df":1},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412566":{"tf":1},"6412607":{"tf":1},"6412863":{"tf":1},"6413356":{"tf":1},"6413440":{"tf":1},"6414123":{"tf":1}},"df":6}}}}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"6414755":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1}},"df":1}},"m":{"docs":{"6411778":{"tf":1.4142135623730951},"6412913":{"tf":1},"6413240":{"tf":1}},"df":3}}},"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413444":{"tf":1}},"df":1}}}},"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411964":{"tf":1},"6414376":{"tf":1}},"df":2}}},"j":{"docs":{},"df":0,"s":{"4":{"docs":{"6409972":{"tf":1}},"df":1},"docs":{},"df":0}},"r":{"docs":{},"df":0,"a":{"docs":{"6413018":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414123":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412863":{"tf":1},"6414123":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"4185821":{"tf":1},"6412863":{"tf":1},"6413416":{"tf":1}},"df":4}}}}}},"g":{"docs":{"6395651":{"tf":1}},"df":1},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6404725":{"tf":1},"6411169":{"tf":1},"6412259":{"tf":1}},"df":3}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6411169":{"tf":1}},"df":1},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1},"6403728":{"tf":1},"6411194":{"tf":1},"6412334":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1},"6413240":{"tf":1},"6413440":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1}},"df":14},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"n":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6412428":{"tf":1},"6414107":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":1},"6364675":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6403354":{"tf":1},"6403728":{"tf":1},"6406161":{"tf":1},"6411169":{"tf":1},"6411574":{"tf":1.4142135623730951},"6411636":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412428":{"tf":1},"6412589":{"tf":1},"6412632":{"tf":1},"6412720":{"tf":1},"6412913":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414060":{"tf":1},"6414123":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1},"6414578":{"tf":1},"6414755":{"tf":1}},"df":35,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{"4047072":{"tf":1},"6413356":{"tf":1},"6413720":{"tf":1}},"df":3,"o":{"docs":{},"df":0,"n":{"docs":{"6403354":{"tf":1},"6414107":{"tf":1}},"df":2}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6414614":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6409944":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"o":{"docs":{"6413889":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3827055":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413327":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412720":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6413416":{"tf":1}},"df":1}}}},".":{"docs":{"5306132":{"tf":1}},"df":1},"e":{"8":{"docs":{"6414558":{"tf":1}},"df":1},"9":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{"4272538":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{"6174688":{"tf":1},"6414438":{"tf":1}},"df":2}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"318630":{"tf":1},"814910":{"tf":1},"6412119":{"tf":1},"6413541":{"tf":1},"6413744":{"tf":1},"6414060":{"tf":1}},"df":6,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6414473":{"tf":1}},"df":1}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"4460205":{"tf":1}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1},"l":{"docs":{"5351143":{"tf":1}},"df":1}},"k":{"docs":{"6411282":{"tf":1}},"df":1}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6414755":{"tf":1}},"df":1},"n":{"docs":{"6412428":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"d":{"docs":{"6413183":{"tf":1},"6413732":{"tf":1},"6414093":{"tf":1}},"df":3}},"o":{"docs":{},"df":0,"k":{"docs":{"6413744":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"6414152":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414782":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1},"6414613":{"tf":1}},"df":2}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"6414473":{"tf":1}},"df":1}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"3802824":{"tf":1},"6296451":{"tf":1},"6411636":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1},"6414614":{"tf":1}},"df":6}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414782":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1},"6414253":{"tf":1}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412607":{"tf":1},"6413440":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1},"6403354":{"tf":1}},"df":3},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{"3802824":{"tf":1},"6411282":{"tf":1},"6412428":{"tf":1},"6413183":{"tf":1},"6413416":{"tf":1},"6413732":{"tf":1},"6414060":{"tf":1}},"df":7}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6413720":{"tf":1}},"df":2},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"4185821":{"tf":1},"6395651":{"tf":1}},"df":2}}}},"i":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}},"p":{"docs":{"3802824":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411194":{"tf":1},"6411778":{"tf":1}},"df":2}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"3802824":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1},"6413951":{"tf":1}},"df":2}}}},".":{"docs":{"5306132":{"tf":1}},"df":1},"s":{"docs":{"78932":{"tf":1},"3047391":{"tf":1},"5351143":{"tf":1},"6395651":{"tf":1.4142135623730951},"6396782":{"tf":1},"6403728":{"tf":1},"6412863":{"tf":1},"6413889":{"tf":1},"6413944":{"tf":1},"6414060":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1}},"df":12,"e":{"docs":{},"df":0,"r":{"docs":{"4508230":{"tf":1},"6413889":{"tf":1}},"df":2,"'":{"docs":{"6395651":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411169":{"tf":1},"6412259":{"tf":1},"6414105":{"tf":1}},"df":3}}}},"o":{"docs":{"4508230":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"6413549":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414782":{"tf":1}},"df":1}}}}},"o":{"docs":{"6412863":{"tf":1},"6413240":{"tf":1}},"df":2}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414755":{"tf":1}},"df":1}}}}}},"r":{"docs":{"6413265":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{"6411194":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414438":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6413881":{"tf":1},"6414473":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}}}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"6414107":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{"6413265":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1},"6410224":{"tf":1}},"df":2}},"s":{"docs":{},"df":0,"k":{"docs":{"6404725":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411574":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6403354":{"tf":1}},"df":1}}}},"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"6174688":{"tf":1},"6412753":{"tf":1},"6413944":{"tf":1},"6414530":{"tf":1}},"df":4}}},"p":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6411778":{"tf":1}},"df":1}}}}}},"i":{"docs":{"6414105":{"tf":1}},"df":1}},"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6396782":{"tf":1}},"df":2}}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"d":{"docs":{"6411778":{"tf":1},"6413778":{"tf":1}},"df":2,"d":{"docs":{"6412997":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1},"6413744":{"tf":1}},"df":2}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"4508230":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"814910":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1}}}},"p":{"docs":{"6412720":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1},"6414093":{"tf":1}},"df":4},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6409944":{"tf":1}},"df":1}}},"i":{"docs":{"6364675":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6413183":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"g":{"docs":{"4508230":{"tf":1}},"df":1}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1},"6413951":{"tf":1}},"df":2}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"6412632":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{"6401946":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{"6412993":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"5549729":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6403354":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{"6413183":{"tf":1},"6414107":{"tf":1}},"df":2}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413720":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"u":{"docs":{"6294393":{"tf":1},"6411194":{"tf":1}},"df":2}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1},"w":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"j":{"docs":{"6401946":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"w":{"docs":{"6409944":{"tf":1}},"df":1},"x":{"docs":{},"df":0,"t":{"docs":{"6413440":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"d":{"docs":{"6396782":{"tf":1},"6412720":{"tf":1}},"df":2}},"s":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1},"6414152":{"tf":1}},"df":2}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412259":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411637":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412259":{"tf":1},"6412589":{"tf":1},"6413951":{"tf":1},"6414107":{"tf":1.4142135623730951}},"df":4}}}}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414613":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413244":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1}},"df":1}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6294393":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}},"b":{"docs":{},"df":0,"e":{"docs":{"6414473":{"tf":1}},"df":1,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413951":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413265":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412997":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413327":{"tf":1}},"df":1,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1},"6414530":{"tf":1}},"df":2}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"6412720":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"4047072":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1}},"df":1}},"x":{"docs":{"78932":{"tf":1},"6410224":{"tf":1},"6413881":{"tf":1}},"df":3}},"i":{"docs":{},"df":0,"t":{"docs":{"6413744":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6395651":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"g":{"docs":{"6412151":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6401946":{"tf":1}},"df":1}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1},"6405964":{"tf":1},"6413778":{"tf":1}},"df":3,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"6414613":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{"6413744":{"tf":1},"6413778":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6414613":{"tf":1}},"df":1}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6410224":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6414558":{"tf":1}},"df":1}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{"6396782":{"tf":1},"6413327":{"tf":1}},"df":2}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414473":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6414253":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4460205":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"6413416":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6411574":{"tf":1.4142135623730951}},"df":1}}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6409972":{"tf":1},"6411778":{"tf":1},"6413778":{"tf":1}},"df":3}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}},"v":{"docs":{"6412997":{"tf":1.4142135623730951}},"df":1}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1},"6413908":{"tf":1},"6414093":{"tf":1}},"df":5}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1},"6413512":{"tf":1}},"df":2}}}}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6409972":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6411574":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413440":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"l":{"docs":{},"df":0,"u":{"docs":{"78932":{"tf":1},"6410224":{"tf":1},"6413881":{"tf":1},"6414253":{"tf":1}},"df":4},"i":{"docs":{},"df":0,"d":{"docs":{"6413240":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"3827055":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"6395651":{"tf":1}},"df":1}}},"a":{"docs":{"4460205":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414558":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{"6411964":{"tf":1}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"5":{"docs":{"5351143":{"tf":1},"6412566":{"tf":1}},"df":2},"docs":{"6405964":{"tf":1},"6414123":{"tf":1}},"df":2,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"4529460":{"tf":1}},"df":2}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{"6414060":{"tf":1}},"df":1}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"y":{"docs":{"6414438":{"tf":1}},"df":1},"z":{"docs":{"6413416":{"tf":1}},"df":1}},"length":557},"tags":{"root":{"2":{"0":{"0":{"8":{"docs":{"6413416":{"tf":1}},"df":1},"docs":{},"df":0},"1":{"0":{"docs":{"3827055":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"8":{"docs":{"6414558":{"tf":1}},"df":1},"9":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"3047391":{"tf":1},"6364675":{"tf":1},"6412428":{"tf":1},"6414107":{"tf":1}},"df":4,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"814910":{"tf":1},"3047391":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"4047072":{"tf":1},"4185821":{"tf":1},"4272538":{"tf":1},"4460205":{"tf":1},"4508230":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1},"5351143":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6395651":{"tf":1},"6396782":{"tf":1},"6397574":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6401946":{"tf":1},"6403354":{"tf":1},"6403728":{"tf":1},"6404725":{"tf":1},"6405964":{"tf":1},"6406161":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6410184":{"tf":1},"6410224":{"tf":1},"6411169":{"tf":1},"6411194":{"tf":1},"6411282":{"tf":1},"6411574":{"tf":1},"6411636":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6411964":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1},"6412259":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":1},"6412607":{"tf":1},"6412632":{"tf":1},"6412720":{"tf":1},"6412753":{"tf":1},"6412863":{"tf":1.4142135623730951},"6412913":{"tf":1},"6412993":{"tf":1},"6412997":{"tf":1},"6413018":{"tf":1},"6413036":{"tf":1},"6413183":{"tf":1},"6413240":{"tf":1},"6413244":{"tf":1},"6413265":{"tf":1},"6413327":{"tf":1},"6413356":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413444":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6413541":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413881":{"tf":1},"6413889":{"tf":1},"6413908":{"tf":1},"6413944":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414253":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":1},"6414755":{"tf":1},"6414782":{"tf":1},"6414827":{"tf":1}},"df":100}}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1},"814910":{"tf":1.7320508075688772},"4529460":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6396782":{"tf":1},"6403728":{"tf":1},"6405964":{"tf":1},"6410184":{"tf":1},"6411194":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412607":{"tf":1},"6412753":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413018":{"tf":1},"6413183":{"tf":1},"6413240":{"tf":1},"6413265":{"tf":1},"6413356":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413944":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951},"6414578":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":31}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6403354":{"tf":1},"6414107":{"tf":1},"6414613":{"tf":1}},"df":3}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"5":{"docs":{"5306132":{"tf":1},"5351143":{"tf":1},"5549729":{"tf":1},"6412566":{"tf":1}},"df":4},"docs":{"78932":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6405964":{"tf":1},"6411169":{"tf":1},"6411282":{"tf":1},"6412566":{"tf":1},"6414253":{"tf":1},"6414473":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":12,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414558":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"5":{"docs":{"6410224":{"tf":1}},"df":1},"docs":{"4508230":{"tf":1},"6411964":{"tf":1},"6413881":{"tf":1},"6414614":{"tf":1},"6414782":{"tf":1}},"df":5},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1},"6403354":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6411636":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6413440":{"tf":1}},"df":1},"t":{"docs":{"6413036":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{"6413327":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411194":{"tf":1},"6412997":{"tf":1},"6414438":{"tf":1}},"df":3}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1},"6414253":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"j":{"docs":{"6412259":{"tf":1},"6414253":{"tf":1}},"df":2}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413744":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414152":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6414614":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414613":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{"6396782":{"tf":1},"6413327":{"tf":1}},"df":2,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}},"m":{"docs":{"78932":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6410184":{"tf":1},"6413732":{"tf":1},"6413778":{"tf":1},"6414376":{"tf":1}},"df":4}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1},"6414782":{"tf":1}},"df":3}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1},"6411778":{"tf":1},"6412913":{"tf":1},"6413889":{"tf":1}},"df":4,"a":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413889":{"tf":1}},"df":1}}},"i":{"docs":{"814910":{"tf":1},"6412334":{"tf":1}},"df":2},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"o":{"docs":{"4508230":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414782":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414438":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6414473":{"tf":1}},"df":1,"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"2":{"5":{"6":{"docs":{"6395651":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6414782":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"6397574":{"tf":1},"6409944":{"tf":1}},"df":2}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"3827055":{"tf":1},"6413416":{"tf":1}},"df":2}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"c":{"docs":{"6414755":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{"6409972":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"6404725":{"tf":1},"6414558":{"tf":1}},"df":3}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6405964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1},"6294393":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1},"6413018":{"tf":1}},"df":5}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413036":{"tf":1}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1}}}},"p":{"docs":{"6412720":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1},"6414093":{"tf":1}},"df":4},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"q":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6294393":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"5549729":{"tf":1}},"df":1}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1.4142135623730951},"6413732":{"tf":1}},"df":2}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6411169":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1},"6413951":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1},"6413951":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1},"6413444":{"tf":1}},"df":2}}},"d":{"docs":{},"df":0,"o":{"docs":{"4508230":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6411169":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6412753":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4508230":{"tf":1},"6174688":{"tf":1},"6412753":{"tf":1},"6413944":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951}},"df":5}}},"p":{"docs":{},"df":0,"p":{"docs":{"6414105":{"tf":1}},"df":1,"l":{"docs":{"6414613":{"tf":1}},"df":1}},"i":{"docs":{"6413908":{"tf":1},"6414105":{"tf":1}},"df":2}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6396782":{"tf":1.4142135623730951}},"df":2}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414060":{"tf":1}},"df":1}}}}}}},"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413778":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6403354":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"814910":{"tf":1.4142135623730951}},"df":1}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1},"6405964":{"tf":1},"6410184":{"tf":1},"6413778":{"tf":1}},"df":5,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1},"6404725":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1.4142135623730951},"6413908":{"tf":1},"6414093":{"tf":1},"6414558":{"tf":1}},"df":7}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413512":{"tf":1},"6413720":{"tf":1}},"df":2}}}}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6409972":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1.4142135623730951}},"df":3}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413327":{"tf":1}},"df":1}}}}},"d":{"docs":{"6414105":{"tf":1}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413744":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"4460205":{"tf":1}},"df":1}}},"o":{"docs":{"4460205":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1.4142135623730951}},"df":3}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"t":{"docs":{"6406161":{"tf":1}},"df":1,"j":{"docs":{"6409972":{"tf":1}},"df":1,"s":{"4":{"docs":{"6409972":{"tf":1}},"df":1},"docs":{},"df":0}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6404725":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414473":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412863":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6397574":{"tf":1},"6401946":{"tf":1},"6409944":{"tf":1}},"df":3}}}},"w":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"n":{"docs":{"6411636":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6414240":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413908":{"tf":1}},"df":1}}}}},"b":{"docs":{"6411964":{"tf":1},"6412428":{"tf":1},"6414152":{"tf":1}},"df":3,"g":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6413744":{"tf":1}},"df":2}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"4460205":{"tf":1}},"df":1}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"3827055":{"tf":1},"6413416":{"tf":1}},"df":2}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}},"length":354},"body":{"root":{"0":{"0":{"0":{"0":{"docs":{},"df":0,"c":{"docs":{},"df":0,"d":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{"4272538":{"tf":1.4142135623730951},"4529460":{"tf":1.4142135623730951},"6364675":{"tf":2.449489742783178},"6403354":{"tf":1.7320508075688772},"6411169":{"tf":1.7320508075688772},"6412913":{"tf":1},"6413440":{"tf":2},"6413523":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.7320508075688772}},"df":10,"'":{"docs":{"6414438":{"tf":1}},"df":1},",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{"6414438":{"tf":1}},"df":1},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}}}}},"1":{"0":{"0":{"0":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1},"docs":{"6412334":{"tf":2.23606797749979},"6414093":{"tf":1},"6414530":{"tf":1}},"df":3,"%":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{"6413881":{"tf":1},"6414438":{"tf":1}},"df":2,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413881":{"tf":1}},"df":1}}}}},"1":{"0":{"docs":{"6413541":{"tf":1}},"df":1},"docs":{"6414093":{"tf":1}},"df":1,".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6414093":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"2":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1}},"df":1}}},"docs":{"6296451":{"tf":1},"6412632":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":3,":":{"0":{"0":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1,"p":{"docs":{},"df":0,"m":{"docs":{"6414438":{"tf":1}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}},"3":{"docs":{"6413541":{"tf":1}},"df":1},"4":{"docs":{"6414438":{"tf":1}},"df":1},"6":{"docs":{"6413244":{"tf":1},"6413744":{"tf":2},"6414438":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}},"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{"6414105":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"9":{"docs":{"5306132":{"tf":1}},"df":1},"docs":{"6414438":{"tf":1}},"df":1},"docs":{"6364675":{"tf":1.4142135623730951},"6403354":{"tf":1.7320508075688772},"6411637":{"tf":1.4142135623730951},"6412589":{"tf":1},"6412993":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413523":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":8,"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1.7320508075688772},"6412993":{"tf":1},"6414530":{"tf":1}},"df":3}},"”":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1}},"df":1}},".":{"4":{"docs":{},"df":0,".":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0},"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"a":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}}},"2":{"0":{"0":{"8":{"docs":{"6413416":{"tf":1}},"df":1},"docs":{"6404725":{"tf":1},"6413881":{"tf":1.4142135623730951}},"df":2},"1":{"0":{"docs":{"3827055":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3827055":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{"6414438":{"tf":1.4142135623730951}},"df":1},"1":{"5":{"docs":{"6413881":{"tf":1}},"df":1},"docs":{},"df":0},"2":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1},"4":{"docs":{"6414438":{"tf":2}},"df":1},"5":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1},"9":{"8":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{"3802824":{"tf":1},"4529460":{"tf":1.7320508075688772},"6403354":{"tf":1.4142135623730951},"6412589":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1},"6414578":{"tf":1}},"df":7,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"”":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6403354":{"tf":1}},"df":1}},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}},"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}},"3":{"0":{"docs":{"6409944":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}},"5":{"0":{"0":{"0":{"docs":{"4047072":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{"4047072":{"tf":1}},"df":1},"docs":{"318630":{"tf":1},"3802824":{"tf":1},"6411637":{"tf":1},"6414123":{"tf":1.7320508075688772}},"df":4,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}},"”":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},".":{"5":{"docs":{"6413416":{"tf":1}},"df":1},"docs":{},"df":0},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}},"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1}},"df":1}}},"4":{"0":{"0":{"docs":{"6404725":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{"6411637":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":1},"6414438":{"tf":1}},"df":5,".":{"0":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{},"df":0},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}}},"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"7":{"docs":{"6412259":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{"814910":{"tf":1},"6364675":{"tf":1},"6412259":{"tf":1},"6414123":{"tf":1}},"df":4},"6":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,")":{"docs":{},"df":0,"/":{"6":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0}}}}},"6":{"6":{"6":{"0":{"0":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{"6414438":{"tf":1}},"df":1},"7":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{"6403354":{"tf":1.4142135623730951},"6413881":{"tf":1}},"df":2,",":{"2":{"5":{"docs":{"6403354":{"tf":1}},"df":1,",":{"docs":{},"df":0,",":{"7":{"docs":{},"df":0,",":{"4":{"0":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0},"4":{"0":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"8":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6414530":{"tf":1}},"df":1}},".":{"1":{"2":{"3":{"docs":{},"df":0,".":{"1":{"2":{"3":{"4":{"docs":{"6411169":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{"6174688":{"tf":1.4142135623730951},"6413744":{"tf":1},"6414438":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}},"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}},"9":{"8":{"docs":{"6414093":{"tf":1}},"df":1},"docs":{"6413444":{"tf":2.8284271247461903}},"df":1,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}},"]":{"docs":{},"df":0,"{":{"3":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1},"4":{"docs":{"6411169":{"tf":1}},"df":1},"docs":{},"df":0}}},"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":2},"3802824":{"tf":1.7320508075688772},"4047072":{"tf":1.4142135623730951},"4185821":{"tf":2.23606797749979},"5549729":{"tf":1},"6294393":{"tf":1},"6396782":{"tf":1.4142135623730951},"6397574":{"tf":1},"6401696":{"tf":1},"6401946":{"tf":1.4142135623730951},"6403354":{"tf":3},"6403728":{"tf":1},"6406161":{"tf":1},"6410184":{"tf":1},"6411282":{"tf":1},"6411574":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412753":{"tf":1.7320508075688772},"6412993":{"tf":1},"6413018":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413327":{"tf":1},"6413444":{"tf":1.4142135623730951},"6413541":{"tf":1.7320508075688772},"6413720":{"tf":1},"6413732":{"tf":1.4142135623730951},"6414093":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1.4142135623730951},"6414123":{"tf":1.7320508075688772},"6414376":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414782":{"tf":1}},"df":40,">":{"docs":{},"df":0,"i":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"814910":{"tf":1},"3802824":{"tf":1.4142135623730951},"3827055":{"tf":1.4142135623730951},"4047072":{"tf":1},"4185821":{"tf":1.7320508075688772},"4272538":{"tf":1},"4460205":{"tf":1},"4529460":{"tf":1.4142135623730951},"6174688":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6395651":{"tf":1},"6396782":{"tf":1},"6397574":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6403354":{"tf":1},"6403728":{"tf":1.4142135623730951},"6404725":{"tf":1.7320508075688772},"6405964":{"tf":1},"6409944":{"tf":1.4142135623730951},"6409972":{"tf":1},"6410184":{"tf":1},"6410224":{"tf":1},"6411574":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1.4142135623730951},"6411964":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412259":{"tf":1},"6412334":{"tf":1.7320508075688772},"6412566":{"tf":1},"6412589":{"tf":2},"6412753":{"tf":1},"6412863":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6412997":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413265":{"tf":1},"6413327":{"tf":1.7320508075688772},"6413440":{"tf":1},"6413444":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6413541":{"tf":1},"6413549":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413881":{"tf":1},"6413944":{"tf":1.4142135623730951},"6414105":{"tf":1},"6414240":{"tf":1},"6414376":{"tf":1.7320508075688772},"6414438":{"tf":1.7320508075688772},"6414473":{"tf":1},"6414530":{"tf":1.7320508075688772},"6414558":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":1.4142135623730951},"6414755":{"tf":1},"6414782":{"tf":1},"6414827":{"tf":1}},"df":68,"'":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1},"5306132":{"tf":1},"6395651":{"tf":1},"6397574":{"tf":1},"6412566":{"tf":1},"6412997":{"tf":1},"6413416":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414152":{"tf":1},"6414438":{"tf":1},"6414613":{"tf":1},"6414827":{"tf":1}},"df":14},"v":{"docs":{"6401946":{"tf":1},"6412632":{"tf":1},"6414152":{"tf":1},"6414438":{"tf":1}},"df":4},"d":{"docs":{"6413036":{"tf":1}},"df":1}},"f":{"docs":{"6412151":{"tf":1},"6413018":{"tf":1},"6413732":{"tf":1},"6414614":{"tf":1}},"df":4},"n":{"docs":{"6364675":{"tf":1},"6412607":{"tf":1},"6413265":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":5},"t":{"docs":{"6403728":{"tf":1},"6413244":{"tf":1},"6413732":{"tf":1}},"df":3,"'":{"docs":{"6413018":{"tf":1},"6413951":{"tf":1}},"df":2},"`":{"docs":{"6413908":{"tf":1}},"df":1}},"m":{"docs":{"6412753":{"tf":1}},"df":1}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1},"6413327":{"tf":1},"6413951":{"tf":1},"6414105":{"tf":1},"6414558":{"tf":1},"6414827":{"tf":1}},"df":6},"r":{"docs":{},"df":0,"e":{"docs":{"6413265":{"tf":1}},"df":1,"a":{"docs":{"6403354":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1},"6409944":{"tf":1},"6411574":{"tf":1},"6411964":{"tf":1},"6412863":{"tf":1},"6414613":{"tf":1}},"df":6}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"3047391":{"tf":1.4142135623730951},"6412259":{"tf":1},"6413244":{"tf":1}},"df":3}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"4047072":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}}},"e":{"docs":{"6413018":{"tf":1},"6414578":{"tf":1}},"df":2},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6411964":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414614":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"6411194":{"tf":1},"6412720":{"tf":1},"6413240":{"tf":1},"6413778":{"tf":1}},"df":5}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"3802824":{"tf":1},"6174688":{"tf":1},"6401696":{"tf":1},"6403728":{"tf":1},"6411636":{"tf":1},"6412632":{"tf":1},"6412753":{"tf":1},"6412913":{"tf":1},"6413541":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1}},"df":15,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6395651":{"tf":1},"6413183":{"tf":1},"6414782":{"tf":1}},"df":3}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1},"5549729":{"tf":1},"6414473":{"tf":1}},"df":3}}}}}}},"i":{"docs":{"6294393":{"tf":1.4142135623730951},"6409972":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6413327":{"tf":1.4142135623730951},"6413720":{"tf":1.7320508075688772},"6413951":{"tf":1},"6414093":{"tf":1},"6414152":{"tf":1},"6414438":{"tf":1},"6414558":{"tf":1}},"df":11},"e":{"docs":{"4272538":{"tf":1.4142135623730951},"6174688":{"tf":1},"6403354":{"tf":1.4142135623730951},"6403728":{"tf":1},"6404725":{"tf":1},"6409944":{"tf":1},"6410184":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1},"6413183":{"tf":1},"6413440":{"tf":1},"6413512":{"tf":1},"6413778":{"tf":1},"6414152":{"tf":1},"6414530":{"tf":1}},"df":15,"n":{"docs":{"6413881":{"tf":1},"6414438":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"6413183":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"e":{"docs":{"6413720":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{"6413244":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"3047391":{"tf":1}},"df":1}}}},"a":{"docs":{"6412566":{"tf":1},"6413440":{"tf":1}},"df":2,"n":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1},"6412334":{"tf":1},"6413512":{"tf":1},"6414240":{"tf":1},"6414438":{"tf":1}},"df":5,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6414782":{"tf":1}},"df":1}}}}},"i":{"docs":{"814910":{"tf":1},"6294393":{"tf":1},"6411637":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6412607":{"tf":1},"6412993":{"tf":1},"6413265":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6414473":{"tf":1},"6414578":{"tf":1}},"df":12}},"m":{"docs":{"6412607":{"tf":1}},"df":1},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"4047072":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{"6403728":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6413440":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}},"o":{"docs":{"5306132":{"tf":1},"6411778":{"tf":1},"6412566":{"tf":1.4142135623730951},"6413183":{"tf":1},"6413327":{"tf":1},"6413720":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1}},"df":8,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"y":{"docs":{"6413881":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"e":{"docs":{"6364675":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{"6406161":{"tf":1}},"df":1}}}},"b":{"docs":{"6412566":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412334":{"tf":1},"6414782":{"tf":1}},"df":2}}}},"t":{"docs":{},"df":0,"w":{"docs":{"5306132":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"3047391":{"tf":1},"4529460":{"tf":1},"6412151":{"tf":1},"6412566":{"tf":1},"6412993":{"tf":1},"6413018":{"tf":1},"6413244":{"tf":1},"6413265":{"tf":1},"6413444":{"tf":1},"6414093":{"tf":1}},"df":11,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413240":{"tf":1},"6413356":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1}},"df":1}}}},"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6401946":{"tf":1},"6413183":{"tf":1}},"df":2}}}},"p":{"docs":{},"df":0,".":{"docs":{"6412119":{"tf":1},"6414755":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1.4142135623730951},"5351143":{"tf":1}},"df":2}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1}},"df":1}},"o":{"docs":{"318630":{"tf":1},"6413018":{"tf":1}},"df":2,"e":{"docs":{"3827055":{"tf":1},"4508230":{"tf":1},"5549729":{"tf":1},"6410184":{"tf":1},"6411636":{"tf":1}},"df":5},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"4508230":{"tf":1}},"df":1}}},"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1.4142135623730951}},"df":1,">":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411194":{"tf":1}},"df":1}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}}}}}}},"i":{"docs":{"6411282":{"tf":1},"6414107":{"tf":1}},"df":2},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6401696":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}},"(":{"docs":{},"df":0,"+":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}},"^":{"docs":{},"df":0,"(":{"docs":{},"df":0,"[":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1.4142135623730951}},"df":1}}}}},"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"@":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"a":{"docs":{"6396782":{"tf":1},"6406161":{"tf":1},"6413265":{"tf":1},"6414473":{"tf":1}},"df":4},"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"5306132":{"tf":1},"6396782":{"tf":1},"6397574":{"tf":1},"6413720":{"tf":1}},"df":6,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"318630":{"tf":1},"4047072":{"tf":1},"6411282":{"tf":1},"6411637":{"tf":1},"6412259":{"tf":1},"6412428":{"tf":1},"6412589":{"tf":1},"6412997":{"tf":1},"6413327":{"tf":1},"6413720":{"tf":1},"6414060":{"tf":1},"6414253":{"tf":1}},"df":12}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1},"6412993":{"tf":1}},"df":2,"'":{"docs":{"6414558":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"6413908":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"c":{"docs":{"4529460":{"tf":1}},"df":1}}},"i":{"docs":{"5351143":{"tf":1},"6411636":{"tf":1}},"df":2},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413732":{"tf":1}},"df":1}}},"a":{"docs":{"6364675":{"tf":1}},"df":1}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1},"6413444":{"tf":1}},"df":2},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"318630":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6411169":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{"3047391":{"tf":1},"6412993":{"tf":1}},"df":2}},"\"":{"0":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0,"+":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"3047391":{"tf":1}},"df":1},"e":{"docs":{},"df":0,"d":{"docs":{"5549729":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"w":{"docs":{"6411636":{"tf":1.7320508075688772},"6412334":{"tf":1},"6414123":{"tf":1}},"df":3},"n":{"docs":{"6412913":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"r":{"docs":{"6412720":{"tf":1},"6414123":{"tf":1}},"df":2},"n":{"docs":{"6413183":{"tf":1}},"df":1},"h":{"docs":{"6412334":{"tf":1}},"df":1},"k":{"docs":{"6412428":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412753":{"tf":1},"6414376":{"tf":1}},"df":2,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"x":{"docs":{"6411637":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}},"*":{"docs":{},"df":0,"*":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{"6413944":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"'":{"docs":{"6412589":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"6411194":{"tf":1}},"df":1}}}},"}":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}},"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1}},"df":1}}},"k":{"docs":{},"df":0,"k":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3802824":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6403354":{"tf":1.7320508075688772},"6404725":{"tf":1.4142135623730951},"6410224":{"tf":1},"6412151":{"tf":1},"6413240":{"tf":1},"6413512":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1.4142135623730951}},"df":11,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1},"6413523":{"tf":1},"6414827":{"tf":1}},"df":3}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6412997":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413951":{"tf":1},"6414614":{"tf":1}},"df":4}}},"a":{"docs":{"6412607":{"tf":1}},"df":1},"t":{"docs":{"6403728":{"tf":1},"6414530":{"tf":1}},"df":2,"r":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}},"d":{"docs":{"6412334":{"tf":1}},"df":1}},"?":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1},"6414093":{"tf":1}},"df":2,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6413183":{"tf":1.4142135623730951},"6414253":{"tf":1.4142135623730951}},"df":3}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6413512":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{"6412119":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6413889":{"tf":1}},"df":1}}}},"p":{"docs":{"6413720":{"tf":1}},"df":1},"!":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}},".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"{":{"docs":{},"df":0,"'":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}},"i":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"6410184":{"tf":1}},"df":1}}}}}},"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"4529460":{"tf":1},"6404725":{"tf":1},"6412334":{"tf":1},"6412589":{"tf":1.7320508075688772},"6412632":{"tf":1},"6412913":{"tf":1.4142135623730951},"6413778":{"tf":1},"6414060":{"tf":1}},"df":9,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{"6397574":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{"6413327":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"318630":{"tf":1},"4272538":{"tf":1},"6401946":{"tf":1},"6403354":{"tf":1},"6409972":{"tf":1},"6411169":{"tf":1},"6412259":{"tf":1},"6412589":{"tf":1},"6412863":{"tf":1},"6413244":{"tf":1},"6413523":{"tf":1},"6413908":{"tf":1}},"df":12},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"h":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"y":{"2":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"f":{"docs":{"6412566":{"tf":1},"6414152":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}},"[":{"7":{"docs":{},"df":0,",":{"2":{"5":{"docs":{"6403354":{"tf":1}},"df":1,",":{"docs":{},"df":0,",":{"7":{"docs":{},"df":0,",":{"4":{"0":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0,"[":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"4185821":{"tf":1.4142135623730951},"5306132":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413523":{"tf":1.7320508075688772},"6413778":{"tf":1}},"df":5,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1.7320508075688772},"6413183":{"tf":1},"6413778":{"tf":1.4142135623730951}},"df":3}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1.7320508075688772},"6413018":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"6409972":{"tf":1},"6412428":{"tf":1}},"df":2,"s":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6405964":{"tf":1},"6413416":{"tf":1},"6414123":{"tf":1}},"df":3}},"i":{"docs":{},"df":0,"x":{"docs":{"6411636":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412119":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1}},"df":3}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412997":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1.7320508075688772},"6296451":{"tf":1},"6364675":{"tf":1},"6410184":{"tf":1},"6412119":{"tf":1},"6412863":{"tf":1},"6412993":{"tf":1},"6413018":{"tf":1},"6413744":{"tf":1},"6414152":{"tf":1},"6414558":{"tf":1.7320508075688772},"6414614":{"tf":1.4142135623730951}},"df":13,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}},"p":{"docs":{"6413951":{"tf":1},"6414558":{"tf":1}},"df":2}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1},"6414123":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"m":{"docs":{"6413778":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6414782":{"tf":1.4142135623730951}},"df":1}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414782":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6413732":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1},"6414105":{"tf":1},"6414755":{"tf":1.7320508075688772}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414755":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1}},"df":1,"t":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1.7320508075688772},"6401946":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"5351143":{"tf":1},"6412632":{"tf":1},"6413183":{"tf":1},"6414613":{"tf":1}},"df":4}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6409944":{"tf":1},"6414152":{"tf":1.4142135623730951}},"df":2}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"6414152":{"tf":1}},"df":1,"t":{"docs":{"6411964":{"tf":1},"6413881":{"tf":1}},"df":2},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1.4142135623730951},"6411574":{"tf":1}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414253":{"tf":1}},"df":1}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}},"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1},"6412863":{"tf":1}},"df":2}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1},"6412334":{"tf":1.4142135623730951},"6414438":{"tf":1},"6414827":{"tf":1}},"df":4},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1},"6414107":{"tf":1}},"df":2}}}},"n":{"docs":{"6413541":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{"6413744":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{"6412753":{"tf":1},"6412993":{"tf":1}},"df":2}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6395651":{"tf":1},"6412632":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413541":{"tf":1},"6414614":{"tf":1}},"df":5}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"6174688":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1}},"df":5,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"y":{"docs":{"6414152":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1,"g":{"docs":{"6413744":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"6406161":{"tf":1},"6411194":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412997":{"tf":1}},"df":5,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414614":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}}}}}},"t":{"docs":{"6294393":{"tf":1},"6412993":{"tf":1},"6413541":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":4,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6413951":{"tf":1},"6414755":{"tf":1}},"df":2}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6411964":{"tf":1},"6414107":{"tf":1}},"df":2}}}}}}},"s":{"docs":{"4272538":{"tf":1},"6403354":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1}},"df":2,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{"3802824":{"tf":1.7320508075688772},"5306132":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":2.6457513110645907},"6409944":{"tf":1},"6412428":{"tf":2.449489742783178},"6412566":{"tf":1},"6412993":{"tf":1.4142135623730951},"6412997":{"tf":2.449489742783178},"6413036":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413416":{"tf":1},"6413512":{"tf":1},"6413541":{"tf":1},"6413549":{"tf":2.23606797749979},"6413732":{"tf":1},"6414060":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414782":{"tf":1.4142135623730951}},"df":20,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1},"6414152":{"tf":1}},"df":2}},"b":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"y":{"docs":{"6364675":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"(":{"docs":{},"df":0,"<":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"x":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413889":{"tf":1}},"df":1}}}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6174688":{"tf":1},"6397574":{"tf":1},"6405964":{"tf":1},"6412607":{"tf":1},"6413444":{"tf":1},"6413720":{"tf":1},"6414107":{"tf":1}},"df":7},"t":{"docs":{"6413036":{"tf":1}},"df":1}},"d":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{"3827055":{"tf":1}},"df":1}},"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1},"6414530":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"4047072":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1.4142135623730951},"6413720":{"tf":1.4142135623730951},"6413778":{"tf":1},"6413951":{"tf":1},"6414530":{"tf":1},"6414782":{"tf":1.4142135623730951}},"df":9,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,",":{"docs":{},"df":0,"q":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"4185821":{"tf":1},"6395651":{"tf":1},"6405964":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1},"6413944":{"tf":1},"6414473":{"tf":1}},"df":7,"e":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1},"6413244":{"tf":1}},"df":2}}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6413018":{"tf":1}},"df":2,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413541":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"3047391":{"tf":1},"6414782":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"p":{"docs":{"3802824":{"tf":1},"6412913":{"tf":1}},"df":2,"u":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413512":{"tf":1},"6414613":{"tf":1}},"df":4},"p":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1},"6414782":{"tf":1}},"df":2}}},"r":{"docs":{"6413744":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414578":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1},"6413512":{"tf":1}},"df":2}}}}},"o":{"docs":{},"df":0,"m":{"docs":{"4529460":{"tf":1}},"df":1},"r":{"docs":{},"df":0,"m":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6397574":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412566":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6403728":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{"6174688":{"tf":1},"6412753":{"tf":1},"6413523":{"tf":1.7320508075688772},"6414376":{"tf":1},"6414530":{"tf":1.7320508075688772}},"df":5,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"6413244":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6413356":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"{":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"[":{"0":{"docs":{"6414152":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{"4272538":{"tf":1},"6411169":{"tf":1},"6411778":{"tf":1}},"df":3}},"c":{"docs":{"318630":{"tf":1}},"df":1,"k":{"docs":{"6412993":{"tf":1},"6414240":{"tf":1}},"df":2},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6413720":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}}}}}},"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{"6413744":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"d":{"docs":{"6294393":{"tf":1}},"df":1}},"c":{"docs":{"3802824":{"tf":1}},"df":1},"x":{"docs":{"6403728":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"6364675":{"tf":1},"6397574":{"tf":1},"6413440":{"tf":1},"6413444":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":5,"a":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1},"5306132":{"tf":1},"6414613":{"tf":1}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"6401946":{"tf":1},"6411574":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412753":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1},"6414827":{"tf":1}},"df":7},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412997":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1},"6413444":{"tf":1}},"df":2,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"d":{"docs":{"3827055":{"tf":1},"6414107":{"tf":1}},"df":2,"i":{"docs":{"6403728":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6414614":{"tf":1},"6414782":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1.7320508075688772},"6411169":{"tf":1},"6413444":{"tf":1.4142135623730951}},"df":3,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"4508230":{"tf":1}},"df":1,"r":{"docs":{"6414123":{"tf":1}},"df":1,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1}},"df":1}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":2},"v":{"docs":{"318630":{"tf":1},"6364675":{"tf":1},"6411778":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6414093":{"tf":1}},"df":7}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6403354":{"tf":1},"6409944":{"tf":1}},"df":2}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1},"6296451":{"tf":1},"6403354":{"tf":1},"6404725":{"tf":1},"6411636":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1.7320508075688772},"6412589":{"tf":1.7320508075688772},"6412913":{"tf":1},"6412993":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413444":{"tf":1},"6413732":{"tf":1},"6413778":{"tf":1},"6414060":{"tf":1},"6414107":{"tf":1},"6414240":{"tf":1.7320508075688772},"6414530":{"tf":1.7320508075688772}},"df":18,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"r":{"docs":{"6414060":{"tf":1}},"df":1}}},"y":{"docs":{},"df":0,"p":{"docs":{"6398787":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413889":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"j":{"docs":{"3827055":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414578":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"j":{"4":{"docs":{},"df":0,"m":{"docs":{},"df":0,"z":{"9":{"docs":{},"df":0,"g":{"9":{"docs":{},"df":0,"g":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"2":{"0":{"0":{"9":{"docs":{},"df":0,"/":{"0":{"6":{"docs":{},"df":0,"/":{"1":{"7":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"8":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"q":{"docs":{},"df":0,"y":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"h":{"docs":{},"df":0,"j":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"f":{"6":{"docs":{},"df":0,"c":{"9":{"2":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"p":{"docs":{"6396782":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,".":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"v":{"docs":{"5306132":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6411964":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6411194":{"tf":1}},"df":1}}}}}}},"(":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6412997":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6409944":{"tf":1},"6413944":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6174688":{"tf":1}},"df":2}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6174688":{"tf":1.4142135623730951},"6397574":{"tf":1},"6412607":{"tf":1}},"df":3}},"n":{"docs":{},"df":0,"t":{"docs":{"3047391":{"tf":1},"6414438":{"tf":1}},"df":2}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1.4142135623730951}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1.4142135623730951}},"df":1}}}}}},"g":{"docs":{},"df":0,"n":{"docs":{"6414093":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1},"6412632":{"tf":1},"6413720":{"tf":1},"6414107":{"tf":1}},"df":6,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414105":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414558":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412259":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"3047391":{"tf":1.4142135623730951},"3827055":{"tf":1.4142135623730951},"6413265":{"tf":1},"6413523":{"tf":1}},"df":4,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"6413778":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"4529460":{"tf":1}},"df":1}}},"t":{"docs":{"6412589":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414107":{"tf":1}},"df":3,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6413327":{"tf":1}},"df":1}}},"docs":{},"df":0}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}},"q":{"docs":{"6404725":{"tf":1.4142135623730951}},"df":1,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1},"6413951":{"tf":1},"6414107":{"tf":1},"6414376":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":5}}},"i":{"docs":{},"df":0,"r":{"docs":{"6401946":{"tf":1},"6413183":{"tf":1},"6413327":{"tf":1},"6414558":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"f":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6397574":{"tf":1}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6398787":{"tf":1}},"df":1}}}},"l":{"docs":{"6401946":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1},"6413356":{"tf":1},"6414240":{"tf":1}},"df":3}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1},"6413944":{"tf":1}},"df":2}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1},"6412632":{"tf":1},"6414438":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"$":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":3}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4529460":{"tf":1.4142135623730951},"6411637":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413778":{"tf":1},"6414123":{"tf":1},"6414782":{"tf":1}},"df":7,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1.4142135623730951},"4460205":{"tf":1},"6409944":{"tf":1},"6411637":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1},"6413327":{"tf":1},"6413444":{"tf":1},"6413732":{"tf":1}},"df":9,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414755":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"[":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6412334":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413951":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"6413881":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413881":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"3":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}},"t":{"docs":{"6364675":{"tf":1}},"df":1},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":2.23606797749979}},"df":1,"}":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"[":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"e":{"docs":{"6364675":{"tf":2.8284271247461903}},"df":1}},"w":{"docs":{"6412119":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1.7320508075688772}},"df":1}},"g":{"docs":{},"df":0,"b":{"docs":{"6413744":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"6412753":{"tf":1.4142135623730951}},"df":1}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6411778":{"tf":1}},"df":1,"b":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"c":{"docs":{"3802824":{"tf":1.4142135623730951},"3827055":{"tf":1},"6414755":{"tf":2.449489742783178}},"df":3,"o":{"docs":{"6412566":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"6414827":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6413778":{"tf":1},"6413951":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1.7320508075688772},"6411964":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6403728":{"tf":1},"6404725":{"tf":1},"6410184":{"tf":1},"6412151":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413036":{"tf":1},"6413356":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414530":{"tf":1}},"df":11,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6413778":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6396782":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6396782":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"6411194":{"tf":1},"6414107":{"tf":1.4142135623730951}},"df":2}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1},"4529460":{"tf":2},"6412632":{"tf":1},"6412993":{"tf":1}},"df":4,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{"6412993":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":2.23606797749979}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1.4142135623730951}},"df":1,"u":{"docs":{"6414152":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6412993":{"tf":1},"6414755":{"tf":1.7320508075688772}},"df":3}},"n":{"docs":{},"df":0,"i":{"docs":{"3827055":{"tf":1},"6401946":{"tf":1}},"df":2}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"6409944":{"tf":1.7320508075688772},"6413732":{"tf":1},"6414105":{"tf":1.4142135623730951}},"df":4,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412151":{"tf":1.7320508075688772}},"df":1}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"6174688":{"tf":1}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6414152":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}},"\"":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"e":{"docs":{"78932":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"5351143":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1.7320508075688772},"6364675":{"tf":1.4142135623730951},"6396782":{"tf":1},"6401696":{"tf":1.4142135623730951},"6401946":{"tf":1},"6404725":{"tf":1.4142135623730951},"6410184":{"tf":1},"6410224":{"tf":1},"6411636":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412566":{"tf":1},"6412632":{"tf":1},"6412753":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6413240":{"tf":1},"6413440":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413908":{"tf":1.4142135623730951},"6414060":{"tf":1},"6414093":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414152":{"tf":1.4142135623730951},"6414240":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":3}},"df":37,">":{"0":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}}}}}}},"1":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1,"r":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"814910":{"tf":1},"4047072":{"tf":1},"4272538":{"tf":2},"4529460":{"tf":1.4142135623730951},"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6364675":{"tf":1.7320508075688772},"6397574":{"tf":1},"6401696":{"tf":1},"6401946":{"tf":1},"6403354":{"tf":2.6457513110645907},"6403728":{"tf":1},"6404725":{"tf":1.7320508075688772},"6409944":{"tf":1},"6409972":{"tf":1},"6410184":{"tf":1.4142135623730951},"6410224":{"tf":1},"6411169":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412151":{"tf":1.7320508075688772},"6412259":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412589":{"tf":2},"6412607":{"tf":1.4142135623730951},"6412632":{"tf":1.4142135623730951},"6412863":{"tf":1},"6412913":{"tf":1.7320508075688772},"6412993":{"tf":1},"6412997":{"tf":1},"6413018":{"tf":1.4142135623730951},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413244":{"tf":1},"6413265":{"tf":1.7320508075688772},"6413327":{"tf":1},"6413356":{"tf":1},"6413440":{"tf":1.4142135623730951},"6413512":{"tf":1.4142135623730951},"6413523":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413720":{"tf":2},"6413732":{"tf":1.4142135623730951},"6413778":{"tf":1},"6413889":{"tf":1},"6413908":{"tf":1},"6413944":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414253":{"tf":1.4142135623730951},"6414438":{"tf":2},"6414530":{"tf":1.4142135623730951},"6414614":{"tf":1.4142135623730951},"6414827":{"tf":1.4142135623730951}},"df":62}}}},"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}}}}}},"2":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414755":{"tf":1}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}},"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"2":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"3":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"4":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"5":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"6":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"7":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"8":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"9":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"0":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"1":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"2":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}},"b":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}},"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}}}}}},"x":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413944":{"tf":1}},"df":1,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,")":{"docs":{},"df":0,"{":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413440":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}}}},"a":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413356":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"6403728":{"tf":1}},"df":1}},"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414240":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411169":{"tf":1},"6412913":{"tf":1},"6414105":{"tf":1}},"df":3}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951},"4529460":{"tf":1},"6412589":{"tf":1},"6413018":{"tf":1},"6414152":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":6,"l":{"docs":{},"df":0,"i":{"docs":{"6413523":{"tf":1}},"df":1}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414755":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"6414755":{"tf":1}},"df":2}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1},"6401946":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}},"c":{"docs":{"6406161":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6414376":{"tf":1}},"df":2}},"i":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"t":{"docs":{"6411574":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"814910":{"tf":1}},"df":1}}}}}},":":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":2}},"df":1}}}},"e":{"docs":{"6414438":{"tf":1},"6414578":{"tf":1}},"df":2},"m":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"d":{"docs":{"6411282":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6397574":{"tf":1},"6412334":{"tf":1}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6395651":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"6401946":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}}}}},"o":{"docs":{"6410224":{"tf":1}},"df":1}},".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"_":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6403354":{"tf":1.4142135623730951},"6414123":{"tf":1.4142135623730951}},"df":2,":":{"docs":{},"df":0,"#":{"0":{"0":{"0":{"0":{"0":{"0":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"3":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{"6409972":{"tf":1.4142135623730951}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{"6412913":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"6413720":{"tf":1.4142135623730951},"6414105":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"i":{"docs":{"6413778":{"tf":1}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"6412151":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412993":{"tf":3},"6413951":{"tf":1.4142135623730951}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414827":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1},"6414530":{"tf":2.449489742783178}},"df":2}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":2.23606797749979}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}},"b":{"docs":{"6412997":{"tf":1.4142135623730951}},"df":1,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}},"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6414530":{"tf":2.449489742783178}},"df":1}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"g":{"docs":{"6412993":{"tf":1}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"6413240":{"tf":2}},"df":1}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":2.23606797749979}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6413951":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}},"z":{"docs":{"6412334":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"3802824":{"tf":1.7320508075688772},"4529460":{"tf":1},"6296451":{"tf":1.4142135623730951},"6411194":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413244":{"tf":1},"6413356":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413951":{"tf":1},"6414105":{"tf":2}},"df":10,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1},"6413265":{"tf":1}},"df":2}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"4508230":{"tf":1},"6364675":{"tf":1},"6409944":{"tf":1.7320508075688772},"6413444":{"tf":1}},"df":4,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413036":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"6412632":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413951":{"tf":1.7320508075688772}},"df":4}},"n":{"docs":{},"df":0,"e":{"docs":{"6411778":{"tf":1},"6412151":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413183":{"tf":1},"6413523":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"1":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"6411637":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6405964":{"tf":1},"6409972":{"tf":1},"6412993":{"tf":1},"6413018":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":2},"6413549":{"tf":1},"6413720":{"tf":1},"6414123":{"tf":1},"6414578":{"tf":1},"6414614":{"tf":2},"6414827":{"tf":1.4142135623730951}},"df":13,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6174688":{"tf":1},"6409972":{"tf":1.4142135623730951},"6412993":{"tf":2.23606797749979},"6414827":{"tf":1}},"df":4,"'":{"docs":{"6414614":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414123":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414060":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1},"6413523":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413889":{"tf":1},"6413944":{"tf":1.7320508075688772},"6414123":{"tf":2},"6414438":{"tf":1},"6414530":{"tf":2.449489742783178},"6414614":{"tf":1}},"df":10,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{"6412259":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6403728":{"tf":1.4142135623730951},"6414578":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{"6174688":{"tf":1},"6413944":{"tf":1}},"df":2}}}}}}},"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6411964":{"tf":1}},"df":1,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"5351143":{"tf":1},"6174688":{"tf":1},"6296451":{"tf":1},"6410184":{"tf":1.4142135623730951},"6413908":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":7,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":2}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"3802824":{"tf":1},"4047072":{"tf":1.4142135623730951},"5306132":{"tf":1},"6174688":{"tf":1.4142135623730951},"6364675":{"tf":1.7320508075688772},"6410184":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413778":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414152":{"tf":1}},"df":16},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"5549729":{"tf":1},"6414613":{"tf":1}},"df":2}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6403728":{"tf":1.7320508075688772}},"df":2}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{"6413018":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"6412334":{"tf":1},"6413889":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"g":{"docs":{"6413018":{"tf":1.7320508075688772}},"df":1}}}},"d":{"docs":{"6395651":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"h":{"docs":{"6414530":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6409944":{"tf":1},"6411964":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6414152":{"tf":1},"6414578":{"tf":1}},"df":7,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{"6413881":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"4185821":{"tf":1},"6409944":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412428":{"tf":1}},"df":7}},"m":{"docs":{},"df":0,"e":{"docs":{"6414240":{"tf":1},"6414438":{"tf":1}},"df":2}},"u":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1},"4529460":{"tf":1},"6364675":{"tf":1},"6412119":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":5}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{"6401696":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6410184":{"tf":1.7320508075688772}},"df":1},"b":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"6412566":{"tf":1}},"df":2}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413720":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"6294393":{"tf":1},"6410224":{"tf":1},"6411778":{"tf":1},"6412993":{"tf":2.6457513110645907},"6413541":{"tf":1},"6413720":{"tf":1},"6414438":{"tf":1}},"df":8,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":3},"6414530":{"tf":2.23606797749979}},"df":2,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"814910":{"tf":1},"6414438":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":3}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":1.4142135623730951},"6414093":{"tf":1}},"df":2}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6412720":{"tf":1},"6413881":{"tf":1.4142135623730951},"6414613":{"tf":1}},"df":3}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1},"4529460":{"tf":1},"6411636":{"tf":1.4142135623730951},"6411778":{"tf":1},"6412566":{"tf":1.4142135623730951},"6413944":{"tf":1}},"df":6}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1.7320508075688772}},"df":1}}}}},"m":{"docs":{"6412993":{"tf":1},"6413881":{"tf":1}},"df":2,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6413881":{"tf":1}},"df":1}}}}},"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"1":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6412993":{"tf":1}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6411636":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"78932":{"tf":1},"3047391":{"tf":1.7320508075688772},"4272538":{"tf":1.4142135623730951},"5306132":{"tf":1},"6296451":{"tf":1.4142135623730951},"6404725":{"tf":1.4142135623730951},"6412151":{"tf":1},"6412259":{"tf":1},"6413183":{"tf":1},"6413327":{"tf":1},"6414152":{"tf":1},"6414614":{"tf":1}},"df":12,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413327":{"tf":1},"6414530":{"tf":1}},"df":2}}}},"r":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1},"6174688":{"tf":1.4142135623730951},"6296451":{"tf":1},"6406161":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412913":{"tf":1.7320508075688772},"6413240":{"tf":2.23606797749979},"6413889":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":10,"u":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"t":{"docs":{"6413744":{"tf":1},"6414438":{"tf":1.4142135623730951}},"df":2,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413240":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412913":{"tf":1.7320508075688772}},"df":1}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6414782":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6414578":{"tf":1}},"df":1}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"=":{"0":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"j":{"docs":{},"df":0,"=":{"0":{"docs":{},"df":0,";":{"docs":{},"df":0,"j":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,";":{"docs":{},"df":0,"j":{"docs":{},"df":0,"+":{"docs":{},"df":0,"+":{"docs":{},"df":0,")":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"[":{"docs":{},"df":0,"j":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"=":{"docs":{},"df":0,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"u":{"docs":{"4047072":{"tf":1},"6413440":{"tf":1.4142135623730951}},"df":2}},"o":{"docs":{"6414240":{"tf":1}},"df":1},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6396782":{"tf":1},"6401696":{"tf":1},"6413327":{"tf":1},"6413778":{"tf":1}},"df":4}},"r":{"docs":{"6411637":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1}},"df":1}}},"i":{"docs":{"6414755":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{"6294393":{"tf":1},"6414530":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"6414827":{"tf":1}},"df":1},".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6403728":{"tf":1.4142135623730951},"6412993":{"tf":1},"6413244":{"tf":1},"6413440":{"tf":1},"6413512":{"tf":1},"6413778":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":10,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"6414152":{"tf":1.4142135623730951}},"df":1}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"4":{"docs":{"6296451":{"tf":1}},"df":1},"docs":{"318630":{"tf":1},"4272538":{"tf":1},"6174688":{"tf":1.4142135623730951},"6410184":{"tf":1.7320508075688772},"6412566":{"tf":1},"6413778":{"tf":1},"6413908":{"tf":1},"6414376":{"tf":1}},"df":8,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}},"y":{"docs":{"6413778":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"6174688":{"tf":1},"6412632":{"tf":1},"6414376":{"tf":1}},"df":3}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}},"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1}},"df":1}}}},"x":{"docs":{"4047072":{"tf":1},"4185821":{"tf":1},"4529460":{"tf":1.4142135623730951},"6403728":{"tf":1.7320508075688772},"6411636":{"tf":1},"6412259":{"tf":1},"6412607":{"tf":1},"6413265":{"tf":1},"6414614":{"tf":1}},"df":9},"l":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1.7320508075688772},"6401946":{"tf":1},"6410184":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413327":{"tf":2},"6413356":{"tf":1},"6413778":{"tf":2},"6414530":{"tf":1.7320508075688772},"6414558":{"tf":1.7320508075688772},"6414614":{"tf":1},"6414755":{"tf":1}},"df":11,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":2}},"df":1,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0},".":{"docs":{},"df":0,"v":{"docs":{"6296451":{"tf":1}},"df":1},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6296451":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414240":{"tf":1}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}},"l":{"docs":{"6413240":{"tf":1.7320508075688772},"6413889":{"tf":1}},"df":2},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1},"6412993":{"tf":2.8284271247461903}},"df":2,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1.7320508075688772}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"5351143":{"tf":1.7320508075688772},"6174688":{"tf":1},"6411778":{"tf":2},"6413036":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":2.6457513110645907}},"df":6}}},"n":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1},"6414558":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6412632":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6413244":{"tf":2.449489742783178}},"df":1}}}}},"d":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"6364675":{"tf":1.4142135623730951},"6406161":{"tf":1},"6411637":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413444":{"tf":1},"6414105":{"tf":1}},"df":11},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6413732":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6409944":{"tf":1.4142135623730951},"6412566":{"tf":1}},"df":2}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"4272538":{"tf":1.4142135623730951},"6296451":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412913":{"tf":1},"6412993":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1},"6414827":{"tf":1}},"df":8},"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"6396782":{"tf":1},"6413720":{"tf":1},"6414105":{"tf":1},"6414782":{"tf":1}},"df":4,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{"6412566":{"tf":1}},"df":1}},"r":{"docs":{"6294393":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1},"6413549":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1}},"df":7,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6409944":{"tf":1}},"df":1}}},"l":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"5306132":{"tf":1},"6296451":{"tf":1.4142135623730951},"6397574":{"tf":1},"6401946":{"tf":1.4142135623730951},"6403728":{"tf":1},"6405964":{"tf":1},"6409944":{"tf":1},"6411169":{"tf":1},"6411574":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1.7320508075688772},"6412334":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":2.449489742783178},"6412607":{"tf":1.4142135623730951},"6412632":{"tf":1.7320508075688772},"6412863":{"tf":1.4142135623730951},"6412913":{"tf":1.4142135623730951},"6412993":{"tf":2.23606797749979},"6413356":{"tf":2.23606797749979},"6413512":{"tf":1.4142135623730951},"6413523":{"tf":1.7320508075688772},"6413541":{"tf":1.7320508075688772},"6413720":{"tf":1.7320508075688772},"6413732":{"tf":1.4142135623730951},"6413778":{"tf":2},"6413944":{"tf":1},"6413951":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414530":{"tf":1},"6414614":{"tf":1}},"df":36,"(":{"docs":{"6412863":{"tf":1},"6414240":{"tf":1}},"df":2,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}},"p":{"docs":{"6404725":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2}}}}}}},"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{"4047072":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1},"6413523":{"tf":1}},"df":2}}}},"e":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6412151":{"tf":1.4142135623730951}},"df":2},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}},"x":{"docs":{"6412589":{"tf":1}},"df":1}},"=":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"3047391":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.7320508075688772}},"df":1}}}}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"%":{"2":{"0":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"5":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}}}}},"docs":{},"df":0},"docs":{},"df":0}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{"6413720":{"tf":1}},"df":1}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"6413549":{"tf":1},"6414782":{"tf":1}},"df":2},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"5306132":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6396782":{"tf":1.4142135623730951}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"w":{"docs":{"6414438":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1},"6412566":{"tf":1.7320508075688772}},"df":2,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6401946":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"d":{"docs":{"6412753":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"3827055":{"tf":1},"6411964":{"tf":1}},"df":2}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":2.449489742783178}},"df":1}},"a":{"docs":{},"df":0,"g":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6395651":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"b":{"docs":{"6413549":{"tf":1}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2,"(":{"docs":{},"df":0,"{":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{"6413720":{"tf":1}},"df":1}}},":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"6414105":{"tf":1}},"df":1}}}}}},"s":{"docs":{"6401946":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"b":{"docs":{"3802824":{"tf":1.4142135623730951},"6412566":{"tf":1}},"df":2,"o":{"docs":{},"df":0,"x":{"docs":{"4185821":{"tf":2.449489742783178},"6409972":{"tf":1},"6410224":{"tf":1},"6411282":{"tf":1.4142135623730951},"6412993":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413881":{"tf":1},"6414614":{"tf":1.7320508075688772},"6414827":{"tf":1}},"df":9,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414613":{"tf":1}},"df":1}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"4529460":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"!":{"docs":{},"df":0,"?":{"docs":{},"df":0,"!":{"docs":{},"df":0,"?":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6411169":{"tf":1}},"df":1,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{"6404725":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"h":{"docs":{"3802824":{"tf":1},"4185821":{"tf":1},"4272538":{"tf":1.4142135623730951},"4508230":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6413240":{"tf":1.4142135623730951}},"df":7,"e":{"docs":{},"df":0,"r":{"docs":{"6412632":{"tf":1}},"df":1}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1},"6414438":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":2},"6414530":{"tf":1}},"df":2}}}},"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6411636":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"4047072":{"tf":1},"6364675":{"tf":1},"6412334":{"tf":1},"6414438":{"tf":1}},"df":4,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414827":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1},"6413183":{"tf":1},"6414123":{"tf":2},"6414530":{"tf":2}},"df":4,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"4185821":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"6411778":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6414614":{"tf":1}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{"6403728":{"tf":1}},"df":1,"c":{"docs":{"3047391":{"tf":1},"6294393":{"tf":1},"6412753":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413444":{"tf":1},"6414438":{"tf":1}},"df":6}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"n":{"docs":{"6413549":{"tf":1.7320508075688772}},"df":1,"d":{"docs":{"6414782":{"tf":1}},"df":1}},"r":{"docs":{"4529460":{"tf":1},"6414240":{"tf":1},"6414438":{"tf":1}},"df":3},"t":{"docs":{},"df":0,"z":{"docs":{"6414240":{"tf":1}},"df":1}},"d":{"docs":{"3047391":{"tf":1}},"df":1}},"e":{"docs":{"6397574":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1.4142135623730951}},"df":5,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1},"6410184":{"tf":1},"6411637":{"tf":1},"6413265":{"tf":1},"6414614":{"tf":1}},"df":5,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}},";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":2}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1},"6412151":{"tf":1}},"df":2}}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"4272538":{"tf":1},"6414614":{"tf":1}},"df":2}},"v":{"docs":{"6413778":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6401946":{"tf":1},"6412997":{"tf":1},"6413356":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6413951":{"tf":1}},"df":6,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"4272538":{"tf":1},"6364675":{"tf":1}},"df":2}}}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1},"6411637":{"tf":1},"6412863":{"tf":1},"6413183":{"tf":1},"6413881":{"tf":1}},"df":5}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6403354":{"tf":1},"6411574":{"tf":1},"6412863":{"tf":1.4142135623730951}},"df":4},"i":{"docs":{},"df":0,"d":{"docs":{"6413523":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1},"6401946":{"tf":1},"6413018":{"tf":1}},"df":3,"n":{"docs":{"6403728":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,",":{"docs":{},"df":0,"#":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6364675":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412913":{"tf":1},"6412993":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":2}},"df":9,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414105":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"[":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"6364675":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6294393":{"tf":1},"6412566":{"tf":1}},"df":2}}},"g":{"docs":{"6412151":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1},"t":{"docs":{"6401946":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{"6404725":{"tf":1},"6412632":{"tf":2.23606797749979}},"df":2,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"318630":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1.7320508075688772},"6174688":{"tf":1.4142135623730951},"6364675":{"tf":1},"6395651":{"tf":1},"6409944":{"tf":1},"6411636":{"tf":1},"6411964":{"tf":1},"6412566":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1}},"df":18,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"3802824":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,",":{"1":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}},"a":{"docs":{},"df":0,"k":{"docs":{"3047391":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6412993":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}},">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6404725":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1},"6413951":{"tf":1}},"df":2,"a":{"docs":{"4529460":{"tf":1}},"df":1},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":1}},"df":1}}}},"t":{"docs":{"6412334":{"tf":1},"6413523":{"tf":1},"6413744":{"tf":2}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413744":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"4047072":{"tf":1},"6413440":{"tf":1.4142135623730951}},"df":2,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6409944":{"tf":1}},"df":1}}}}}},"h":{"docs":{"6414240":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"c":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412119":{"tf":1.4142135623730951},"6413440":{"tf":1},"6414558":{"tf":1}},"df":3,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.4142135623730951},"6403354":{"tf":3.4641016151377544},"6412566":{"tf":1.4142135623730951}},"df":3}}}}}}}},"g":{"docs":{"6414123":{"tf":1}},"df":1},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"z":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"3827055":{"tf":1},"4272538":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412632":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1}},"df":7,"=":{"docs":{},"df":0,"\"":{"1":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1},"2":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1},"3":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1},"4":{"docs":{"6410184":{"tf":1}},"df":1},"5":{"docs":{"6410184":{"tf":1}},"df":1},"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"3":{"docs":{"6412334":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}},"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"3":{"docs":{"6412334":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"g":{"1":{"docs":{"6412119":{"tf":1}},"df":1},"docs":{},"df":0}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"1":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"2":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"3":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"docs":{},"df":0}}},"b":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}},"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"2":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"1":{"docs":{"6412632":{"tf":1}},"df":1},"docs":{},"df":0}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"1":{"docs":{"6412632":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"b":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"1":{"docs":{"6413240":{"tf":1}},"df":1},"2":{"docs":{"6413240":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"%":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"}":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"1":{"docs":{"6413720":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"%":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"#":{"docs":{},"df":0,"{":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"“":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{"4508230":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6412607":{"tf":1},"6413265":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6414376":{"tf":1},"6414473":{"tf":1.4142135623730951}},"df":9,"l":{"docs":{"3827055":{"tf":1}},"df":1},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"814910":{"tf":1}},"df":1}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"6412720":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{"6413549":{"tf":1}},"df":1}}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{"6413549":{"tf":1}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"'":{"docs":{"5306132":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6413018":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1},"6414827":{"tf":1}},"df":8},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409972":{"tf":1},"6412993":{"tf":1},"6414613":{"tf":1}},"df":3}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1},"6411194":{"tf":2},"6412993":{"tf":1.7320508075688772}},"df":3}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1}},"df":1}}}}},"n":{"docs":{"6413744":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1},"6414614":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6414152":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"l":{"docs":{"6414558":{"tf":1}},"df":1},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}},"d":{"docs":{"3827055":{"tf":1},"4185821":{"tf":1},"4460205":{"tf":1.4142135623730951},"6412589":{"tf":1},"6413440":{"tf":1},"6414614":{"tf":1}},"df":6}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1},"6413018":{"tf":1},"6413265":{"tf":1}},"df":3}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":1.4142135623730951},"6414123":{"tf":1.7320508075688772}},"df":5,":":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"2":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,",":{"1":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"'":{"docs":{},"df":0,",":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413327":{"tf":1},"6414614":{"tf":1}},"df":5}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414473":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6414152":{"tf":1}},"df":4,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6296451":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6413356":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"x":{"docs":{"6364675":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412334":{"tf":1},"6413416":{"tf":1}},"df":4,"a":{"docs":{"6414530":{"tf":1}},"df":1},"b":{"docs":{"6414530":{"tf":1}},"df":1},".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5351143":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"6412720":{"tf":1},"6413183":{"tf":1},"6414123":{"tf":1}},"df":4}}},"v":{"docs":{"4047072":{"tf":1}},"df":1},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6364675":{"tf":1}},"df":1}}},"n":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1.7320508075688772}},"df":1}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1},"6412566":{"tf":1}},"df":2}}}},"g":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":2.449489742783178}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":2.23606797749979}},"df":1,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"w":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1},"h":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{"6413549":{"tf":1},"6414613":{"tf":1}},"df":2,"r":{"docs":{},"df":0,"m":{"docs":{"5306132":{"tf":1},"6397574":{"tf":1.4142135623730951},"6413889":{"tf":1.7320508075688772}},"df":3}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"_":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6404725":{"tf":1.7320508075688772},"6411169":{"tf":1},"6412334":{"tf":1}},"df":3}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411574":{"tf":1},"6412334":{"tf":1.4142135623730951}},"df":2,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412119":{"tf":1}},"df":1}}}},"m":{"docs":{"6396782":{"tf":1},"6412334":{"tf":1},"6413440":{"tf":1},"6413549":{"tf":1}},"df":4,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":3.4641016151377544},"6411778":{"tf":1},"6414614":{"tf":1}},"df":3,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1},"6396782":{"tf":1},"6409944":{"tf":1},"6410224":{"tf":1}},"df":4}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412334":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"g":{"docs":{"318630":{"tf":1},"814910":{"tf":1},"4529460":{"tf":3.3166247903554},"6412119":{"tf":2.6457513110645907},"6413541":{"tf":1},"6413744":{"tf":1.7320508075688772},"6414060":{"tf":1.4142135623730951},"6414530":{"tf":2.449489742783178}},"df":8,"e":{"docs":{},"df":0,"'":{"docs":{"4529460":{"tf":1}},"df":1,":":{"docs":{},"df":0,"'":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414530":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{},"df":0,")":{"docs":{},"df":0,"'":{"docs":{},"df":0,"}":{"docs":{},"df":0,",":{"5":{"0":{"0":{"0":{"docs":{"814910":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414530":{"tf":1}},"df":1}}},"´":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6414060":{"tf":1}},"df":1}}}}}}},"/":{"docs":{},"df":0,"p":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}}},"g":{"docs":{"318630":{"tf":1.4142135623730951},"6412119":{"tf":1.4142135623730951},"6414060":{"tf":1}},"df":3},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411574":{"tf":1}},"df":1}}}}}}}},"e":{"5":{"docs":{"6413908":{"tf":1}},"df":1},"6":{"docs":{"6413908":{"tf":1}},"df":1},"7":{"docs":{"318630":{"tf":1},"6413908":{"tf":1}},"df":2},"8":{"docs":{"6296451":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":2,"+":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6414558":{"tf":1}},"df":1}}}}}}},"9":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{"4272538":{"tf":2.23606797749979},"6174688":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1},"6414782":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"u":{"docs":{"6174688":{"tf":1},"6411636":{"tf":1},"6412428":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414558":{"tf":1}},"df":5,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413881":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413512":{"tf":1}},"df":1}}}}},".":{"docs":{"5306132":{"tf":1}},"df":1},"'":{"docs":{},"df":0,"v":{"docs":{"5306132":{"tf":1},"6364675":{"tf":1},"6412428":{"tf":1},"6412589":{"tf":1},"6412997":{"tf":1},"6413440":{"tf":1},"6414152":{"tf":1},"6414613":{"tf":1}},"df":8},"d":{"docs":{"4272538":{"tf":1},"6413244":{"tf":1}},"df":2},"m":{"docs":{"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412566":{"tf":2},"6412632":{"tf":1.4142135623730951},"6412997":{"tf":1},"6413183":{"tf":1},"6413356":{"tf":1},"6413416":{"tf":1},"6413444":{"tf":1},"6413744":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414578":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":14},"l":{"docs":{},"df":0,"l":{"docs":{"6412119":{"tf":1.7320508075688772},"6412632":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"(":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"!":{"docs":{},"df":0,"b":{"docs":{"6401696":{"tf":1}},"df":1},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413523":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412863":{"tf":1.4142135623730951}},"df":1}}}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1}}}},"=":{"0":{"docs":{"6414060":{"tf":1}},"df":1},"1":{"docs":{"6410184":{"tf":1},"6414530":{"tf":1}},"df":2,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"=":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0},":":{"docs":{},"df":0,"%":{"docs":{},"df":0,"m":{"docs":{"6414438":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6414060":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"5":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}},"a":{"docs":{},"df":0,"d":{"docs":{"4460205":{"tf":1},"6412566":{"tf":1}},"df":2}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1},"6364675":{"tf":1},"6411778":{"tf":1},"6412993":{"tf":2.449489742783178},"6413440":{"tf":1},"6413720":{"tf":1},"6413889":{"tf":1.7320508075688772},"6413944":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1}},"df":13,"=":{"docs":{},"df":0,"\"":{"docs":{"6414614":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6414614":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413944":{"tf":1}},"df":2}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{"6410184":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"1":{"docs":{"6413240":{"tf":1}},"df":1},"2":{"docs":{"6413240":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}}}}}},"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"}":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"0":{"docs":{"6414107":{"tf":1}},"df":1},"1":{"docs":{"6414107":{"tf":1}},"df":1},"2":{"docs":{"6414107":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":2}},"df":1}}}}}}}}}}}}}}}},"v":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1},"6413889":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,",":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"w":{"docs":{"3047391":{"tf":1},"3802824":{"tf":1.4142135623730951},"4272538":{"tf":1.4142135623730951},"5351143":{"tf":1},"6364675":{"tf":1.7320508075688772},"6409972":{"tf":1},"6411778":{"tf":1},"6411964":{"tf":1},"6412151":{"tf":1.7320508075688772},"6412589":{"tf":1},"6412993":{"tf":1},"6413265":{"tf":1},"6413356":{"tf":1},"6413541":{"tf":1},"6413732":{"tf":1},"6413908":{"tf":1},"6414093":{"tf":1.7320508075688772},"6414107":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414240":{"tf":1},"6414782":{"tf":1}},"df":21,"b":{"docs":{},"df":0,"i":{"docs":{"6413951":{"tf":1}},"df":1},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6411169":{"tf":1.7320508075688772}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"d":{"docs":{"318630":{"tf":1},"3047391":{"tf":1},"4185821":{"tf":1},"5306132":{"tf":2},"6294393":{"tf":1},"6395651":{"tf":1},"6397574":{"tf":1.4142135623730951},"6403354":{"tf":1},"6405964":{"tf":1.4142135623730951},"6411637":{"tf":1.4142135623730951},"6412428":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413889":{"tf":1},"6413944":{"tf":1},"6414107":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414376":{"tf":1},"6414613":{"tf":1},"6414782":{"tf":1}},"df":23,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414376":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}},"t":{"4":{"docs":{},"df":0,".":{"0":{"docs":{"6413444":{"tf":1}},"df":1},"docs":{},"df":0}},"docs":{"6412632":{"tf":1}},"df":1},"x":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6411637":{"tf":1.4142135623730951},"6413018":{"tf":1},"6413523":{"tf":1}},"df":4}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6411194":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1.4142135623730951},"6412997":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1.7320508075688772}},"df":1}}},"d":{"docs":{},"df":0,"e":{"docs":{"6401946":{"tf":1}},"df":1,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1},"6411574":{"tf":1.4142135623730951}},"df":2}},"'":{"docs":{"6401946":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"w":{"docs":{"3047391":{"tf":1},"6294393":{"tf":1.7320508075688772},"6409944":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413183":{"tf":1},"6413541":{"tf":1},"6413778":{"tf":1},"6414613":{"tf":1}},"df":9,"j":{"docs":{"6409944":{"tf":1}},"df":1},".":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{"6414093":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":3},"i":{"docs":{},"df":0,"c":{"docs":{"6413440":{"tf":1},"6414123":{"tf":1}},"df":2},"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"[":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"6401946":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1},"6412632":{"tf":1}},"df":4}}}},"o":{"docs":{},"df":0,"b":{"docs":{"6413523":{"tf":1}},"df":1}},"n":{"docs":{"6412566":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":2},"4529460":{"tf":2},"6412259":{"tf":1},"6413951":{"tf":1}},"df":4}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"6411169":{"tf":1.4142135623730951},"6411636":{"tf":1},"6411637":{"tf":2.6457513110645907},"6412632":{"tf":1},"6413240":{"tf":1},"6413720":{"tf":1},"6413881":{"tf":1},"6414558":{"tf":1}},"df":10,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"6412566":{"tf":1},"6413778":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1,":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1,":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"4047072":{"tf":1},"6174688":{"tf":1},"6403354":{"tf":1.4142135623730951},"6404725":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414107":{"tf":1},"6414530":{"tf":1}},"df":8,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412993":{"tf":1.4142135623730951},"6414614":{"tf":2},"6414827":{"tf":1}},"df":3}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":2},"6413523":{"tf":1},"6413889":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414614":{"tf":1}},"df":5,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1},"6412993":{"tf":1},"6414093":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412993":{"tf":1},"6414093":{"tf":1}},"df":3}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1},"6413889":{"tf":1},"6414614":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":3}}}}}},"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"4272538":{"tf":1.7320508075688772}},"df":1}}}}}}},"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413744":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"6409944":{"tf":1},"6411574":{"tf":1},"6412913":{"tf":1},"6413951":{"tf":1}},"df":4,"t":{"docs":{"6412119":{"tf":1},"6412566":{"tf":1.7320508075688772},"6414827":{"tf":1}},"df":3,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1},"6411964":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":3}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,":":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":2}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"b":{"docs":{"6414530":{"tf":1}},"df":1}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"[":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"0":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6412993":{"tf":1}},"df":2,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1.7320508075688772}},"df":1,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6410224":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}},",":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1}},"df":1}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6404725":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6412259":{"tf":1},"6412334":{"tf":1},"6413183":{"tf":1},"6413440":{"tf":1},"6413512":{"tf":1}},"df":9},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3827055":{"tf":1},"6174688":{"tf":1},"6412259":{"tf":1},"6412753":{"tf":1},"6413265":{"tf":1},"6413440":{"tf":1},"6414240":{"tf":1}},"df":7}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413512":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413356":{"tf":1}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"#":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1.7320508075688772}},"df":1}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412589":{"tf":1}},"df":1}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"k":{"docs":{"6403728":{"tf":1},"6413889":{"tf":1},"6414530":{"tf":1}},"df":3},"g":{"docs":{"6401946":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6413512":{"tf":1},"6414438":{"tf":1}},"df":5,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1},"6414123":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"r":{"docs":{"6414755":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"'":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1},"b":{"docs":{},"df":0,"i":{"docs":{"6403728":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{"6413240":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1.7320508075688772},"6411637":{"tf":1},"6413327":{"tf":1}},"df":3}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"3802824":{"tf":1},"6174688":{"tf":1},"6412993":{"tf":1},"6413444":{"tf":1},"6413889":{"tf":1}},"df":5,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}},"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"t":{"docs":{"6413444":{"tf":1}},"df":1}},"w":{"docs":{"6413523":{"tf":1},"6414107":{"tf":1},"6414558":{"tf":1}},"df":3,"n":{"docs":{"3047391":{"tf":1},"6401946":{"tf":1}},"df":2},"(":{"0":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"5306132":{"tf":1},"6401946":{"tf":1},"6412334":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6414578":{"tf":1}},"df":6,"s":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1},"6413523":{"tf":1},"6414613":{"tf":1}},"df":3}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413240":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}},"t":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6397574":{"tf":1},"6413541":{"tf":1}},"df":2}}}},"'":{"docs":{"6412589":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}},"l":{"docs":{"6294393":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414755":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"5306132":{"tf":1}},"df":1}}},"p":{"docs":{"6413889":{"tf":1},"6414438":{"tf":1}},"df":2,"i":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414376":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":2.8284271247461903}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"{":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6412151":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,":":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1},"6405964":{"tf":1.4142135623730951},"6411637":{"tf":1},"6414152":{"tf":1}},"df":4}},"b":{"docs":{"4529460":{"tf":1}},"df":1,"l":{"docs":{"5306132":{"tf":1},"6403728":{"tf":1.7320508075688772},"6410224":{"tf":1},"6412334":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":5},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1}},"df":1}}}}},"g":{"docs":{"6414105":{"tf":1},"6414240":{"tf":1}},"df":2,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"k":{"docs":{"6414376":{"tf":1}},"df":1},"l":{"docs":{"4529460":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"k":{"docs":{"6404725":{"tf":1.4142135623730951},"6411778":{"tf":2.8284271247461903}},"df":2}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414782":{"tf":1}},"df":1}}}}}}}}},"o":{"docs":{"4185821":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1},"6411637":{"tf":1},"6412428":{"tf":1},"6412863":{"tf":1},"6413183":{"tf":1.7320508075688772},"6413240":{"tf":1}},"df":8}},"r":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1.4142135623730951},"4529460":{"tf":1},"6364675":{"tf":1.4142135623730951},"6401696":{"tf":1},"6401946":{"tf":1.7320508075688772},"6409972":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412428":{"tf":1.4142135623730951},"6412566":{"tf":1.4142135623730951},"6412589":{"tf":1.7320508075688772},"6412607":{"tf":1},"6412632":{"tf":2},"6412753":{"tf":1},"6412913":{"tf":1},"6413183":{"tf":1},"6413356":{"tf":1},"6413444":{"tf":1.4142135623730951},"6413744":{"tf":1},"6413778":{"tf":1},"6414152":{"tf":2},"6414240":{"tf":1},"6414438":{"tf":1}},"df":22,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1},"6409944":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6412863":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":6}}}},"m":{"docs":{"6412993":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{"6413549":{"tf":2}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1.7320508075688772}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"6401946":{"tf":1},"6412151":{"tf":2},"6412993":{"tf":1.4142135623730951},"6413720":{"tf":1.7320508075688772},"6413908":{"tf":1},"6413951":{"tf":1.4142135623730951},"6414105":{"tf":2},"6414152":{"tf":1},"6414438":{"tf":1}},"df":9}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,")":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"814910":{"tf":1},"5351143":{"tf":1.4142135623730951},"6401946":{"tf":1},"6409944":{"tf":1},"6411964":{"tf":1},"6412632":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414613":{"tf":1}},"df":8,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"1":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1},"docs":{"6409944":{"tf":1},"6413523":{"tf":2}},"df":2}}},"\"":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"'":{"docs":{"6414438":{"tf":1}},"df":1},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411778":{"tf":1}},"df":1}}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6414530":{"tf":1.7320508075688772}},"df":2,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{"6414438":{"tf":1.7320508075688772}},"df":1,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{"6413744":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"1":{"docs":{},"df":0,"@":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,",":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"2":{"docs":{},"df":0,"@":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}},"docs":{"3827055":{"tf":2.449489742783178},"5306132":{"tf":1},"6364675":{"tf":2.23606797749979},"6412566":{"tf":1.4142135623730951},"6413444":{"tf":1},"6413778":{"tf":1}},"df":6,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6414240":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413732":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"i":{"docs":{"6413732":{"tf":1.7320508075688772},"6414240":{"tf":1.7320508075688772}},"df":2}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}},"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":2.6457513110645907},"5351143":{"tf":1.4142135623730951},"6403728":{"tf":1},"6412119":{"tf":1.4142135623730951},"6413018":{"tf":1},"6413036":{"tf":1},"6413720":{"tf":1},"6413881":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":10,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4185821":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"6413744":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"6174688":{"tf":1.4142135623730951}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,"d":{"docs":{"6413744":{"tf":1}},"df":1}},"docs":{},"df":0}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6413541":{"tf":1},"6413778":{"tf":1},"6414530":{"tf":1}},"df":4}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"4529460":{"tf":1},"6294393":{"tf":1.4142135623730951}},"df":3}}},"m":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1},"6412993":{"tf":1.4142135623730951}},"df":2,"=":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"{":{"docs":{},"df":0,"{":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"+":{"docs":{},"df":0,"=":{"1":{"docs":{"6412993":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"[":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"2":{"docs":{"6413720":{"tf":1}},"df":1},"3":{"docs":{"6413720":{"tf":1}},"df":1},"docs":{},"df":0}},"d":{"docs":{"6412334":{"tf":2}},"df":1,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}},"v":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":2}},"df":1,"u":{"docs":{"318630":{"tf":1},"3047391":{"tf":1.7320508075688772},"4529460":{"tf":1.4142135623730951},"5306132":{"tf":1},"6404725":{"tf":1.4142135623730951},"6410224":{"tf":1},"6411636":{"tf":2},"6411778":{"tf":1.4142135623730951},"6412632":{"tf":1.4142135623730951},"6412993":{"tf":2.23606797749979},"6413018":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":2},"6413444":{"tf":1},"6414123":{"tf":2},"6414253":{"tf":1},"6414438":{"tf":2.23606797749979},"6414530":{"tf":1.7320508075688772},"6414614":{"tf":1}},"df":19,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"1":{"0":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}},"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}},"2":{"3":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"1":{"2":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"4":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}},"7":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0},"4":{"5":{"6":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"4":{"5":{"6":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1}},"df":1}}}}}},"g":{"docs":{},"df":0,"o":{"docs":{"6414614":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"2":{"docs":{},"df":0,"+":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{"6410184":{"tf":1}},"df":1}}}},"docs":{"6410184":{"tf":1}},"df":1}}}},"b":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},"f":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}},"v":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6410184":{"tf":1}},"df":1}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6410184":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"s":{"docs":{"6413889":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"“":{"docs":{},"df":0,"v":{"docs":{"6414253":{"tf":2.449489742783178}},"df":1}},"'":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"+":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"+":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"[":{"0":{"docs":{"6414530":{"tf":1}},"df":1},"1":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0,"j":{"docs":{"6410184":{"tf":1}},"df":1}},"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6410184":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6410224":{"tf":1}},"df":1}}}}},"[":{"1":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"1":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"2":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"3":{"docs":{"6413018":{"tf":1}},"df":1},"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{"6413018":{"tf":1}},"df":1}}}},"2":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"3":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"4":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"o":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"5":{"docs":{"6413018":{"tf":1}},"df":1},"6":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"7":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"n":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"8":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"w":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"9":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"o":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}},"i":{"docs":{},"df":0,"d":{"docs":{"3047391":{"tf":1},"6411169":{"tf":1.7320508075688772},"6412913":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413444":{"tf":1}},"df":5,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"318630":{"tf":1.4142135623730951},"4272538":{"tf":3},"4529460":{"tf":2.8284271247461903},"6296451":{"tf":1},"6364675":{"tf":2.23606797749979},"6404725":{"tf":1.7320508075688772},"6410184":{"tf":2},"6410224":{"tf":1.7320508075688772},"6411169":{"tf":2.23606797749979},"6412151":{"tf":1},"6412334":{"tf":3.3166247903554},"6412589":{"tf":1.7320508075688772},"6412913":{"tf":1},"6412993":{"tf":2.23606797749979},"6413244":{"tf":1},"6413356":{"tf":1.4142135623730951},"6413440":{"tf":1.7320508075688772},"6413541":{"tf":1.7320508075688772},"6413732":{"tf":1},"6414060":{"tf":1.7320508075688772},"6414093":{"tf":2.23606797749979},"6414105":{"tf":1},"6414152":{"tf":2.449489742783178},"6414240":{"tf":1.7320508075688772},"6414530":{"tf":1},"6414614":{"tf":1}},"df":26,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"4529460":{"tf":1},"6401946":{"tf":1},"6411636":{"tf":1},"6412863":{"tf":1},"6413440":{"tf":1},"6414240":{"tf":1}},"df":7}}},"o":{"docs":{},"df":0,"u":{"docs":{"6412913":{"tf":1}},"df":1}}},"%":{"2":{"0":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"z":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,",":{"docs":{},"df":0,"b":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,",":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}},"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":2}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":2}},"df":1}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"1":{"docs":{},"df":0,".":{"0":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2},"docs":{},"df":0}},"docs":{},"df":0}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{"3047391":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"6403728":{"tf":1},"6412753":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6414613":{"tf":1}},"df":8,"f":{"docs":{},"df":0,"i":{"docs":{"6397574":{"tf":1},"6412632":{"tf":1}},"df":2}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"4185821":{"tf":1},"4460205":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413444":{"tf":1}},"df":6},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"6395651":{"tf":1},"6414473":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"3827055":{"tf":1},"6409972":{"tf":1},"6413416":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6409972":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414107":{"tf":1}},"df":1,"(":{"0":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}}}},"s":{"docs":{"3827055":{"tf":1}},"df":1}},"g":{"docs":{"6411169":{"tf":1}},"df":1,"t":{"docs":{"4272538":{"tf":2},"4529460":{"tf":1.7320508075688772},"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6364675":{"tf":1.4142135623730951},"6410184":{"tf":2.8284271247461903},"6412151":{"tf":2},"6412334":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":2},"6413240":{"tf":2},"6413523":{"tf":1},"6413889":{"tf":1.7320508075688772},"6413951":{"tf":3.4641016151377544},"6414614":{"tf":1},"6414827":{"tf":1}},"df":16,";":{"0":{"docs":{"6413523":{"tf":1}},"df":1},"3":{"8":{"1":{"0":{"0":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":2.6457513110645907}},"df":1}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{"6413889":{"tf":1.4142135623730951}},"df":1}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":3.4641016151377544}},"df":1}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"6413244":{"tf":1}},"df":1}}},"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"+":{"3":{"9":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1.4142135623730951},"4529460":{"tf":1},"6294393":{"tf":1},"6364675":{"tf":1.4142135623730951},"6398787":{"tf":1},"6409944":{"tf":1},"6410224":{"tf":1},"6411636":{"tf":1},"6412259":{"tf":1},"6412589":{"tf":1},"6412632":{"tf":1},"6413183":{"tf":1},"6413523":{"tf":1},"6414152":{"tf":1},"6414614":{"tf":1}},"df":15,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{"4047072":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414240":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6413541":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1.4142135623730951},"6294393":{"tf":1},"6411778":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412993":{"tf":1.4142135623730951},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":7}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1.7320508075688772}},"df":1}}}}},"o":{"docs":{"4272538":{"tf":1},"4529460":{"tf":1},"6397574":{"tf":1},"6412119":{"tf":1},"6412428":{"tf":1},"6413881":{"tf":1.4142135623730951},"6414438":{"tf":1},"6414614":{"tf":1},"6414782":{"tf":1}},"df":9,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1},"6411964":{"tf":1.7320508075688772},"6413244":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413908":{"tf":1},"6414613":{"tf":1}},"df":6,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"4":{"6":{"docs":{},"df":0,".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{"6414093":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"3047391":{"tf":1},"3827055":{"tf":1}},"df":2,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"6413416":{"tf":1}},"df":1}}}}}}},"e":{"docs":{"6412119":{"tf":1},"6413720":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":4}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1}},"df":1,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1},"6412119":{"tf":1}},"df":2},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"6406161":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1.4142135623730951},"4508230":{"tf":1},"6294393":{"tf":1},"6412753":{"tf":1},"6413512":{"tf":1},"6413944":{"tf":1}},"df":7,"n":{"docs":{"4529460":{"tf":1},"6174688":{"tf":1},"6410184":{"tf":1.4142135623730951},"6411636":{"tf":1},"6411778":{"tf":1.4142135623730951}},"df":5},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413549":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6411778":{"tf":1},"6412566":{"tf":1},"6412997":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1}},"df":6,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{"6414123":{"tf":1}},"df":1}},"y":{"docs":{"6412913":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6413549":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"+":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}},"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"w":{"docs":{"6413549":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"6414438":{"tf":1.7320508075688772}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}}}},"b":{"docs":{"6412993":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"d":{"docs":{"6409972":{"tf":2.23606797749979}},"df":1,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"4":{"6":{"docs":{},"df":0,".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{},"df":0,",":{"1":{"1":{"docs":{},"df":0,".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6414240":{"tf":1.4142135623730951}},"df":2,"s":{"docs":{},"df":0,"[":{"docs":{"6414240":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1},"6414093":{"tf":1.4142135623730951}},"df":2}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1},"6412632":{"tf":1}},"df":2}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6174688":{"tf":1}},"df":1}}}},"p":{"docs":{"6412566":{"tf":1}},"df":1,"r":{"docs":{"6410184":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"2":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}},"s":{"docs":{"6412993":{"tf":1},"6414107":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"e":{"docs":{"3827055":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1},"6403728":{"tf":1},"6410184":{"tf":1},"6411637":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412993":{"tf":1},"6413523":{"tf":1.7320508075688772},"6414376":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1.4142135623730951},"6414558":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":17,"n":{"docs":{"6413356":{"tf":1},"6414782":{"tf":1}},"df":2},"m":{"docs":{"6364675":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1}},"df":8}},"n":{"docs":{},"df":0,"d":{"docs":{"3827055":{"tf":1},"4047072":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6411637":{"tf":1},"6412632":{"tf":1},"6413720":{"tf":1.4142135623730951},"6414376":{"tf":1.4142135623730951},"6414827":{"tf":1}},"df":9,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"6414105":{"tf":1}},"df":1}}}}}},"t":{"docs":{"6174688":{"tf":1.7320508075688772},"6411637":{"tf":1},"6412428":{"tf":1},"6413951":{"tf":1.4142135623730951}},"df":4},"s":{"docs":{"6401946":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1.4142135623730951},"4529460":{"tf":1},"6409972":{"tf":1.7320508075688772},"6412913":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":2.449489742783178},"6413944":{"tf":1.4142135623730951},"6414253":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":1.7320508075688772}},"df":10,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414376":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6410224":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6413356":{"tf":1}},"df":1}}}}}},"t":{"docs":{"318630":{"tf":1},"5306132":{"tf":1},"6401946":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412334":{"tf":1},"6413018":{"tf":1},"6413183":{"tf":1},"6413356":{"tf":1},"6413523":{"tf":1.7320508075688772},"6413881":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":12,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1.4142135623730951},"6414558":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"{":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1},"6413444":{"tf":1},"6414438":{"tf":1}},"df":3}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6413240":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"318630":{"tf":1},"4508230":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1},"6409944":{"tf":1},"6411574":{"tf":1},"6412753":{"tf":1},"6413444":{"tf":1},"6413720":{"tf":1},"6413744":{"tf":1},"6413951":{"tf":1.4142135623730951},"6414107":{"tf":1},"6414123":{"tf":1}},"df":14,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"6403354":{"tf":1},"6411964":{"tf":1.7320508075688772},"6412428":{"tf":1},"6414107":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1},"4047072":{"tf":1},"6413018":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":7,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6411194":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"3827055":{"tf":1},"6412632":{"tf":1},"6413244":{"tf":1}},"df":3,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6397574":{"tf":1.4142135623730951},"6413720":{"tf":1},"6414105":{"tf":1.7320508075688772}},"df":3}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"6413778":{"tf":1},"6414614":{"tf":1}},"df":2},"r":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1.4142135623730951},"6411194":{"tf":1},"6413744":{"tf":1},"6414152":{"tf":1}},"df":4}}}}},"b":{"docs":{"6411194":{"tf":1}},"df":1,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1},"6364675":{"tf":1},"6412913":{"tf":1.7320508075688772},"6413889":{"tf":1}},"df":4}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6410224":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6410224":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6411778":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1},"6412997":{"tf":1},"6413951":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":4}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"4047072":{"tf":1},"6411169":{"tf":1},"6414152":{"tf":1},"6414530":{"tf":1}},"df":4,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414105":{"tf":1},"6414558":{"tf":1}},"df":2}}}}},":":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{"6411574":{"tf":1},"6411778":{"tf":1},"6412566":{"tf":1},"6412863":{"tf":1}},"df":4}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6396782":{"tf":1},"6411194":{"tf":1},"6411778":{"tf":1},"6412720":{"tf":1},"6413523":{"tf":1.4142135623730951}},"df":5,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6174688":{"tf":1}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413416":{"tf":1}},"df":1}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{"6403728":{"tf":1}},"df":1,"i":{"docs":{"6414123":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":2}},"a":{"docs":{},"df":0,"l":{"docs":{"6406161":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6411964":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412863":{"tf":1.4142135623730951},"6413444":{"tf":1},"6413732":{"tf":1}},"df":6,"i":{"docs":{"6412566":{"tf":1},"6412632":{"tf":1},"6414614":{"tf":1}},"df":3,"f":{"docs":{},"df":0,"i":{"docs":{"6413440":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1},"6413744":{"tf":1},"6414782":{"tf":1}},"df":3,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{"6414152":{"tf":1}},"df":1}}},"z":{"docs":{},"df":0,"e":{"docs":{"4529460":{"tf":2}},"df":1,"=":{"docs":{},"df":0,"\"":{"1":{"8":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0},"7":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1},"docs":{},"df":0}},":":{"2":{"2":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}},"d":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"5306132":{"tf":1},"6397574":{"tf":1},"6409944":{"tf":1},"6411574":{"tf":1},"6412428":{"tf":1.4142135623730951},"6412753":{"tf":1},"6413444":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":9}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"6413889":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"e":{"docs":{"6411574":{"tf":1},"6411964":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412913":{"tf":1},"6413416":{"tf":1},"6413549":{"tf":1},"6413889":{"tf":1.4142135623730951},"6414152":{"tf":1.4142135623730951}},"df":8,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412913":{"tf":1.7320508075688772}},"df":1}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6412863":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414614":{"tf":1}},"df":1},"t":{"docs":{},"df":0,"e":{"docs":{"4508230":{"tf":1},"5306132":{"tf":1},"6411964":{"tf":1}},"df":3,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413444":{"tf":1.4142135623730951},"6413523":{"tf":1}},"df":2}}}}},"u":{"docs":{"6413720":{"tf":1.4142135623730951},"6414105":{"tf":1},"6414107":{"tf":1.7320508075688772}},"df":3}},"r":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412753":{"tf":1},"6414438":{"tf":1.4142135623730951}},"df":3}},"c":{"docs":{},"df":0,"k":{"docs":{"6414438":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413889":{"tf":1}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6413523":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413744":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"6396782":{"tf":1},"6412119":{"tf":1},"6412993":{"tf":1},"6413356":{"tf":1}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1.7320508075688772},"6412334":{"tf":1.4142135623730951},"6414093":{"tf":1},"6414530":{"tf":1}},"df":4,":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"1":{"1":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}},"docs":{},"df":0},"5":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,";":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}},"'":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,":":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{"6414093":{"tf":1}},"df":1},"r":{"docs":{"6414093":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1.4142135623730951}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1.4142135623730951}},"df":1,">":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}},"f":{"docs":{},"df":0,"t":{"docs":{"6411282":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"1":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"2":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}},"docs":{},"df":0}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6398787":{"tf":1}},"df":1,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6398787":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"3047391":{"tf":1},"6364675":{"tf":1.7320508075688772},"6403354":{"tf":1.4142135623730951},"6405964":{"tf":1},"6412993":{"tf":2.6457513110645907},"6413018":{"tf":1},"6413244":{"tf":1},"6413444":{"tf":1.4142135623730951}},"df":8,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":2}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412913":{"tf":1},"6413512":{"tf":1},"6414558":{"tf":1}},"df":3}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6411574":{"tf":1},"6411778":{"tf":1},"6412334":{"tf":1}},"df":3,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6411574":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6414558":{"tf":1}},"df":2},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{"5351143":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6414558":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"k":{"docs":{"6412334":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{"3827055":{"tf":1},"6413416":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"f":{"docs":{"6412753":{"tf":1},"6413523":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":2.449489742783178}},"df":1}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1},"6412720":{"tf":1},"6412863":{"tf":1}},"df":5,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"1":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1.7320508075688772},"6414530":{"tf":1}},"df":2}},"v":{"docs":{"6174688":{"tf":1},"6412119":{"tf":1}},"df":2}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412428":{"tf":1},"6412720":{"tf":1},"6413512":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1},"6414558":{"tf":1},"6414782":{"tf":1}},"df":15}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6414613":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414240":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"6403728":{"tf":1},"6412632":{"tf":1},"6413240":{"tf":1},"6414105":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414240":{"tf":1}},"df":7}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414107":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{"6414782":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"3802824":{"tf":1},"6396782":{"tf":1},"6410184":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6414376":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"6413416":{"tf":1},"6414473":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"6397574":{"tf":1.7320508075688772}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"6413523":{"tf":1}},"df":1}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1},"6412997":{"tf":1}},"df":2}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6412119":{"tf":1},"6412993":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413732":{"tf":1},"6414438":{"tf":1},"6414613":{"tf":1}},"df":11,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414438":{"tf":1}},"df":1}}}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"2":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}},"i":{"docs":{"6413523":{"tf":1}},"df":1}}}}},"n":{"docs":{"6412119":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1},"6414530":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{"6294393":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6413183":{"tf":1}},"df":1}}}},"a":{"2":{"5":{"6":{"docs":{"6395651":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6412566":{"tf":1.4142135623730951},"6412863":{"tf":1},"6413720":{"tf":1.4142135623730951}},"df":3}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"3802824":{"tf":1},"5306132":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412566":{"tf":1},"6412863":{"tf":1},"6413244":{"tf":1.4142135623730951},"6414105":{"tf":1},"6414123":{"tf":1},"6414558":{"tf":1}},"df":9},"p":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1},"6413744":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1}},"df":5}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414093":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1},"4460205":{"tf":1},"6413908":{"tf":1}},"df":3,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"5549729":{"tf":1},"6413944":{"tf":1}},"df":2,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{"6413549":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6413416":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1.7320508075688772},"6412632":{"tf":1.4142135623730951},"6412993":{"tf":1},"6413036":{"tf":1},"6413523":{"tf":2},"6413541":{"tf":1},"6413549":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414530":{"tf":1}},"df":12,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"4529460":{"tf":1},"6403728":{"tf":1}},"df":2}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"4529460":{"tf":1},"6411282":{"tf":2}},"df":2}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1},"a":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{"6413549":{"tf":1}},"df":1},"m":{"docs":{"6413549":{"tf":1.4142135623730951}},"df":1,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1.7320508075688772}},"df":1}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"4185821":{"tf":1},"6412863":{"tf":1}},"df":2}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414578":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"w":{"docs":{"6413523":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1},"6414060":{"tf":1}},"df":2,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"#":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"1":{"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"x":{"docs":{},"df":0,"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"b":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,".":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,".":{"docs":{},"df":0,"/":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"p":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}}}}}}}},"m":{"docs":{"6409972":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1.4142135623730951},"6412753":{"tf":1},"6414123":{"tf":1},"6414558":{"tf":1}},"df":4}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1},"6412334":{"tf":1}},"df":2}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6414123":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"r":{"docs":{"6414107":{"tf":1}},"df":1}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"4508230":{"tf":1},"6401946":{"tf":1},"6411964":{"tf":1.4142135623730951}},"df":3}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}}}}},"w":{"3":{"docs":{"6412119":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"4460205":{"tf":1},"4529460":{"tf":1},"6398787":{"tf":1},"6403354":{"tf":1},"6405964":{"tf":1},"6411778":{"tf":1},"6412863":{"tf":1},"6413036":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1.4142135623730951},"6413523":{"tf":1.4142135623730951},"6413549":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414376":{"tf":1},"6414827":{"tf":1}},"df":19,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414123":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"5351143":{"tf":1},"6403728":{"tf":1.7320508075688772},"6409972":{"tf":1},"6411282":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412151":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412753":{"tf":1.4142135623730951},"6412863":{"tf":1.4142135623730951},"6412993":{"tf":1},"6412997":{"tf":1},"6413183":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6413881":{"tf":1},"6413908":{"tf":1},"6413944":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1.7320508075688772},"6414438":{"tf":1.4142135623730951},"6414473":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1},"6414755":{"tf":1.4142135623730951},"6414782":{"tf":1}},"df":29},"'":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6413416":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"6412607":{"tf":1},"6413416":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":4},"e":{"docs":{},"df":0,"v":{"docs":{"6414530":{"tf":1},"6414782":{"tf":1}},"df":2}}}},"y":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6296451":{"tf":1}},"df":1}}},"i":{"docs":{"6412151":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"3802824":{"tf":1},"4529460":{"tf":1}},"df":2}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413523":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"3802824":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"4272538":{"tf":1},"6412607":{"tf":1},"6413778":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414614":{"tf":1}},"df":6}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1},"5351143":{"tf":1},"6412151":{"tf":1},"6412753":{"tf":1},"6413356":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1}},"df":8,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"318630":{"tf":1},"3827055":{"tf":1},"4185821":{"tf":1},"4272538":{"tf":2},"4508230":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":2},"6403728":{"tf":1},"6410184":{"tf":1.4142135623730951},"6411574":{"tf":1},"6411636":{"tf":1.4142135623730951},"6411778":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412428":{"tf":1},"6412566":{"tf":1},"6412632":{"tf":2.23606797749979},"6412913":{"tf":1.4142135623730951},"6412993":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413512":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413744":{"tf":1.4142135623730951},"6413778":{"tf":1},"6413908":{"tf":1},"6414093":{"tf":1},"6414558":{"tf":1.4142135623730951},"6414578":{"tf":1.7320508075688772},"6414613":{"tf":1.7320508075688772}},"df":28,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}},"d":{"docs":{"6412993":{"tf":1},"6413732":{"tf":1}},"df":2},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{"6413523":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{"6411574":{"tf":1},"6411964":{"tf":1}},"df":2}},"l":{"docs":{},"df":0,"d":{"docs":{"6412753":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411778":{"tf":1},"6411964":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1}},"df":4}}},"'":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6413523":{"tf":1}},"df":2}}},"u":{"docs":{},"df":0,"d":{"docs":{"6174688":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"5306132":{"tf":1.4142135623730951},"6409944":{"tf":1},"6412428":{"tf":1},"6412993":{"tf":1},"6413440":{"tf":1},"6413744":{"tf":1}},"df":8}}},"i":{"docs":{},"df":0,"n":{"docs":{"6411282":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6413881":{"tf":1}},"df":4}}}},"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1.4142135623730951},"4529460":{"tf":2.449489742783178},"6403728":{"tf":3.1622776601683795},"6412119":{"tf":1.7320508075688772},"6412334":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":6,"=":{"docs":{},"df":0,"\"":{"1":{"1":{"0":{"docs":{"6412119":{"tf":1}},"df":1},"4":{"docs":{"6294393":{"tf":1}},"df":1},"5":{"docs":{"6294393":{"tf":2.6457513110645907}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"4":{"5":{"0":{"docs":{"6414105":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"#":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}},"e":{"docs":{"4529460":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"3802824":{"tf":1.4142135623730951},"6403728":{"tf":1},"6413416":{"tf":1},"6413732":{"tf":1.4142135623730951},"6414240":{"tf":1.4142135623730951}},"df":5,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"6413778":{"tf":1}},"df":2}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"b":{"docs":{"3802824":{"tf":1},"4508230":{"tf":1},"5306132":{"tf":1},"6396782":{"tf":1},"6403354":{"tf":1},"6406161":{"tf":1},"6411574":{"tf":1},"6412334":{"tf":1},"6413244":{"tf":1},"6413416":{"tf":1},"6413541":{"tf":1},"6413778":{"tf":1}},"df":12,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"4460205":{"tf":1},"6413244":{"tf":1},"6413881":{"tf":1},"6414105":{"tf":1},"6414152":{"tf":1},"6414578":{"tf":1}},"df":6,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414376":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"'":{"docs":{"6294393":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412428":{"tf":1.4142135623730951}},"df":1}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6411282":{"tf":1},"6413944":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411282":{"tf":1},"6414107":{"tf":1}},"df":2}}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}},"g":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6413744":{"tf":1}},"df":2}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"3802824":{"tf":1}},"df":2}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"3802824":{"tf":1}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4460205":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414438":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6174688":{"tf":1}},"df":1}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1}},"df":1}}},"w":{"docs":{},"df":0,"w":{"docs":{"6174688":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412913":{"tf":1},"6414152":{"tf":1},"6414827":{"tf":1}},"df":3}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1},"6412607":{"tf":1.4142135623730951}},"df":2}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{"6174688":{"tf":1},"6414438":{"tf":1}},"df":2}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6403354":{"tf":1.7320508075688772},"6410184":{"tf":1},"6412589":{"tf":1},"6412993":{"tf":2.23606797749979}},"df":4,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}},"(":{"0":{"docs":{"6412993":{"tf":1}},"df":1},"docs":{},"df":0},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{"4185821":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1},"6413018":{"tf":1}},"df":2},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413744":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"6411574":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"p":{"docs":{"4508230":{"tf":1},"6396782":{"tf":1},"6414558":{"tf":2}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1},"6414614":{"tf":1}},"df":2,"c":{"docs":{"3802824":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412753":{"tf":1}},"df":5,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413244":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}},"/":{"docs":{},"df":0,"x":{"docs":{"6174688":{"tf":1}},"df":1},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{"6414614":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"5306132":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1},"6411778":{"tf":1}},"df":2}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"78932":{"tf":1},"6412334":{"tf":1}},"df":2}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1},"6412334":{"tf":1},"6412753":{"tf":1}},"df":3,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413244":{"tf":1},"6413356":{"tf":1}},"df":2}},"a":{"docs":{},"df":0,"r":{"docs":{"5351143":{"tf":1},"6414558":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"d":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6413356":{"tf":1}},"df":1,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413356":{"tf":1}},"df":1}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{"6404725":{"tf":1},"6413244":{"tf":1}},"df":2,"'":{"docs":{"6414782":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"4508230":{"tf":1.4142135623730951},"5306132":{"tf":1.4142135623730951},"6364675":{"tf":1.4142135623730951},"6405964":{"tf":1},"6414614":{"tf":1}},"df":5,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"6413889":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6405964":{"tf":1}},"df":1}}}}}},"v":{"docs":{"6414438":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1},"6413944":{"tf":1.4142135623730951}},"df":2}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1},"6401946":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":1},"6413720":{"tf":1},"6414152":{"tf":1}},"df":9}},"p":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"k":{"docs":{},"df":0,"!":{"docs":{},"df":0,"!":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412334":{"tf":1},"6412753":{"tf":1}},"df":2}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6414578":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":2}}},"r":{"docs":{},"df":0,"e":{"docs":{"6412566":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"6411778":{"tf":1},"6413183":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1},"6412632":{"tf":1},"6413416":{"tf":1}},"df":3}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}},":":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}},"k":{"docs":{"4508230":{"tf":1},"6395651":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1.4142135623730951}},"df":4},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6411574":{"tf":1}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"6414614":{"tf":1}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1},"4529460":{"tf":1.7320508075688772},"6413720":{"tf":1},"6413778":{"tf":1}},"df":4}}}}}},"a":{"docs":{},"df":0,"z":{"docs":{"6414438":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6412913":{"tf":1}},"df":2}}}}},"d":{"docs":{"6296451":{"tf":1.4142135623730951},"6397574":{"tf":1},"6403728":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413440":{"tf":1},"6414105":{"tf":1}},"df":7,"d":{"docs":{"6364675":{"tf":2},"6401946":{"tf":1},"6409972":{"tf":1},"6411636":{"tf":1},"6411778":{"tf":2},"6412119":{"tf":1},"6412428":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413244":{"tf":1},"6413356":{"tf":1},"6413778":{"tf":1},"6414558":{"tf":1}},"df":12,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"u":{"docs":{"6412607":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6413244":{"tf":1},"6414152":{"tf":1.7320508075688772}},"df":2}}},"a":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}}}},"(":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1},"6414530":{"tf":1}},"df":2}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413889":{"tf":1},"6414105":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1}},"df":4}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401696":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"6364675":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"$":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413549":{"tf":1.4142135623730951}},"df":1}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1},"6413512":{"tf":1},"6413732":{"tf":1},"6413778":{"tf":1},"6414105":{"tf":1}},"df":5,"(":{"docs":{},"df":0,"u":{"docs":{"6412607":{"tf":1}},"df":1},"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{"6414240":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6414105":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"o":{"docs":{"6414105":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6412334":{"tf":1}},"df":1}}}},"y":{"docs":{"6412913":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6414060":{"tf":1}},"df":1}}},"'":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6401696":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6412334":{"tf":1}},"df":1}}}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6411169":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1.4142135623730951}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6294393":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6294393":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}},"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6413732":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413720":{"tf":1}},"df":1}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6405964":{"tf":1},"6406161":{"tf":1},"6412119":{"tf":1.4142135623730951},"6413327":{"tf":1.4142135623730951},"6413512":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413549":{"tf":1},"6413778":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":11}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6174688":{"tf":1},"6406161":{"tf":1},"6410184":{"tf":1},"6413778":{"tf":1},"6414530":{"tf":1}},"df":5}}}},"o":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1},"5549729":{"tf":1},"6364675":{"tf":1},"6401946":{"tf":1},"6411636":{"tf":1},"6412720":{"tf":1},"6412753":{"tf":1},"6414558":{"tf":1}},"df":8,"e":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{"6413778":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1},"6414240":{"tf":1}},"df":2,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414376":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}},"y":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"m":{"docs":{"814910":{"tf":1},"6411636":{"tf":1}},"df":2}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4047072":{"tf":2},"6174688":{"tf":1.4142135623730951},"6410184":{"tf":1},"6412753":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414530":{"tf":2}},"df":6,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6411778":{"tf":1},"6413183":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951}},"df":3}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"4047072":{"tf":1},"6412119":{"tf":1.4142135623730951}},"df":2,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1},"6413881":{"tf":1.4142135623730951},"6414578":{"tf":1}},"df":3}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6396782":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5351143":{"tf":1}},"df":1}}}}},"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413244":{"tf":1}},"df":1}}},"l":{"docs":{"6396782":{"tf":1},"6413183":{"tf":1},"6414105":{"tf":1.7320508075688772}},"df":3,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1}}}}}}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"6413444":{"tf":1}},"df":1}},"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":2}},"df":1,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6414123":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1}},"df":1}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6412119":{"tf":1},"6412334":{"tf":1}},"df":2},"r":{"docs":{"6411778":{"tf":1},"6412566":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6395651":{"tf":1}},"df":1}}}}},",":{"docs":{},"df":0,"b":{"docs":{},"df":0,",":{"docs":{},"df":0,"c":{"docs":{"3802824":{"tf":1}},"df":1}}}},"[":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}},".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1.7320508075688772}},"df":1}}}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{"6412589":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"h":{"1":{"docs":{},"df":0,">":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}},"2":{"docs":{},"df":0,">":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"2":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"2":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"6403728":{"tf":1.7320508075688772},"6412428":{"tf":1},"6412566":{"tf":1},"6413356":{"tf":1},"6413440":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1}},"df":7,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1}},"df":1}}}},"l":{"docs":{"3047391":{"tf":1.4142135623730951},"6412151":{"tf":1.7320508075688772},"6412428":{"tf":1.7320508075688772},"6413523":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"r":{"docs":{"6409944":{"tf":1},"6412334":{"tf":1},"6412863":{"tf":1}},"df":3}}}},"g":{"docs":{"6414152":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1},"6414152":{"tf":2}},"df":2,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":2}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"k":{"docs":{"6412863":{"tf":1}},"df":1}}},"r":{"docs":{"6401946":{"tf":1},"6414240":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":3,"e":{"docs":{},"df":0,"f":{"docs":{"6413720":{"tf":1},"6414060":{"tf":1}},"df":2,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"7":{"6":{"3":{"2":{"2":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"3":{"0":{"2":{"4":{"9":{"5":{"4":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"5":{"4":{"9":{"0":{"4":{"3":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"6":{"2":{"7":{"7":{"9":{"9":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"8":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{"6412607":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"q":{"docs":{},"df":0,"y":{"docs":{},"df":0,"x":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"f":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"7":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"h":{"docs":{},"df":0,"j":{"docs":{},"df":0,"m":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"f":{"6":{"docs":{},"df":0,"c":{"9":{"2":{"docs":{"6412863":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6414578":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"j":{"4":{"docs":{},"df":0,"m":{"docs":{},"df":0,"z":{"9":{"docs":{},"df":0,"g":{"9":{"docs":{},"df":0,"g":{"docs":{"6414473":{"tf":1}},"df":1}},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6411194":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"2":{"0":{"0":{"9":{"docs":{},"df":0,"/":{"0":{"6":{"docs":{},"df":0,"/":{"1":{"7":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}},"j":{"docs":{"3827055":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"p":{"docs":{"6396782":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"#":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"2":{"1":{"docs":{"5306132":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,".":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"7":{"2":{"4":{"9":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1},"6413265":{"tf":1.4142135623730951}},"df":2}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"#":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414060":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"4185821":{"tf":1},"5306132":{"tf":1},"6401946":{"tf":1},"6409944":{"tf":1},"6410184":{"tf":1},"6410224":{"tf":1},"6412632":{"tf":1.4142135623730951},"6412997":{"tf":1},"6413327":{"tf":1},"6413444":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413778":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":15,"'":{"docs":{"6412632":{"tf":1}},"df":1},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}}},"l":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1},"4529460":{"tf":1},"5351143":{"tf":1},"6403728":{"tf":1.4142135623730951},"6411574":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6412720":{"tf":1},"6412753":{"tf":1.4142135623730951},"6412993":{"tf":1},"6413018":{"tf":1},"6413240":{"tf":1},"6414240":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1},"6414578":{"tf":1},"6414613":{"tf":1}},"df":17,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6404725":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,",":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"n":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1.4142135623730951},"4529460":{"tf":2.449489742783178},"6412119":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6414093":{"tf":1}},"df":5,":":{"docs":{},"df":0,"'":{"1":{"0":{"0":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"=":{"docs":{},"df":0,"\"":{"5":{"3":{"docs":{"6294393":{"tf":1}},"df":1},"5":{"docs":{"6294393":{"tf":2.6457513110645907}},"df":1},"docs":{},"df":0},"9":{"0":{"docs":{"6412119":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6404725":{"tf":1},"6412428":{"tf":1},"6412632":{"tf":1}},"df":3}}}},"n":{"docs":{},"df":0,"c":{"docs":{"4529460":{"tf":1}},"df":1}},"y":{"docs":{"6413720":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6395651":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"5":{"docs":{"5306132":{"tf":1},"6412566":{"tf":1.7320508075688772}},"df":2},"docs":{"78932":{"tf":1},"5351143":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1.7320508075688772},"6405964":{"tf":1.7320508075688772},"6411778":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1.7320508075688772},"6413183":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414240":{"tf":1}},"df":12,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"6364675":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6294393":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"?":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413720":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"w":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"4":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}},":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"8":{"docs":{},"df":0,".":{"1":{"3":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"@":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1}},"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6411964":{"tf":1},"6412993":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"e":{"docs":{"6413265":{"tf":1},"6413549":{"tf":1}},"df":2,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1.7320508075688772},"6412119":{"tf":1}},"df":2}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6414438":{"tf":1}},"df":1}}},"e":{"docs":{"6413523":{"tf":1},"6414438":{"tf":1}},"df":2}},"g":{"docs":{},"df":0,"h":{"docs":{"6410184":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4508230":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6413183":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{"6410184":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"f":{"5":{"docs":{"6413744":{"tf":1}},"df":1},"docs":{},"df":0}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}},"j":{"docs":{"6410184":{"tf":1}},"df":1,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1},"814910":{"tf":1.4142135623730951},"4272538":{"tf":1},"4529460":{"tf":1},"5549729":{"tf":1},"6396782":{"tf":1.4142135623730951},"6403728":{"tf":1},"6405964":{"tf":1},"6411574":{"tf":1},"6412334":{"tf":1},"6412753":{"tf":1},"6412993":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413183":{"tf":1},"6413416":{"tf":1},"6414123":{"tf":1},"6414376":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":19},"y":{"docs":{},"df":0,"'":{"docs":{"6412334":{"tf":1}},"df":1},"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"{":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411194":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6412428":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413549":{"tf":1}},"df":3,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1.4142135623730951},"4185821":{"tf":1},"4272538":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6405964":{"tf":1},"6411574":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412428":{"tf":1.7320508075688772},"6412589":{"tf":1},"6412720":{"tf":1},"6412997":{"tf":1},"6413416":{"tf":1},"6413523":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414107":{"tf":1},"6414123":{"tf":1.7320508075688772},"6414152":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414376":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1.7320508075688772}},"df":32,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6296451":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414755":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1},"6414473":{"tf":1}},"df":2}}}},"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"'":{"docs":{"6412428":{"tf":1}},"df":1}}},"r":{"docs":{"6412993":{"tf":1.7320508075688772}},"df":1,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414107":{"tf":1}},"df":1,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{"6414107":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.7320508075688772}},"df":1}}}}}}},"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6413549":{"tf":1}},"df":1}}},"s":{"docs":{"3827055":{"tf":1},"6294393":{"tf":1},"6411282":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6414558":{"tf":1}},"df":9,"o":{"docs":{},"df":0,"n":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6403354":{"tf":1}},"df":1}}},"docs":{"6403354":{"tf":1.4142135623730951},"6414107":{"tf":1},"6414530":{"tf":1}},"df":3,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414107":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1.4142135623730951}},"df":1}}}}}},".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}},"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}},"=":{"1":{"docs":{"6410184":{"tf":1}},"df":1},"docs":{},"df":0}},"e":{"docs":{"6412993":{"tf":1},"6414105":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"3047391":{"tf":1},"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412863":{"tf":1},"6413416":{"tf":1},"6414123":{"tf":1},"6414614":{"tf":1}},"df":8,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}},",":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413444":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{"6414152":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6395651":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"#":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"2":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}},"3":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{"4272538":{"tf":1},"6404725":{"tf":1.7320508075688772},"6412259":{"tf":1},"6412566":{"tf":1},"6412913":{"tf":1},"6413327":{"tf":1},"6413444":{"tf":1.4142135623730951},"6414578":{"tf":1},"6414614":{"tf":1}},"df":9,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}},":":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6410184":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6403728":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6414558":{"tf":1},"6414755":{"tf":1}},"df":6,"t":{"docs":{"4185821":{"tf":1},"5306132":{"tf":2.8284271247461903},"6296451":{"tf":1},"6412334":{"tf":2.23606797749979},"6412863":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414613":{"tf":1.4142135623730951}},"df":7,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413018":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":2}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414782":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1},"6414438":{"tf":1}},"df":2}}}},"c":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412993":{"tf":1},"6412997":{"tf":1},"6413240":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":8,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,",":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{"6411637":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951},"6414578":{"tf":1}},"df":6,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5549729":{"tf":1},"6411637":{"tf":1},"6414782":{"tf":1}},"df":3}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}},"x":{"docs":{"6414755":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1},"5306132":{"tf":1},"6411636":{"tf":1},"6412993":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414782":{"tf":1}},"df":7,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413720":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6401696":{"tf":1},"6409944":{"tf":1},"6412334":{"tf":1},"6414613":{"tf":1}},"df":4}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6413951":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"i":{"docs":{"3827055":{"tf":1},"6364675":{"tf":1},"6412566":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6409944":{"tf":1}},"df":1}}}},"t":{"docs":{"6414123":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":1},"6413018":{"tf":1.7320508075688772}},"df":2}},"a":{"docs":{},"df":0,"n":{"docs":{"6413944":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"n":{"docs":{"6413778":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1},"6413416":{"tf":1}},"df":2}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"4508230":{"tf":1},"6413549":{"tf":1}},"df":3}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6403728":{"tf":1},"6411636":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6414123":{"tf":1}},"df":6}},"s":{"docs":{},"df":0,"s":{"docs":{"6414123":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411964":{"tf":1.4142135623730951},"6412632":{"tf":1}},"df":2}},"n":{"docs":{},"df":0,"s":{"docs":{"3827055":{"tf":1},"6406161":{"tf":1},"6413778":{"tf":1}},"df":3},"d":{"docs":{"6364675":{"tf":1},"6401946":{"tf":1}},"df":2}}},"r":{"docs":{},"df":0,"a":{"docs":{"6411964":{"tf":1},"6412566":{"tf":1},"6413018":{"tf":1}},"df":3,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}},"j":{"docs":{"6406161":{"tf":1}},"df":1,"s":{"4":{"docs":{"6409972":{"tf":1}},"df":1},"docs":{},"df":0}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}},"=":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1},"6294393":{"tf":1.7320508075688772},"6414473":{"tf":1}},"df":5}}}}},"m":{"docs":{},"df":0,">":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6414558":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6413018":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6413018":{"tf":1.4142135623730951}},"df":1}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413444":{"tf":1.4142135623730951}},"df":1}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}}}}},"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}},"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5351143":{"tf":1},"6410184":{"tf":1},"6413183":{"tf":1},"6413881":{"tf":2},"6414123":{"tf":1.4142135623730951}},"df":5}},"i":{"docs":{},"df":0,"r":{"docs":{"6413356":{"tf":1},"6413732":{"tf":1},"6413889":{"tf":1},"6414152":{"tf":1}},"df":4}},"r":{"docs":{},"df":0,"i":{"docs":{"6413183":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6411282":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1}},"df":3}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1}},"df":1}}},"d":{"docs":{"4185821":{"tf":1},"6411636":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1}},"df":4},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1.7320508075688772}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1},"6412993":{"tf":1},"6414438":{"tf":1}},"df":3}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"6411574":{"tf":1}},"df":1}}}}},"g":{"docs":{"6395651":{"tf":1},"6414438":{"tf":1}},"df":2},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414473":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6414105":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6414105":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1.7320508075688772},"6411636":{"tf":1}},"df":2}}}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6413778":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6411282":{"tf":1},"6414614":{"tf":2.6457513110645907}},"df":2}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1}},"df":1}}}}}}}}}},"v":{"docs":{"6364675":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"4529460":{"tf":1.4142135623730951},"6364675":{"tf":1},"6409972":{"tf":1},"6411282":{"tf":1},"6412119":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1.4142135623730951},"6414107":{"tf":1}},"df":8,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1},"6414782":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{"6414123":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"i":{"docs":{"6414123":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":2.23606797749979},"6403728":{"tf":1},"6411637":{"tf":1},"6412863":{"tf":1},"6414152":{"tf":1.4142135623730951}},"df":7,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}},":":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"1":{"docs":{"4272538":{"tf":1}},"df":1},"2":{"docs":{"4272538":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"4529460":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6413356":{"tf":1},"6414123":{"tf":1}},"df":5}},"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}},"v":{"docs":{"6403728":{"tf":1},"6411778":{"tf":1},"6412334":{"tf":2.23606797749979},"6412863":{"tf":1},"6412997":{"tf":1.7320508075688772},"6413523":{"tf":1},"6413720":{"tf":1}},"df":7,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1.7320508075688772}},"df":1}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6411282":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{"6397574":{"tf":1},"6410184":{"tf":1},"6412632":{"tf":1},"6413744":{"tf":1}},"df":4,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1},"6411964":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6413018":{"tf":1},"6413444":{"tf":1},"6413523":{"tf":1},"6414123":{"tf":1},"6414614":{"tf":1},"6414755":{"tf":1}},"df":10}},"t":{"docs":{"6412753":{"tf":1},"6414105":{"tf":1}},"df":2},"e":{"docs":{"6294393":{"tf":1},"6397574":{"tf":1},"6403728":{"tf":1},"6413523":{"tf":1}},"df":4,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413036":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{"6403354":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}}},"[":{"0":{"docs":{"6403354":{"tf":1}},"df":1,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}}}},"docs":{},"df":0}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}},"w":{"docs":{},"df":0,"n":{"docs":{"6411964":{"tf":1},"6413444":{"tf":1},"6413881":{"tf":1}},"df":3,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6411964":{"tf":1},"6413744":{"tf":1},"6414152":{"tf":1},"6414376":{"tf":1},"6414558":{"tf":1.7320508075688772},"6414782":{"tf":1.7320508075688772}},"df":6}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951},"6410184":{"tf":1},"6412607":{"tf":1},"6412632":{"tf":1.4142135623730951},"6413523":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1},"6414093":{"tf":1},"6414152":{"tf":1.4142135623730951}},"df":9}},"t":{"docs":{"4047072":{"tf":1},"6414578":{"tf":1}},"df":2}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1},"6413732":{"tf":1}},"df":2,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"4047072":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"b":{"docs":{"6414105":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}}}}}},"docs":{},"df":0}}}}}}}}},"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414060":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6414152":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1},"6414093":{"tf":1}},"df":2}}}}}}},"i":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"4272538":{"tf":1}},"df":1}}}},"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{"6396782":{"tf":1.4142135623730951},"6413327":{"tf":1}},"df":2}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1},"6296451":{"tf":1},"6409972":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413720":{"tf":1},"6414152":{"tf":1}},"df":6,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6414755":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1}},"df":1}},"e":{"docs":{"4529460":{"tf":1},"6412428":{"tf":1}},"df":2},"d":{"docs":{},"df":0,"e":{"docs":{"6413944":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"v":{"docs":{"6412334":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1},"6411574":{"tf":1},"6411964":{"tf":1.4142135623730951}},"df":3}}}},"i":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}},"f":{"docs":{"6364675":{"tf":2}},"df":1,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1.4142135623730951},"6412428":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":5}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6398787":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1}},"df":4,"i":{"docs":{},"df":0,"t":{"docs":{"6414558":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1.7320508075688772},"6412566":{"tf":1},"6413036":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413265":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6413951":{"tf":1.7320508075688772}},"df":2}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6413244":{"tf":1},"6413720":{"tf":1}},"df":3,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1},"6414253":{"tf":1}},"df":2}}}}},"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}},"k":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"6403728":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412863":{"tf":1.4142135623730951},"6413240":{"tf":1},"6414123":{"tf":1}},"df":3}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1},"6410184":{"tf":1},"6412632":{"tf":1},"6413416":{"tf":1}},"df":4,"g":{"docs":{"6412334":{"tf":1.7320508075688772}},"df":1},".":{"docs":{},"df":0,"j":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6412334":{"tf":1}},"df":2},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6411282":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413744":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"3047391":{"tf":1},"5306132":{"tf":1}},"df":2,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414613":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{"3047391":{"tf":1},"4047072":{"tf":1},"4185821":{"tf":1.4142135623730951},"4529460":{"tf":1},"5351143":{"tf":2},"6174688":{"tf":2.23606797749979},"6403354":{"tf":2},"6411964":{"tf":1},"6413183":{"tf":1},"6413744":{"tf":1.7320508075688772},"6414123":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":2},"6414613":{"tf":1}},"df":15,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6410224":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"e":{"docs":{"5549729":{"tf":1},"6414438":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6414152":{"tf":1}},"df":1,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411964":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6413549":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1},"6412334":{"tf":2.449489742783178},"6412993":{"tf":1}},"df":3,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6414253":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":2.449489742783178}},"df":1,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":2}},"df":1,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":2.23606797749979}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}},".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,")":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":3},"6413327":{"tf":1},"6414093":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":6,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{"5351143":{"tf":1.4142135623730951},"5549729":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}}},"k":{"docs":{"6411282":{"tf":1}},"df":1}},"g":{"docs":{"6412428":{"tf":1.4142135623730951},"6414105":{"tf":1}},"df":2,"i":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1},"6414755":{"tf":1.4142135623730951}},"df":2},"n":{"docs":{"6412428":{"tf":1.7320508075688772},"6413720":{"tf":1},"6414105":{"tf":1}},"df":3,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"2":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"k":{"docs":{"3047391":{"tf":1},"3802824":{"tf":1},"4529460":{"tf":1},"6412334":{"tf":1},"6413183":{"tf":1},"6413416":{"tf":1},"6413744":{"tf":1},"6413889":{"tf":1},"6414107":{"tf":1},"6414438":{"tf":1},"6414613":{"tf":1}},"df":11,"u":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1},"6412566":{"tf":1}},"df":2,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"3827055":{"tf":1},"4272538":{"tf":1},"6414438":{"tf":1}},"df":3}},"a":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1},"6364675":{"tf":1},"6409944":{"tf":1},"6412566":{"tf":1},"6413541":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6414093":{"tf":1.7320508075688772},"6414152":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414558":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":13,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}},"docs":{},"df":0}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6413778":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412997":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6414613":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{"6413541":{"tf":1.7320508075688772}},"df":1,"g":{"docs":{"6409944":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"6414558":{"tf":1}},"df":1}}}},"t":{"docs":{"6364675":{"tf":1},"6414123":{"tf":1}},"df":2,"t":{"docs":{},"df":0,"o":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1}}},"w":{"docs":{"6410184":{"tf":1}},"df":1}},"t":{"docs":{"4272538":{"tf":1},"6412993":{"tf":1},"6413951":{"tf":1.4142135623730951}},"df":3,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":3}}},"b":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1.4142135623730951},"6413240":{"tf":2},"6413265":{"tf":1.4142135623730951},"6413889":{"tf":1.7320508075688772},"6413944":{"tf":1},"6414123":{"tf":1},"6414240":{"tf":1},"6414614":{"tf":2.449489742783178}},"df":8}}}},"m":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":2.8284271247461903},"6412993":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1.7320508075688772}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1},"6410224":{"tf":1},"6413183":{"tf":1},"6413944":{"tf":1}},"df":4}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6412119":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413732":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414240":{"tf":1}},"df":9,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413720":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414105":{"tf":1},"6414240":{"tf":1}},"df":6}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414614":{"tf":1}},"df":4}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412632":{"tf":1},"6412993":{"tf":2.23606797749979},"6412997":{"tf":2.449489742783178},"6413244":{"tf":1.4142135623730951},"6413720":{"tf":2},"6413951":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":9}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6296451":{"tf":1},"6413183":{"tf":1.7320508075688772},"6413944":{"tf":1},"6414253":{"tf":1.4142135623730951}},"df":5,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412119":{"tf":1},"6412993":{"tf":1},"6413541":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413944":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414240":{"tf":1}},"df":10}}}}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412993":{"tf":1}},"df":2}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6403728":{"tf":1},"6412632":{"tf":1.4142135623730951},"6413265":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":6}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}},"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6403728":{"tf":1},"6412632":{"tf":1},"6414530":{"tf":1}},"df":4}}}}}}},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412334":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":3}}}}},"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":6}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6412993":{"tf":2.23606797749979}},"df":2}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6364675":{"tf":1},"6412993":{"tf":1}},"df":3}}}}},"p":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412632":{"tf":1},"6412993":{"tf":2.8284271247461903},"6412997":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413720":{"tf":1.7320508075688772},"6413951":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1}},"df":11,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":2}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6403728":{"tf":1},"6412632":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951}},"df":4,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412632":{"tf":1}},"df":1},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"$":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"}":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"{":{"docs":{},"df":0,"{":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"}":{"docs":{},"df":0,"}":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"d":{"docs":{"6364675":{"tf":1},"6403728":{"tf":2.8284271247461903},"6413265":{"tf":1.4142135623730951},"6414530":{"tf":3.7416573867739413}},"df":4,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6414123":{"tf":1.4142135623730951}},"df":2,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1.7320508075688772}},"df":1}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}},"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412632":{"tf":1}},"df":1,"e":{"1":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}},"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":2.23606797749979}},"df":1}}}}}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":2.8284271247461903}},"df":1}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"8":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1}},"df":1},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6412997":{"tf":2}},"df":1}}}}}}}},"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":5}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951}},"df":2}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413240":{"tf":2},"6414123":{"tf":1}},"df":2}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"i":{"docs":{"6294393":{"tf":2.8284271247461903},"6412993":{"tf":2.23606797749979}},"df":2}},"a":{"docs":{"6364675":{"tf":1},"6412119":{"tf":1},"6413720":{"tf":1}},"df":3,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"78932":{"tf":2},"6410224":{"tf":1.4142135623730951},"6413183":{"tf":3.4641016151377544},"6413944":{"tf":1.4142135623730951},"6414253":{"tf":2.449489742783178}},"df":5}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413944":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1}},"df":2,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}},"i":{"docs":{"4185821":{"tf":1.4142135623730951},"6411636":{"tf":1},"6412993":{"tf":1},"6413881":{"tf":1},"6414105":{"tf":1}},"df":5,"v":{"docs":{},"df":0,"e":{"docs":{"6414614":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"k":{"docs":{"3802824":{"tf":1.7320508075688772},"6294393":{"tf":1},"6413244":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413951":{"tf":1},"6414558":{"tf":1},"6414782":{"tf":1.4142135623730951}},"df":7,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{"6412259":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6413018":{"tf":1},"6413778":{"tf":1},"6414240":{"tf":1},"6414578":{"tf":1}},"df":7}},">":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1.4142135623730951},"5306132":{"tf":1}},"df":2}}}},"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"5306132":{"tf":1.7320508075688772}},"df":1}},"a":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1},"r":{"docs":{"6414105":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1}},"df":1}},"i":{"docs":{"6414105":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6414105":{"tf":1}},"df":1}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"814910":{"tf":1},"6413444":{"tf":1}},"df":2},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6413881":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1},"6412151":{"tf":1.7320508075688772},"6412993":{"tf":2.23606797749979},"6413183":{"tf":2.23606797749979},"6413416":{"tf":1},"6414253":{"tf":1},"6414613":{"tf":1.7320508075688772}},"df":7,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}},"\"":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"78932":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1},"6414240":{"tf":1},"6414438":{"tf":1}},"df":3}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":3.1622776601683795}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}},"b":{"docs":{"6403354":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4508230":{"tf":1},"6405964":{"tf":1},"6412566":{"tf":1},"6412720":{"tf":1},"6413744":{"tf":1}},"df":5}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6412993":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}},".":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{"6411964":{"tf":1}},"df":1}}},"=":{"1":{"0":{"6":{"7":{"docs":{"6413541":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":2}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1.4142135623730951},"6412993":{"tf":1},"6414123":{"tf":1}},"df":3}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6411574":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1.4142135623730951},"6412119":{"tf":1},"6412913":{"tf":1},"6413523":{"tf":1},"6413889":{"tf":1}},"df":5}},"r":{"docs":{},"df":0,"g":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1.4142135623730951}},"df":1}}}},"c":{"docs":{},"df":0,"k":{"docs":{"6401946":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"t":{"docs":{"6411636":{"tf":1}},"df":1,"'":{"docs":{"6414755":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411574":{"tf":1},"6414438":{"tf":1}},"df":2}},"d":{"docs":{"6409972":{"tf":1}},"df":1},"v":{"docs":{"78932":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1.4142135623730951},"6412589":{"tf":1.4142135623730951},"6413440":{"tf":2.8284271247461903},"6413881":{"tf":1}},"df":4}}}},"f":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4529460":{"tf":1.4142135623730951},"6411636":{"tf":1.7320508075688772},"6412119":{"tf":1},"6413183":{"tf":1}},"df":5,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1.4142135623730951}},"df":1}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"6403354":{"tf":2},"6411778":{"tf":1}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4508230":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6411574":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412589":{"tf":1},"6412632":{"tf":1.4142135623730951}},"df":2}}}},"k":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"3827055":{"tf":1},"5306132":{"tf":1},"5549729":{"tf":1},"6294393":{"tf":1},"6397574":{"tf":1},"6401946":{"tf":1},"6403728":{"tf":1},"6405964":{"tf":1},"6406161":{"tf":1},"6410184":{"tf":1},"6411636":{"tf":1},"6412151":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1},"6412863":{"tf":1},"6413018":{"tf":1},"6413036":{"tf":1},"6413440":{"tf":1},"6413549":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414105":{"tf":1.7320508075688772},"6414123":{"tf":1},"6414614":{"tf":1},"6414755":{"tf":1},"6414782":{"tf":1}},"df":26,"n":{"docs":{"6413549":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6411636":{"tf":1},"6414152":{"tf":1},"6414755":{"tf":1}},"df":4}},"y":{"docs":{"3047391":{"tf":1.4142135623730951},"5306132":{"tf":3},"6413018":{"tf":1},"6413523":{"tf":1.7320508075688772}},"df":4,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":2.23606797749979}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":2.23606797749979}},"df":1}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1},"5306132":{"tf":1}},"df":2}}}},"u":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1},"6413523":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1}},"df":1,"a":{"docs":{"6412753":{"tf":1}},"df":1}}}}},"m":{"docs":{"6410224":{"tf":1.4142135623730951},"6414107":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1},"6404725":{"tf":1},"6411637":{"tf":1.4142135623730951},"6413416":{"tf":1},"6413720":{"tf":1},"6413778":{"tf":1},"6413951":{"tf":1.4142135623730951}},"df":8,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951}},"df":2}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1},"6411964":{"tf":1},"6414755":{"tf":1}},"df":3}},".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1}},"df":1}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6397574":{"tf":1},"6404725":{"tf":1.4142135623730951},"6413720":{"tf":2}},"df":3}}}},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"u":{"docs":{"6294393":{"tf":1.4142135623730951},"6411194":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411194":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}},"a":{"docs":{},"df":0,"x":{"docs":{"6414438":{"tf":2}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"1":{"2":{"8":{"docs":{"6413240":{"tf":2}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"5":{"0":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{"6174688":{"tf":1}},"df":1,"u":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6296451":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":2}},"df":1,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412119":{"tf":1.7320508075688772}},"df":1}}}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1,"'":{"docs":{"6414755":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"h":{"docs":{"6414123":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}},"y":{"docs":{},"df":0,"b":{"docs":{"6409944":{"tf":1},"6412119":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414755":{"tf":1}},"df":4}},"k":{"docs":{},"df":0,"e":{"docs":{"4047072":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1},"6403728":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1},"6412589":{"tf":1},"6413036":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414473":{"tf":1},"6414755":{"tf":1}},"df":14}},"i":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6401946":{"tf":1}},"df":1}}}},"p":{"docs":{"5306132":{"tf":1.4142135623730951},"6412720":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413541":{"tf":1.7320508075688772},"6414093":{"tf":1.4142135623730951}},"df":5,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413244":{"tf":1},"6413541":{"tf":1}},"df":2}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6414093":{"tf":1}},"df":1}}}}}},"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}},"c":{"docs":{"6174688":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414578":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6414558":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"4508230":{"tf":1},"6409944":{"tf":1},"6413549":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{"6364675":{"tf":1.4142135623730951},"6411637":{"tf":1}},"df":2},"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6403354":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1},"6412334":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6414123":{"tf":1}},"df":5,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1},"6413183":{"tf":1.7320508075688772}},"df":2}}}}}}}}},"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1},"6414123":{"tf":1}},"df":2,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1.4142135623730951},"6412632":{"tf":1},"6414152":{"tf":1}},"df":3}}},"e":{"docs":{"4047072":{"tf":1}},"df":1,"l":{"docs":{"6409972":{"tf":1.7320508075688772},"6411778":{"tf":1},"6413951":{"tf":1}},"df":3},"r":{"docs":{"6410184":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{"6401946":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1},"6395651":{"tf":1},"6411574":{"tf":1.4142135623730951},"6411778":{"tf":1.4142135623730951},"6411964":{"tf":1},"6414613":{"tf":1}},"df":6}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2},"u":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"5351143":{"tf":1}},"df":1},"l":{"docs":{},"df":0,"a":{"docs":{"6413778":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"6411964":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"6411636":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"5549729":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6414438":{"tf":2},"6414530":{"tf":1}},"df":2,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{"4272538":{"tf":2}},"df":1},"docs":{},"df":0}}}}}}}},"u":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1,"t":{"docs":{"6409944":{"tf":1}},"df":1}},"d":{"docs":{"6412119":{"tf":1},"6412566":{"tf":1}},"df":2}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":2}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"6414240":{"tf":1}},"df":1}}},"s":{"docs":{"6411778":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"g":{"docs":{"4047072":{"tf":1}},"df":1},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1,":":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{"4272538":{"tf":1}},"df":1},"1":{"docs":{"4272538":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"6414240":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"6413183":{"tf":1}},"df":1}}},"q":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413523":{"tf":1}},"df":1}}}},"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6413523":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6410224":{"tf":2}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1},"6398787":{"tf":1},"6405964":{"tf":1},"6410184":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1.7320508075688772},"6412119":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413265":{"tf":1},"6413512":{"tf":1},"6413744":{"tf":1},"6414107":{"tf":1},"6414558":{"tf":1}},"df":16,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"6296451":{"tf":1},"6403354":{"tf":1},"6411636":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6414123":{"tf":1},"6414782":{"tf":1}},"df":7,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6296451":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413732":{"tf":1},"6413889":{"tf":1},"6414240":{"tf":1}},"df":3,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}}}}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1}},"df":1}},"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412863":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}},"=":{"1":{"docs":{"6412993":{"tf":1}},"df":1},"docs":{},"df":0}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,",":{"0":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413240":{"tf":1}},"df":1}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"o":{"docs":{"6411636":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1.7320508075688772},"4529460":{"tf":1.4142135623730951},"6296451":{"tf":1},"6396782":{"tf":1},"6411194":{"tf":1},"6413036":{"tf":1},"6413416":{"tf":1}},"df":7},"r":{"docs":{},"df":0,"a":{"docs":{"318630":{"tf":1},"6413778":{"tf":1},"6413908":{"tf":1}},"df":3}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"78932":{"tf":1},"6412334":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414376":{"tf":1}},"df":6,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1},"6412566":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"6413440":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"4508230":{"tf":1}},"df":1}}}}}},"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1.7320508075688772},"6409944":{"tf":1},"6412259":{"tf":1},"6413744":{"tf":1},"6413951":{"tf":1},"6414107":{"tf":1},"6414578":{"tf":1},"6414755":{"tf":1}},"df":8,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}},"]":{"docs":{},"df":0,",":{"docs":{},"df":0,"[":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}}}}}}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"6409944":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}},"t":{"docs":{"6412119":{"tf":1}},"df":1,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1},"6403728":{"tf":1}},"df":2,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":2.23606797749979}},"df":1,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1},"4529460":{"tf":1},"6412566":{"tf":1},"6413244":{"tf":1}},"df":4}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1},"6364675":{"tf":1},"6414438":{"tf":1}},"df":3}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1},"6409944":{"tf":1},"6411637":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6412753":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6413889":{"tf":1},"6414240":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414558":{"tf":1}},"df":12,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1},"6412589":{"tf":1.7320508075688772}},"df":2,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6397574":{"tf":1},"6401946":{"tf":1},"6412119":{"tf":1}},"df":3}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6412863":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414558":{"tf":1}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"814910":{"tf":1},"6294393":{"tf":1},"6411637":{"tf":1.7320508075688772},"6411964":{"tf":1},"6412334":{"tf":2}},"df":5,"a":{"docs":{},"df":0,"l":{"docs":{"6414438":{"tf":1}},"df":1}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413327":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6411282":{"tf":1}},"df":1}}}}}},"l":{"docs":{"4185821":{"tf":1.4142135623730951},"6414105":{"tf":1.4142135623730951}},"df":2},"k":{"docs":{"6403354":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"3802824":{"tf":1},"4529460":{"tf":1},"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412993":{"tf":1},"6413240":{"tf":1},"6413356":{"tf":1},"6413881":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1},"6414578":{"tf":1},"6414613":{"tf":1}},"df":12,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1.7320508075688772}},"df":1}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1.7320508075688772},"6413951":{"tf":1.4142135623730951}},"df":2}},"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}},"s":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"5306132":{"tf":1.7320508075688772},"5351143":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1.4142135623730951},"6364675":{"tf":1},"6395651":{"tf":1.4142135623730951},"6396782":{"tf":1.7320508075688772},"6397574":{"tf":1.7320508075688772},"6403354":{"tf":1},"6403728":{"tf":1.7320508075688772},"6404725":{"tf":1.4142135623730951},"6405964":{"tf":1},"6409944":{"tf":1},"6411636":{"tf":1},"6411778":{"tf":1.4142135623730951},"6411964":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412566":{"tf":2},"6412589":{"tf":1},"6412632":{"tf":1.7320508075688772},"6412720":{"tf":1},"6412753":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1},"6413416":{"tf":1},"6413444":{"tf":1.4142135623730951},"6413523":{"tf":1.7320508075688772},"6413541":{"tf":1},"6413720":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1.4142135623730951},"6413944":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414240":{"tf":1},"6414253":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951},"6414530":{"tf":1},"6414578":{"tf":1}},"df":45,"e":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1.4142135623730951},"4508230":{"tf":1},"5351143":{"tf":1},"6296451":{"tf":1},"6409944":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412428":{"tf":1.7320508075688772},"6412566":{"tf":1.4142135623730951},"6413036":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1.7320508075688772},"6413523":{"tf":1.4142135623730951},"6413720":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414105":{"tf":2.449489742783178},"6414558":{"tf":2}},"df":16,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,",":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}},"=":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"3047391":{"tf":1}},"df":1}}}},"'":{"docs":{"6395651":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412428":{"tf":1},"6414123":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{"5306132":{"tf":2.449489742783178},"6413881":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6411574":{"tf":1},"6412993":{"tf":1},"6413356":{"tf":1}},"df":3}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6401946":{"tf":1},"6413732":{"tf":1},"6414240":{"tf":1}},"df":3}}}},"o":{"docs":{"4508230":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6409944":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6413444":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"6412334":{"tf":1},"6412632":{"tf":1}},"df":2}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413523":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1.7320508075688772}},"df":1},"q":{"docs":{},"df":0,"u":{"docs":{"6411778":{"tf":1},"6412993":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{"6412993":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"l":{"docs":{"3802824":{"tf":1},"4047072":{"tf":1},"6404725":{"tf":1},"6412753":{"tf":1},"6414152":{"tf":1},"6414376":{"tf":1},"6414530":{"tf":1}},"df":7,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}},"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"i":{"docs":{"814910":{"tf":1},"6412334":{"tf":1.7320508075688772}},"df":2,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{"6413549":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"f":{"docs":{"6174688":{"tf":1}},"df":1}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6174688":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1.4142135623730951},"6414782":{"tf":1}},"df":4,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6413523":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"6411574":{"tf":1},"6412632":{"tf":1}},"df":3},"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"3827055":{"tf":1}},"df":1}}}}}},"s":{"docs":{"6412119":{"tf":1}},"df":1}},"_":{"docs":{"5306132":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"6413444":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}},"_":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"1":{"0":{"0":{"docs":{"4529460":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"2":{"5":{"0":{"docs":{"4529460":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}},"l":{"docs":{"6403354":{"tf":1}},"df":1},"x":{"docs":{"6403354":{"tf":1}},"df":1},"y":{"docs":{"6403354":{"tf":1}},"df":1}},"x":{"docs":{"6412589":{"tf":1},"6414438":{"tf":1}},"df":2,"m":{"docs":{},"df":0,"l":{"docs":{"6405964":{"tf":1.7320508075688772},"6410184":{"tf":1},"6413908":{"tf":1}},"df":3,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"=":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"4272538":{"tf":1}},"df":1,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"2":{"0":{"0":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{"6413908":{"tf":1.4142135623730951}},"df":1,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}}},"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413908":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}},":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{"6410184":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1.4142135623730951},"6414105":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1,"t":{"docs":{"6413778":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413778":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413778":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,",":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413778":{"tf":1.4142135623730951}},"df":1}}}},".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413778":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}},"r":{"docs":{"6404725":{"tf":1}},"df":1,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6404725":{"tf":1.4142135623730951}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"3":{"docs":{"6412589":{"tf":1}},"df":1},"4":{"docs":{"6412589":{"tf":1}},"df":1},"docs":{},"df":0}}}}}},"y":{"2":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}},"docs":{"6414438":{"tf":1.4142135623730951}},"df":1,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414578":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":2.449489742783178}},"df":1}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}},"z":{"0":{"docs":{"6413444":{"tf":2.8284271247461903}},"df":1},"docs":{"6413416":{"tf":1}},"df":1,"]":{"docs":{},"df":0,"{":{"2":{"docs":{},"df":0,",":{"3":{"docs":{},"df":0,"}":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"[":{"docs":{},"df":0,",":{"docs":{},"df":0,"]":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"|":{"docs":{},"df":0,"$":{"docs":{},"df":0,")":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"$":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"[":{"docs":{},"df":0,",":{"docs":{},"df":0,"]":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"|":{"docs":{},"df":0,"$":{"docs":{},"df":0,")":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"$":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6414093":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"'":{"docs":{},"df":0,",":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"p":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"?":{"docs":{},"df":0,"u":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"length":5902}},"pipeline":["trimmer","stopWordFilter","stemmer"]}
\ No newline at end of file
+{"version":"0.8.9","fields":["title","tags","body"],"ref":"id","documentStore":{"docs":{"78932":{"id":78932,"title":"How do I programatically set the value of a select box element using javascript?","body":"I have the following HTML select element:
\n\n<select id=\"leaveCode\" name=\"leaveCode\">\n <option value=\"10\">Annual Leave</option>\n <option value=\"11\">Medical Leave</option>\n <option value=\"14\">Long Service</option>\n <option value=\"17\">Leave Without Pay</option>\n</select>\n
\n\nUsing a javascript function with the leave code number as a parameter, how do I select the appropriate option in the list?
\n","tags":"javascript html dom"},"318630":{"id":318630,"title":"Get real image width and height with Javascript in Safari/Chrome?","body":"I am creating a jQuery plugin.
\n\nHow do I get real image width and height with Javascript in Safari?
\n\nFollowing works with Firefox 3, IE7 and Opera 9:
\n\nvar pic = $(\"img\")\n\n// need to remove these in of case img-element has set width and height\npic.removeAttr(\"width\"); \npic.removeAttr(\"height\");\n\nvar pic_real_width = pic.width();\nvar pic_real_height = pic.height();\n
\n\nBut in Webkit browsers like Safari and Google Chrome values are 0...
\n\nDoing this on server side is not an option.
\n","tags":"javascript jquery safari google-chrome webkit"},"814910":{"id":814910,"title":"Animating Background Image","body":"I Like using Jquery and its companion Jquery Ui but can not find a way to animate background image over a certain period of time like 5 seconds.\nI can not do something like:
\n\n$('sampleelement').animate({'background-image':'url(hello.jpg)'},5000);\n
\n\nAny ideas??
\n","tags":"javascript jquery jquery-ui animation jquery-animation"},"3047391":{"id":3047391,"title":"Parsing complex string using regex","body":"My regex skills are not very good and recently a new data element has thrown my parser into a loop
\n\nTake the following string
\n\n\"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write\"
\n\nPreviously I had the following for my regex : [+\\\\-/]
\n\nWhich would turn the result into
\n\nUSER=Bob Smith
\nGROUP=Admin
\nFUNCTION=Read
\nFUNCTION=Write
\nFUNCTION=Read
\n\nBut now I have values with dashes in them which is causing bad output
\n\nNew string looks like \"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write/FUNCTION=Read-Write\"
\n\nWhich gives me the following result , and breaks the key = value structure.
\n\nUSER=Bob Smith
\nGROUP=Admin
\nFUNCTION=Read
\nFUNCTION=Write
\nFUNCTION=Read
\nWrite
\n\nCan someone help me formulate a valid regex for handling this or point me to some key / value examples. Basically I need to be able to handle + - / signs in order to get combinations.
\n","tags":"java javascript xml regex parsing"},"3802824":{"id":3802824,"title":"Problem opening page with javascript pop ups in android webview","body":"I am very new to both Android WebKit and JavaScript. I have a web page with 3 links (say A,B,C). When I open that page on my PC browser(Chrome) and click on the links, A opens in the same browser window, whereas B and C pops up a new window. In my android application I am \nloading the original URL in a WebView. I have implemented my WebViewClient and overridden the shouldOverrideUrlLoading
. I am getting the call to shouldOverrideUrlLoading
whenever I click on A, but not getting it when I click on B or C?
\n\nI went through the page source and it looks like the 2 links that are \nnot supported are opened as IFRAMEs. are IFRAMEs supported by WebView?
\n\nThanks
\n\nKK
\n","tags":"javascript android"},"3827055":{"id":3827055,"title":"Run JavaScript unit tests inside of Visual Studio 2010","body":"I have been searching for a good way to run JavaScript unit tests inside of the Visual Studio 2010 IDE. I currently use TestDriven.net to run my C# units tests and it is very convenient to be able to quickly get the result of my tests in the output pane. I would love to find a similar experience for JavaScript (ideally working with TestDriven.net).
\n\nI have read about different solutions that let you execute JavaScrpt unit tests. Some have their own JS engine while others like JS-Test-Driver are able to send the code to the browsers and fetch the results. But I have yet to see something that is integrated into VS 2010.
\n\nDoes anyone know of an extension that might do this?
\n","tags":"javascript unit-testing visual-studio-2010"},"4047072":{"id":4047072,"title":"JS: setInterval and blur.","body":"I have this:
\n\n$(window).blur(function() {\n setInterval(function() {\n $.ajax({\n type: \"POST\",\n url: \"imback.php\",\n data: {\n mode: 'ajax',\n getUpdates: 'auto',\n },\n success: function(msg){\n document.title = msg + titleOrig;\n }\n });\n }, 35000);\n
\n\nWorks fine.
\n\nAlthough, if you have been blur, and then when you focus back, it will keep making the ajax call, it doesnt stop sending ajax call after interval 35 seconds.
\n\nHow can i fix this?\n })
\n","tags":"javascript"},"4185821":{"id":4185821,"title":"Is it possible to programmatically detect the caret position within a element?","body":"Assuming a regular <input type=text>
text-box with data in it.
\n\nIs it possible to detect (via JavaScript) the position of the text-coursor inside that text-box?
\n\nI am able to detect an ARROW LEFT or ARROW RIGHT keydown event - but how to detect the cursor location?
\n\nWhy I need this:
\n\nI have a dynamic text-box here: http://vidasp.net/tinydemos/dynamic-textbox.html
\nIt works great, however there are two scenarios that I would like to fix:
\n\n\n- when the cursor is at the beginning of the text-box and the user presses BACKSPACE
\n- when the cursor is at the end of the text-box and the user presses DELETE
\n
\n\n(In both cases, the text-box must contain data for the effect to be observable.)
\n","tags":"javascript"},"4272538":{"id":4272538,"title":"How can I parse XML in javascript in both IE and firefox?","body":"I'm trying to write a single piece of code to parse javascript in both IE and firefox.
\n\nThe following works in IE, and functions without complaining in firefox
\n\nfunction XmlDom(sXml){\n var oXml;\n if (window.ActiveXObject) {\n // ie\n oXml = new ActiveXObject(\"Microsoft.XMLDOM\");\n oXml.resolveExternals = false;\n oXml.async = false;\n oXml.loadXML(sXml);\n }\n else if (window.DOMParser){\n\n var parser = new DOMParser(); \n oXml = parser.parseFromString(sXml, \"text/xml\");\n\n }\nreturn oXml\n}\n
\n\nThe following works in IE, but gives errors (because childNodes doesn't exist) under Firefox
\n\nvar oXml = XmlDom(sourceXML);\nvar listHtml = \"\";\nif (oXml.firstChild != null) {\n var childNodes = null;\n try {\n childNodes = oXml.lastChild.lastChild.firstChild.childNodes;\n }\n if (childNodes != null && childNodes.length > 0) {\n\n for (var i = 0; i < childNodes.length; i++) {\n\n var vehicleName = NodeText(SelectSingleNode(childNodes[i], 'VehicleName', 'VehicleName'));\n var vehicleId = NodeText(SelectSingleNode(childNodes[i], 'VehicleId', 'VehicleId'));\n\n }\n }\n}\n
\n\nUsing jquery gives me correct behavior under firefox, but doesn't quite work in IE (it finds the correct number of vehicles, but each one has a null id and name)
\n\n $(sourceXml).find(\"Table1\").each(function() {\n var vehicleId = $(this).find(\"VehicleId\").text();\n var vehicleName = $(this).find(\"VehicleName\").text();\n });\n
\n\nI firmly believe that both these approaches should work. But something is going wrong. I'd love a hand.
\n\n<?xml version=\"1.0\" encoding=\"utf-16\"?>\n<DataSet>\n <xs:schema id=\"NewDataSet\" xmlns=\"\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:msprop=\"urn:schemas-microsoft-com:xml-msprop\">\n <xs:element name=\"NewDataSet\" msdata:IsDataSet=\"true\" msdata:UseCurrentLocale=\"true\">\n <xs:complexType>\n <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n <xs:element name=\"Table1\">\n <xs:complexType>\n <xs:sequence>\n <xs:element name=\"VehicleId\" msprop:metadatacolumnname=\"VehicleId\" msprop:caption=\"VehicleId\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"VehicleName\" msprop:metadatacolumnname=\"VehicleName\" msprop:caption=\"VehicleName\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"SendAlarms\" msprop:metadatacolumnname=\"SendAlarms\" msprop:caption=\"SendAlarms\" type=\"xs:string\" minOccurs=\"0\" />\n </xs:sequence>\n </xs:complexType>\n </xs:element>\n </xs:choice>\n </xs:complexType>\n </xs:element>\n </xs:schema>\n <diffgr:diffgram xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:diffgr=\"urn:schemas-microsoft-com:xml-diffgram-v1\">\n<NewDataSet>\n <Table1 diffgr:id=\"Table11\" msdata:rowOrder=\"0\" diffgr:hasChanges=\"inserted\">\n <VehicleId>8</VehicleId>\n <VehicleName>AIS Gate</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1>\n <Table1 diffgr:id=\"Table12\" msdata:rowOrder=\"1\" diffgr:hasChanges=\"inserted\">\n <VehicleId>82</VehicleId>\n <VehicleName>Amigos</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1> \n</NewDataSet>\n</diffgr:diffgram>\n</DataSet>\n
\n","tags":"javascript xml"},"4460205":{"id":4460205,"title":"detect ipad/iphone webview via javascript","body":"Is there a way to differ via javascript if the website runs inside the ipad safari or inside an application WebView?
\n","tags":"javascript ipad ios webview"},"4508230":{"id":4508230,"title":"php/ajax user actions undo manager","body":"does exist a library that gives you undo/redo capability with history for a web app? An idea would be a php/javascript/ajax system in which you can register for every user action an opposite action and the variable state (like a normal undo manager!). and it should work both at client level and server level.
\n\nDid i ask too much?
\n","tags":"php javascript ajax undo-redo"},"4529460":{"id":4529460,"title":"How to fix the width and height of jquery lightbox?","body":"I have aplied jquery lighbox on my image gallery, but due to the variable size of images, the lightbox size is not fixed hence opens up with image's original size, this in turn causes the biga images to go out of screen and display horizontal scroll bar in browser.
\n\nHence I am looking for the way to apply the fix width and height to lightbox so that every image must be displayed with this size in lightbox.
\n\nPlease help..
\n\n\n Update
\n
\n\ni Just tried with the solution Scott (http://geekswithblogs.net/wojan/archive/2009/06/17/jquerylightbox.aspx) has given to me, I did this,
\n\nfunction _resize_container_image_box(intImageWidth,intImageHeight) {\n// Get current width and height\n//rescale if necessary\nif((settings.maxWidth != null && settings.maxHeight != null) && (intImageWidth > settings.maxWidth || intImageHeight > settings.maxHeight)){\nvar isWider = intImageWidth > intImageHeight;//is the image wide or tall?\nvar scale = isWider ? settings.maxWidth/intImageWidth : settings.maxHeight/intImageHeight;\nintImageWidth = intImageWidth * scale;\nintImageHeight = intImageHeight * scale;\n}\n\n$('#lightbox-image').height(intImageHeight); \n$('#lightbox-image').width(intImageWidth); \nvar intCurrentWidth = $('#lightbox-container-image-box').width();\nvar intCurrentHeight = $('#lightbox-container-image-box').height();\n// Get the width and height of the selected image plus the padding\nvar intWidth = (intImageWidth + (settings.containerBorderSize * 2)); // Plus the image´s width and the left and right padding value\nvar intHeight = (intImageHeight + (settings.containerBorderSize * 2)); // Plus the image´s height and the left and right padding value\n// Diferences\nvar intDiffW = intCurrentWidth - intWidth;\nvar intDiffH = intCurrentHeight - intHeight;\n// Perfomance the effect\n$('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight },settings.containerResizeSpeed,function() { _show_image(); });\nif ( ( intDiffW == 0 ) && ( intDiffH == 0 ) ) {\nif ( $.browser.msie ) {\n___pause(250);\n} else {\n___pause(100); \n}\n} \n$('#lightbox-container-image-data-box').css({ width: intImageWidth });\n$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });\n};\n
\n\nAND
\n\n$('#gallery a').lightBox( maxHeight: null,\nmaxWidth: null);\n});\n
\n\nBut whenever I do this and click on the image just gets open in browsers annother tab, all the lightbox functinalty fails
\n\nPlease help me to correct it
\n\nThanks
\n","tags":"javascript jquery css lightbox"},"5306132":{"id":5306132,"title":"Translate Javascript keyCode into charCode for non-U.S. keyboard layout (i.e. azerty)","body":"Quick background:
\n\n\n- when a key is pressed in a browser, three events are generated: keyDown, keyPress and keyUp.
\n- keyDown and keyUp have a keyCode property which is approximately the physical key pressed.
\n- keyPress also has charCode property set which takes into account modifier keys and keyboard layout (A and a have same keyCode but a different charCode).
\n- all three events have properties that indicate which modifier keys were pressed during those events.
\n
\n\nI'm the main noVNC developer and I have a tough problem: noVNC needs the translated charCode value without using the keyPress event for the following reasons:
\n\n\n- noVNC needs to send the keyDown and keyUp events separately to the VNC server (otherwise it's not a completely functional VNC client).
\n- more importantly, noVNC needs to prevent the default keyboard actions while connected which means calling the preventDefault() method of the keyDown event. This has the side-effect of also preventing the keyPress event from firing.
\n
\n\nDue to differences in keyboard layouts (i.e. different keyCode to charCode mappings) I've determine that noVNC will need a lookup table for different keyboard layouts.
\n\nBut here is the real problem: on alternate layouts, some different physical keys have the SAME keyCode. For example, with an azerty (French) keyboard layout the '-' (dash) and '_' underscore keys both generate keyCode 189. Ack!!!
\n\nSo ... how do I get proper keyCode to charCode mapping and prevent default browser actions at the same time?
\n\nBTW, I suspect the solution to this will be applicable to other interactive web applications and HTML5 games since you often want to be able to know full information about the key pressed without triggering any additional browser response to that keypress.
\n\nUseful links:
\n\n\n- Here is an useful test page that show the three events and some other useful properties.
\n- Summary of the crazy state of key events in Javascript (thanks @Tim)
\n- Quirksmode Detecting keystrokes
\n- Quirksmode Events - key events
\n- noVNC issue with more discussion of the problem.
\n
\n\nSolution: see my post below.
\n","tags":"javascript html5 browser cross-browser"},"5351143":{"id":5351143,"title":"how to create autocomplete forum using html5 local storage?","body":"Hi to all, I am new to programming. will you help me to write code for autocomplete text fields in a html form. I want to use local storage data.\nIf any time user will inter some data in text field, it will be stored in local storage. if next time when he enters data then, localstorage data related to that field will appear as popup(like mozila or chrome autocomplete).
\n\nplease provide me some guidelines
\n","tags":"javascript forms html5 autocomplete localstorage"},"5549729":{"id":5549729,"title":"JQuery Mobile Calendar ?","body":"Does anyone know of any Calendar that I could use on JQuery Mobile?
\n\nNeeds to be able to save dates locally etc.
\n\nThanks
\n","tags":"javascript html5 jquery-mobile"},"6174688":{"id":6174688,"title":"jquery ajax post call issue with special chracters [solved]","body":"Solution: i guess the problem was related to firefox as a browser. I solved making the ajax call pass through a php proxy..
\n\ni have a form with two data fields (a checkbox and a textarea) sent via an ajax call. \nThe tomcat server response is an html page with some javascript code in it. I must use the POST method given the amount of data to be sent (if i could use GET i woud not have this issue!).\nThe problem arises if i send accented characters (èàòù) throught the textarea, for which i get weird question marks in place of them.\nFrom the firebug console i can see that both sent and received data are utf-8 encoded:
\n\nSENT DATA: Content-Type application/x-www-form-urlencoded; charset=UTF-8 \nRECEIVED DATA: text/html;charset=UTF-8
\n\nThe problem does not show in chrome or IE, but only in firefox and on all browsers on mac. HAve anybody any suggestione about this?
\n\nThanks\nVitto
\n","tags":"javascript jquery ajax post"},"6294393":{"id":6294393,"title":"Navigation Menu Hover Effect only on a Particular Occasion","body":"I need the exact effect of this website's navigation menu http://recruitmentmalta.com/ptowers/ but in neater code. This code was generated with a tool which converts from PSD to HTML/CSS and basically created a bunch of useless code. I know how to make that menu, except for the part where the Shop Now effect should turn off only if the contact is hovered over.
\n\nAny ideas of how I can recreate that hovering off effect when I hover over the contact button (when Shop Now gets turned off)?
\n\nThis is what I have done so far to give you an idea
\n\n <ul>\n <li id=\"homeButton\"> <img src=\"images/home.png\" onmouseout=\"this.src='images/home.png'\" onmouseover=\"this.src='images/homeHover.png'\" width=\"115\" height=\"55\" alt=\"home\" /></li>\n <li id=\"aboutButton\"> <img src=\"images/about.png\" onmouseout=\"this.src='images/about.png'\" onmouseover=\"this.src='images/aboutHover.png'\" width=\"115\" height=\"55\" alt=\"about\" /></li>\n <li id=\"newsButton\"> <img src=\"images/news.png\" onmouseout=\"this.src='images/news.png'\" onmouseover=\"this.src='images/newsHover.png'\" width=\"115\" height=\"55\" alt=\"news\" /></li>\n <li id=\"brandsButton\"> <img src=\"images/brands.png\" onmouseout=\"this.src='images/brands.png'\" onmouseover=\"this.src='images/brandsHover.png'\" width=\"115\" height=\"55\" alt=\"brands\" /></li>\n <li id=\"storesButton\"> <img src=\"images/stores.png\" onmouseout=\"this.src='images/stores.png'\" onmouseover=\"this.src='images/storesHover.png'\" width=\"115\" height=\"55\" alt=\"stores\" /></li>\n <li id=\"careersButton\"> <img src=\"images/careers.png\" onmouseout=\"this.src='images/careers.png'\" onmouseover=\"this.src='images/careersHover.png'\" width=\"115\" height=\"55\" alt=\"careers\" /></li>\n <li id=\"contactButtonMenu\"> <img src=\"images/contactButton.png\" onmouseout=\"this.src='images/contactButton.png'\" onmouseover=\"this.src='images/contactButtonHover.png'\" width=\"115\" height=\"55\" alt=\"contact\" /></li>\n <li id=\"shopNowButton\"> <img src=\"images/shopNowHover.png\" width=\"114\" height=\"53\" alt=\"Shop Now\" /> </li>\n </ul>\n
\n\nThis is my JS Fiddle Link: http://jsfiddle.net/GHHJM/
\n","tags":"javascript jquery html css menu"},"6296451":{"id":6296451,"title":"problem in file upload","body":"I have the following markup:
\n\n <select multiple=\"multiple\" id=\"targetFilesList\" style=\"width:200px;height:110px;\">\n </select>\n <input type=\"button\" value=\"Get\" id=\"btnGet\" />\n
\n\nand following javascript:
\n\n $(function()\n {\n $('#btnGet').click(function()\n {\n var fileupload = $(\"<input type='file' name='filetoupload' style='visibility:hidden;'/>\");\n $('body').append(fileupload);\n\n fileupload[0].onchange = function()\n {\n $('#targetFilesList').append('<option >' + fileupload.val() + '</option>');\n return false;\n }\n fileupload.click();\n });\n });\n
\n\nScenario is that i have to upload multiple files and once user has chosen the file to be uploaded i have to show the file name to user.Then,on submitting the form i will upload all the files.For this,on clicking the get button i am adding a fileupload control dynamically\nand initialise onchange event of the fileupload control just added. The problem in chrome 12 on clicking get button fileupload control does not get opened but in firefox4 and ie8 it is working.\nAny idea why?
\n","tags":"javascript jquery html file-upload"},"6364675":{"id":6364675,"title":"HtmlUnit's HtmlPage.getElementById seems to reinitialize JavaScript after many calls.","body":"I have a simple HTML page (ratings.html) that I'm trying to test using HtmlUnit. The action that I'm testing works when I load it up in a browser and do it by hand. However, when I try to test it with HtmlUnit, it seems like too many calls to getElementById (or getInputByName) cause the JavaScript on the page to be reinitialized.
\n\nIn the AddRating.scala test, the first two calls to page.addRating work, but the third fails because it can't find the 'rating3' element on the page. After lots of debugging, I've discovered that the ratingCount
gets reset back to 0 for some reason.
\n\nSee my comments below (between the // ******
sections) to see where the problem areas are.
\n\nHas anyone else experience this behavior or have any advice on how to deal with it? Thanks!
\n\nratings.html (HTML Page to add \"ratings\"):
\n\n<html>\n <head>\n <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js\"></script>\n <script src=\"http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js\"></script>\n </head>\n <body>\n <form name=\"new-rating\" method=\"post\" action=\"/add-rating\">\n <table>\n <tr>\n <td valign=\"top\">Ratings:</td>\n <td>\n Should be ordered from best to worst.<br>\n <a id=\"add-rating\" href=\"#\">add rating</a></td>\n </tr>\n <tr>\n <td></td>\n <td>\n <button name=\"submit-button\" type=\"submit\">Add Rating</button>\n </td>\n </tr>\n </table>\n </form>\n <h2>All Ratings</h2>\n\n <ul id=\"ratings\">\n </ul>\n\n <script>\n $(window).load(function(){ \n // display ratings\n $.getJSON(\"/ratings\", function(data)\n {\n var items = $.map(data, function(el) {\n var ratingsTable = \"\";\n if (el.ratings.length > 0)\n {\n $.tmpl(\"<li><table><tr><th>Rating</th></tr>{{each ratings }}<tr><td>${$value.label}</td></tr>{{/each}}</table></li>\", el).appendTo(\"#ratings\");\n }\n });\n });\n\n // add rating action\n // ***********\n var ratingCount = 0; // THIS GETS RE-INITIALIZED TO 0 AFTER TOO MANY getElementById or getElementByName calls.\n // ***********\n $('#add-rating').click(function()\n {\n ratingCount += 1;\n $('#remove-rating').show();\n $.tmpl(\"<span id='rating${ratingId}'><input name='rating${ratingId}'><br></span>\",\n {ratingId: ratingCount}).insertBefore('#add-rating');\n if(ratingCount >= 5) { $('#add-rating').hide(); }\n });\n });\n </script>\n </body>\n</html>\n
\n\nRatingsPage.scala (Scala interface to HTML page):
\n\npackage portal\n\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\n\nimport infrastructure.SuperHtmlUnitConversions._\n\nimport infrastructure.WaitFor\n\nclass RatingsPage(page: HtmlPage)\n{\n val newRatingForm: HtmlForm = page.getFormByName(\"new-rating\")\n\n var ratingCount = 0\n\n def submit(): RatingsPage =\n {\n val page = newRatingForm.getButtonByName(\"submit-button\").click[HtmlPage]()\n ratingCount = 0\n new RatingsPage(page)\n }\n\n def addRating(rating: String)\n {\n page.getElementById(\"add-rating\").click()\n ratingCount += 1\n newRatingForm.getInputByName(\"rating\" + ratingCount).asInstanceOf[HtmlInput].setValueAttribute(rating)\n }\n\n def asText(): String = page.asText\n def asXml(): String = page.asXml\n}\n
\n\nAddRating.scala (Scala HtmlUnit test that fails):
\n\npackage portal\n\nimport java.util.Date\nimport org.scalatest.FunSuite\nimport org.scalatest.junit.JUnitRunner\nimport org.junit.runner.RunWith\nimport org.scalatest.matchers.ShouldMatchers\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\nimport infrastructure.WaitFor\n\n@RunWith(classOf[JUnitRunner])\nclass AddRating extends FunSuite with ShouldMatchers\n{\n test(\"add ratings\")\n {\n val client = new WebClient()\n val index = new PortalIndexPage(client)\n var page = index.goToRatingsPage()\n\n page.addRating(\"Buy\") // WORKS\n page.addRating(\"Sell\") // WORKS\n // *********\n page.addRating(\"Sell\") // FAILS! Can't find element with \"rating3\" name!\n // *********\n page = page.submit()\n WaitFor(\"rating to show up\", ()=>page.asXml.contains(\"Sell\"))\n\n page.asText should include (\"Buy\")\n\n client.closeAllWindows()\n }\n}\n
\n","tags":"java javascript html scala htmlunit"},"6395651":{"id":6395651,"title":"Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?","body":"Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?
\n\nI'm afraid this is all there is to ask, but if more elaboration is needed please do not hesitate to tell me in a comment.
\n\nThanks.
\n","tags":"javascript flash hash webgl sha256"},"6396782":{"id":6396782,"title":"Facebook style autocomplete using dojo needed.","body":"I found facebook style autocomplete using jQuery. But im using dojo framework for my web app. Can you suggest how to implement or any open source code available for autocomplete using dojo framework. ?
\n\nUsing jquery :
\n\nhttp://devthought.com/wp-content/articles/autocompletelist/test.html
\n","tags":"javascript autocomplete dojo jquery-autocomplete"},"6397574":{"id":6397574,"title":"How to access session in express, outside of the req?","body":"I know that I can use
\n\nfunction(req, res) {\n req.session\n}\n
\n\nusing express. However I need to access the session outside of the response function. How would I go about doing that?
\n\nI'm using socket.io to pass information for adding posts and comments. So when I receive the socket.io message on the server-side, I need to verify the person posting the information by using the session. However since this is being done via socket.io there is no req/res.
\n","tags":"javascript node.js express socket.io"},"6398787":{"id":6398787,"title":"Javascript Shorthand for getElementById","body":"Is there any shorthand for the JavaScript document.getElementById? Or is there any way I can define one? It gets repetitive retyping that over and over.
\n","tags":"javascript"},"6401696":{"id":6401696,"title":"javascript, what is this?","body":"I have found this javascript code from instapaper's bookmarklet.
\n\nWhat exactly is this code doing?
\n\njavascript:\nfunction%20iprl5(){\n var%20d=document,z=d.createElement('scr'+'ipt'),b=d.body,l=d.location;\n try{\n if(!b)\n throw(0);\n d.title='(Saving...)%20'+d.title;\n z.setAttribute('src',l.protocol+'//www.instapaper.com/j/deyNbbpjuSei?u='+encodeURIComponent(l.href)+'&t='+(new%20Date().getTime()));\n b.appendChild(z);\n }\n catch(e){\n alert('Please%20wait%20until%20the%20page%20has%20loaded.');\n }\n}\niprl5();\nvoid(0)\n
\n\nThanks in advance!
\n","tags":"javascript"},"6401946":{"id":6401946,"title":"Prototyping Built-In Modules in NodeJS","body":"I've been trying to add some convenience functions to Node's file system module (mainly because it lacks some common sense things), but every time I begin fs.prototype.myfunc =
in the repl, Node complains that I am trying to set a property of an undefined variable. Is it really true that you cannot access Node's built-in module prototypes from the outside? If so, does anyone know a feasible workaround to extend Node's built-in modules?
\n\n--Thanks!
\n\n
\n\nJust to note: I did require fs before trying to prototype it!
\n\nvar fs = require('fs');\nfs.prototype.myfunc = function() {}; //TypeError thrown here\n
\n","tags":"javascript node.js prototype"},"6403354":{"id":6403354,"title":"javascript : parsing multi-level json array","body":"I have a asp.net web service that returns a multi-level array.
\n\nthe json string is parse using the json2.js lib :
\n\nvar donnee = JSON.parse(msg.d);\n
\n\nthe 1st level parsing is ok but the 2nd level array (data) remains as an array of objects
\n\n\n ? donnee[0]
\n
\n\n{...}\ncolor: \"#0000CD\"\ndata: [[object Object],[object Object]]\nlabel: \"formol\"\ntype: \"traitement\"\n
\n\n\n ? donnee[0].data
\n
\n\n[[object Object],[object Object]]\n[0]: {...}\n[1]: {...}\n
\n\n\n ? donnee[0].data[0]
\n
\n\n{...}\n_l: \"\"\n_x: 7\n_y: 25\n
\n\nwhereas I need an array of data e.g.
\n\n\n ? donnee[0]
\n
\n\n{...}\nlabel: \"traitement formol 2\"\ntype: \"traitement\"\ncolor: \"#0000CD\"\ndata: [7,25,,7,40,formol]\n
\n\n\n ? donnee[0].data
\n
\n\n[7,25,,7,40,formol]\n[0]: [7,25,]\n[1]: [7,40,formol]\n
\n\n\n ? donnee[0].data[0]
\n
\n\n[7,25,]\n[0]: 7\n[1]: 25\n[2]: \"\"\n
\n\nwhat is the best way to decode/parse all the levels of the json string at once ?
\n\nbest regards
\n","tags":"javascript arrays json parsing"},"6403728":{"id":6403728,"title":"Set table cell width using Javascript - jQuery","body":"I have a table as below;
\n\n<table style=\"width: 100%\">\n<tr>\n<td style=\"width: 30px\">cell</td>\n<td class=\"cell\">cell</td>\n<td class=\"cell\">cellcell</td>\n<td class=\"cell\">cellcellcell</td>\n<td class=\"cell\">cellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcellcell</td>\n<td style=\"width: 30px\">cell</td>\n</tr>\n</table>\n
\n\nThe table is designed to stretch to screen (or a div having specific width). I want equal width for all cells having class=\"cell\"
and this works well when the character length of text in all cells having class=\"cell\"
are equal. But, I want to fix the cell width even if the character lengths of contents in class=\"cell\"
are different.
\n\nAlso you can see that the first and last cells have fixed width, in pixels and others cell widths are to be calculated on the basis of percentage .. I want equal width for all cells (except first and last with fixed width in pixels).
\n\nI think this can be done using javascript
with the help of jQuery
, by calculating the table cell widths on document ready, and then adding some function using on window resize
and thereby calculating cell widths. The cell widths will be (tablewidth in px - 60px)/6
I am a beginner and I don't know much.. How can i do this using jQuery and (or) javascript.
\n\nIt will be very helpful if someone make me a fiddle..
\n\nThanks in advance..
\n","tags":"javascript jquery"},"6404725":{"id":6404725,"title":"Google tasks update error","body":"I am attempting to update a task with the following code:\n
\n
\n\nfunction updtsk(task,id)\n{\n var url = 'https://www.googleapis.com/tasks/v1/lists/@default/tasks/'+id;\n var req = {\n 'method': 'PUT',\n 'headers': {\n 'Content-type': 'application/json'\n },\n 'body': JSON.stringify(task)\n };\n var addDone = function(resp, xhr) {\n if (xhr.status != 200) {\n notifyFailure('Couldn\\'t update task.', xhr.status);\n return;\n }\n\n //notifySuccess(task['title']);\n }\n\n oauth.sendSignedRequest(url, addDone, req);\n}\n
\n\nI get the following error however:
\n\n\"{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"global\",\n \"reason\": \"invalid\",\n \"message\": \"Invalid Value\"\n }\n ],\n \"code\": 400,\n \"message\": \"Invalid Value\"\n }\n}\n\"\n
\n\nThe update body is this:
\n\n{\n 'title': $(this).val()\n};\n
\n\nI am using the chrome_ex_oauth api and could use some help.
\n","tags":"javascript google-chrome-extension"},"6405964":{"id":6405964,"title":"Check if a String is HTML or XML","body":"Is there a way to check if a String is HTML or XML in JavaScript? Preferably using jQuery rather than some other library?\nWhy I need to do this is because I need to know if it possible to have a function into which XML or HTML can be passed. If it is HTML we take one action and if it is XML we take another action.
\n","tags":"javascript jquery html xml check"},"6406161":{"id":6406161,"title":"JavaScript Encode","body":"Surfing on web i find Ext.Gantt plugin for ExtJS, that extension have a special encode. Anybody know how to encode like that or another complicated form.
\n\n\n","tags":"javascript obfuscation decode encode ext"},"6409944":{"id":6409944,"title":"NowJS manually initiating a new connection after a lost connection","body":"i have a case where clients connect to a node.js server running nowjs and remain connected for a fairly long time (about 30 minutes). on some browsers though the connection gets dropped after a while and the client disconnects.
\n\ni implemented a disconnect handler on the client side like this:
\n\nnow.core.on('disconnect', function () {\n // we should reconnect here, maybe after a short timeout\n});\n
\n\nwhat i am unclear about is how exactly to trigger a reconnect. this might be something blatantly obvious to experienced users but i didn't manage to figure this out.
\n\nthe now.js script initializes on page load and after that i can use the now object, but i can't figure out how to repeat this process without reloading the page.
\n\nthanks!
\n","tags":"javascript node.js socket.io nowjs"},"6409972":{"id":6409972,"title":"How to dynamically set the grids CheckBox Selection Model in ExtJs4?","body":"This leads on from my previous question.
\nI initialize a grid with a CheckBox Selection Model, however when I reconfigure the grid the Check Box Selection Model visaully dissapears.
\nWhat I want to do is dynamically add a CheckBox Selection Model to a grid after reconfiguring the grids columns, and visually display it.
\n\nI have tried something like this:
\n\nvar sm = new Ext.selection.CheckboxModel();\ngrid.selModel = sm;\ngrid.doLayout();\n
\n","tags":"javascript extjs grid columns extjs4"},"6410184":{"id":6410184,"title":"jQuery.find().each(fn) is not working in Firefox","body":"I have AJAX call to one XML file and the source code is given below. It works perfectly in Chrome but is not working in Firefox. When doing debug I see that it doesn't enter to the cycle of $(response).find(\"simpleType\").each(function() in Firefox.
\n\nDoes anybody know what is the problem here in my code?
\n\n$.ajax({\n type:\"GET\",\n url:\"views/workspace/branching_forms/StudentModelDescription.xml\",\n dataType:\"xml\",\n error:function(XMLHttpRequest, textStatus, errorThrown){\n alert(\"error=\"+XMLHttpRequest+\" error2=\"+textStatus+\" error3=\"+errorThrown);\n },\n success:function(response){ \n var i=1;\n console.log(\"response=\"+response);\n $(response).find(\"simpleType\").each(function(){ \n adaptation_type_name[i]=$.trim($(this).find(\"documentation\").text()); \n var restriction = $(this).find(\"restriction[base=xs:string]\");\n j=1;\n var values=new Array(); \n $(restriction).find(\"enumeration\").each(function(){\n var tmp=$(this).attr(\"value\"); \n values[j] = tmp;\n j++;\n });\n adaptation_type_variables[i]=values; \n console.log(\"adaptation_type_name=\"+adaptation_type_name[i]+\", adaptation_type_variables=\"+adaptation_type_variables[i]);\n i++; \n }); \n for(var i=1;i<=adaptation_type_name.length;i++) \n $('#adaptation_type_dialog #branching_adaptation_type').append($(\"<option></option>\").attr(\"value\",i).text(adaptation_type_name[i]));\n\n }\n});\n
\n\nThe content of StudentModelDescription.xml is given below:
\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">\n <xs:simpleType name=\"browser\" id=\"context_browser\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Web Browser</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"Safari\" id=\"1\" />\n <xs:enumeration value=\"Google Chrome\" id=\"2\" />\n <xs:enumeration value=\"Opera\" id=\"3\" />\n <xs:enumeration value=\"Mozilla Firefox\" id=\"4\" />\n <xs:enumeration value=\"Internet Explorer\" id=\"5\" />\n </xs:restriction>\n </xs:simpleType> \n <xs:simpleType name=\"networktype\" id=\"context_networktype\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Network Type</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"ADSL2+/Cable (High capacity)\" id=\"1\" />\n <xs:enumeration value=\"ADSL / HSPA (Moderate capacity)\" id=\"2\" />\n <xs:enumeration value=\"Dialup / GPRS (Low capacity)\" id=\"3\" />\n </xs:restriction>\n </xs:simpleType>\n</xs:schema>\n
\n","tags":"javascript jquery xml firefox"},"6410224":{"id":6410224,"title":"to get value from database table into select box","body":"i m creating a combo box which gets value from mysql database table.\n here is a sample code which i m implementing but it will not populates selectbox values.
\n\n mydata +='<div class=\"content nodisplay\"><div class=\"row\"><div class=\"label\" style=\"font-size:22px;\">Subject</div><div class=\"data\">\n<select id=\"fillsubject\" name=\"fillsubject\">';\n$.post(document.URL,qstring,function(data){\n\n var subjects = $(data).filter('.subjects');\n\n $.each(subjects,function(index,value){\n var subid = $(this).attr('id');\n var subname = $(this).text();\n mydata += \"<option value='\"+subid+\"'>\"+subname+\"</option>\";\n //mydata += \"<option value='english'>english</option>\";\n });\n\n});\nmydata +='</select></div></div></div>'; \n
\n","tags":"javascript mysql php5"},"6411169":{"id":6411169,"title":"Javascript replace undefined error ends but not replace continues","body":"Friends i got success with this piece of code:
\n\nvar avidno = '800.123.1234';\nvar bodytext = document.body.innerHTML;\nvar newbodytext;\nfunction validate () {\nvar regex = /^\\(?([0-9]{3})\\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/;\n\nif (regex.test(avidno)) {\n alert('bingo');\n var avidno_new = '<span>'+avidno+'</span>';\n var newbodytext = bodytext.replace(new RegExp(avidno, \"g\"), avidno_new);\n document.body.innerHTML = newbodytext;\n // Valid international phone number\n} else {\n alert('uupss');\n // Invalid international phone number\n}\n}\nvalidate();\n
\n","tags":"javascript html replace body"},"6411194":{"id":6411194,"title":"Jquery plugin - Tree Context menu","body":"Can you suggest a context-menu plugin that supports nesting menu items? When clicking on an item, if the item has sub-items, it should open a secondary menu.
\n\nEDIT
\n\nLike this but for jquery
\n","tags":"javascript jquery plugins"},"6411282":{"id":6411282,"title":"How to lock scrolling of a web page temporarily?","body":"How can I lock scrolling of a webpage temporarily when a dialog box is displayed ? I have a dialog box within which I want to enable scrolling after deactivating scrolling from the overlayed webpage.
\n\nIs there a js command to temporarily disable scrolling ?
\n","tags":"javascript html"},"6411574":{"id":6411574,"title":"Resources that turns a javascript developer into a great javascript developer ?","body":"I am more and more working with javascript, especially with JQuery for web site and node.js for server side (really like node.js though) and I quite often struggle to understand the inner structure of the language (such as prototypes, asynchronous function, ...).
\n\nWhat are the best articles, or so, that could help a developer to leverage his competency in this language (that is really worth learning IMHO).
\n","tags":"javascript"},"6411636":{"id":6411636,"title":"Javascript slider problem","body":"Hi I am currently working on a script given to me by my boss and it is not working in all browsers except IE.
\n\nNow he is using the CSS property left to animate it so he has a variable which gets the current value of left. For example lets say left is equal to -100px
.
\n\nNow once it has this value it adds 10px
onto the value to make it move in from the left.
\n\nNow my issue lies with parseInt()
and the \"px\"
prefix at the end of the number. it keeps returning NaN
instead of the value of left.
\n\nDoes anyone know how to fix this problem?
\n\nThanks in advance
\n","tags":"javascript css nan parseint"},"6411637":{"id":6411637,"title":"Javascript count number of steps","body":"How can I count number of steps between different numbers.
\n\nI have a method that takes a number and runs a code snippet with the number. I need to see if the number is the number right next to the other or two steps, three steps, four steps over or below etc.
\n\nEx. I send a number of 1 to the method. The next number sent is 4. I then need to find out how many steps over one it is etc in this case 3 steps over 1 should be the result.
\n\nAny clues?
\n","tags":"javascript count script"},"6411778":{"id":6411778,"title":"Rails 3 plugin nested_form versus JavaScript appraoch for adding form fields dynamically in a nested form","body":"I am researching ways on how to dynamically add form fields for nested models and stumbled accross the nested_form plugin by ryanb. No doubt this is a a great piece of code, but I wondered why does it have to be so sophisticated?
\n\nExample: A form for creating / adding a project has one or more tasks assigned. The user can dynamically add more tasks by clicking on a add-task button. A project must have at least one task. Each task has a name and a description.
\n\nSo why not just:\n- When generating the html, sourround each set of task fields with a div given an ID such as \"dynamic_fields\"\n- When the user clicks the add-task button, call a JavaScript function via link_to_function to clone the dynamic_fields subtree. Insert the new set of fields at the bottom of the task list.\n- Via JavaScript, remove the values of the newly added fields and replace the child ID with something unique (Ryan suggests using a value based on the current time)
\n\nI am aware that the nested_forms plugin also works for deeper nesting structures, but given my simple use case with only one level of hierarchy, is the approach outlined above practical? Or am I missing something important? Any guidance on this topic is appreciated.
\n","tags":"javascript ruby-on-rails nested-forms"},"6411964":{"id":6411964,"title":"Should I rely on externally-hosted services?","body":"I am wondering over the dangers / difficulties in using external services like Google Chart in my production state website.
\n\nWith external services I mean them that you can't download and host on your own server.
\n\n(-) Potentially the Google service can be down when my site is up.
\n\n(+) I don't have to develop those particular systems for new browser technologies, hopefully Google will do that for me.
\n\n(-) Extra latency while my site fetch the data from the google servers.
\n\nWhat else? Is it worth spending time and money to develop my own systems to be more in control of things?
\n","tags":"php javascript web-development"},"6412119":{"id":6412119,"title":"show larger Image with CSS and onMouseOver","body":"I use this simple script :
\n\n<body>\n <script type=\"text/javascript\">\nfunction mouseOver()\n{\ndocument.getElementById(\"img1\").src =\"images/p2.jpg\";\n}\nfunction mouseOut()\n{\ndocument.getElementById(\"img1\").src =\"images/p1.jpg\";\n}\n</script>\n<div class=\"img\">\n <a target=\"_blank\" href=\"images/p1.jpg\"><img src=\"images/p1.jpg\" alt=\"Klematis\" width=\"110\" height=\"90\" id=\"img1\" onMouseOver= \"mouseOver()\" onMouseOut=\"mouseOut()\"/></a>\n <div class=\"desc\">Add a description of the image here</div>\n</div>\n
\n\nThe images are pretty big so I adjust them with width and height properties, I thought that if I just call the function I'll see the bigger image but it dosen't happen.So what can I do to see an enlarged image with onMouseOver?\n I'll add the style sheet in case it matters:
\n\n<style type=\"text/css\">\ndiv.img\n{\n margin: 2px;\n border: 1px solid #0000ff;\n height: auto;\n width: auto;\n float: left;\n text-align: center;\n}\ndiv.img img\n{\n display: inline;\n margin: 3px;\n border: 1px solid #ffffff;\n}\ndiv.img a:hover img {border: 1px solid #0000ff;}\ndiv.desc\n{\n text-align: center;\n font-weight: normal;\n width: 120px;\n margin: 2px;\n}\n</style>\n
\n\nP.S
\n\nDon't mind the <a href
thing I just use the raw code from w3 schools...
\n\nP.S Maybe I'll ask another question for this, the problem with the enlarged images is solved but now I want them to show in some kind of block cause now if I have even 4 iamges when i hover the last one the enlarged image goes far away from the starting location, and I want to make it just like gallery block and all images ot be shown there, wthout going outside the borders of the gallery.Any help or maybe another Qs better....
\n","tags":"javascript css"},"6412151":{"id":6412151,"title":"why does the bracket works in coffeescript when bugs came","body":"If i want to get a js code like this which compiles from coffeescript:
\n\n var sortableTodos = new Sortables(\"todo-list\", {\nconstrain: true,\nclone: true,\nhandle: \".todo-content\",\nonComplete: function(ele){\n sortableTodos.serialize(false, function(element, index){\n todo = Todos.get(element.getProperty(\"id\").replace(\"todo-\", \"\"));\n todo.save({\"order\": index});\n });\n}\n});\n
\n\nI can't write coffee code like below:
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:(ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n\n) \n )\n
\n\nbut the following works(it got brackets after onComplete)
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:((ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n )\n) \n ) \n
\n\nI don't know why?Is it a bug?
\n","tags":"javascript coffeescript"},"6412259":{"id":6412259,"title":"Prototype.js error - 'undefined' is null or not an object","body":"I am getting following error in Prototype.js
\n\n'undefined' is null or not an object line 5557 char 5\n
\n\nwhich is this:
\n\nvar respondersForEvent = registry.get(eventName);\n if (Object.isUndefined(respondersForEvent)) {\n respondersForEvent = [];\n registry.set(eventName, respondersForEvent);\n }\n
\n\nHow can i fix this?
\n","tags":"javascript prototypejs"},"6412334":{"id":6412334,"title":"jQuery \"drop\" and \"over\" are not firing on a droppable","body":"I was trying to improve my web-dev skills for work but got a bit carried away with jQuery's drag and drop feature. Unfortunately I can't get the \"drop\" or \"over\" events of the droppable to fire.
\n\nI didn't want to use a jQuery table drag/drop plugin so i have multiple div in a div in a td structures (all generated in $(document).ready). The middle div is to be the droppable and the inner most div is to be the draggable. The generated HTML looks like this:
\n\n<td class=\"vertical\">\n<div id=\"droppable3\" class=\"droppable ui-droppable\" style=\"width: 100%; height: 100%;\"\nover=\"function () { alert(\"working!\"); }\" \ndrop=\"function (event, ui) { \n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\" + firstDrag.id + \"\\nSecondDrag:\" + secondDrag.id\n + \"\\ndest Drop:\" + destDrop.id + \"\\nsourceDrop:\" + sourceDrop.id); }\">\n <div id=\"draggable3\" class=\"draggable ui-draggable\" \n style=\"width: 100%; height: 100%;\">\n </div>\n</div>\n</td>\n
\n\nand it is exactly the same in other TDs except for the ids.
\n\nNow the dragging seems to work fine; i can drag that inner div out and it will revert back if i don't put it on an appropriate droppable or just stick there if i do but it never triggers the \"over\" or \"drop\" events. The debugger line in that code is never hit.
\n\nHere is how i'm setting up the draggable/droppable:
\n\nfunction getTD(claz){\nvar td = jQuery(\"<td/>\",{'class': claz});\nvar droppable = jQuery(\"<div/>\",{\n 'class': 'droppable',\n width: '100%',\n height:'100%',\n id: \"droppable\"+ids[index],\n over: function() {\n alert('working!');\n },\n drop: function(event,ui){\n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\"+firstDrag.id +\"\\nSecondDrag:\"+secondDrag.id\n +\"\\ndest Drop:\"+destDrop.id +\"\\nsourceDrop:\"+sourceDrop.id);\n\n }\n });\n var draggable = jQuery(\"<div/>\",{\n 'class': 'draggable',\n width: '100%',\n height:'100%',\n id: \"draggable\"+ids[index], \n });\n\n draggable.draggable({\n revert: 'invalid'\n });\n droppable.droppable({\n accept: \".draggable\"\n });\n index++;\n droppable.append(draggable);\n td.append(droppable);\n return td;\n
\n\n}
\n\nBasically what i am trying to achieve is swappable tiles in a table and i'm pretty sure the js in the event handler is rubbish but we'll deal with that once it's firing.
\n\nOh and im using:\nhttps://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js\nhttps://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js
\n\nAny comments would be appreciated.\nThanks :)
\n\nEDIT:
\n\nI was being really stupid. I was putting the \"drop\" and \"over\" events in the attributes of the element, not the options of the droppable!
\n","tags":"javascript jquery jquery-ui droppable"},"6412428":{"id":6412428,"title":"Login page redirection in Java and Javascript","body":"Ok, so I've got an interesting case of login page redirection going on.
\nMy webservice has a login page (login.html) with some javascript to handle logging in and redirecting to a hardcoded 'default' page. The webservice is written in Java with a servlet filter handling redirection if a user is unauthenticated (so if a user tries to access domain/statistics
without being logged in, they are directed to domain/login.html
). The redirection from the protected services works: I can redirect to the login page and once a user is authenticated, redirect them to a default page. I am having issues, however, redirecting to the previous page.
\nI know this is usually handled with the argument document.referrer
in the Javascript, which I have tried, but due to the Java's redirection with response.sendRedirect
, the Referer header is not sent.
\n\nHow can I get these two aspects to redirect to the previously called page? Is it something I need to add on the Javascript side, the Java side, or both?
\n","tags":"java javascript web-services redirect login"},"6412566":{"id":6412566,"title":"Determining whether html5 geolocation function is available AND whether it knows where you are?","body":"I'm experimenting with HTML5 geolocation, and embedded a small test script into a page to return my present co-ordinates.
\n\nThe current application I have in mind for using this is as a 'nice to have' feature on site i'm working on - it includes a 'find my nearest' lookup on some locations, and I figured that if you had a location aware device, I could easily include 'to my current location' alongside the normal 'to my postal/zip code'. I'm not interested in loading a bunch of extra libraries and fallbacks for such a small and non-essential feature. If you have a capable device, great, if not, you won't ever see the option.
\n\nSo I tried the script on an iPad, and as expected - I was prompted for permission to use my present location, to which I agreed, and my test script returned my present location. Total win.
\n\nI tried the same on my desktop, since i'm using Firefox 4 and its a HTML5 compliant browser. It asked me if I wanted to share my location, and then promptly returned the error that it didn't know my location (because its a desktop computer and has no GPS). I thought this rendered the original question of 'do you want to share your location' somewhat pointless - it could needlessly annoy people who might have thought they could use a feature that they in fact can't.
\n\nSo, what is a reliable technique to detect if:
\n\n\n a) The browser can access HTML5 geolocation
\n \n AND
\n \n b) The browser knows or can find out what the users location is.
\n
\n\nWithout actually calling the geolocation function beforehand, and asking the user an annoying, and unnecessary question?
\n\nFor a) i'm simply using:
\n\nif (navigator.geolocation) {\n navigator.geolocation.getCurrentPosition(showCoords,handleGeoErrors); \n}\n
\n\nBut for b) the only answer I have involves having called getCurrentPosition, which triggers the question to the user.
\n\nAny thoughts on this, anyone?
\n","tags":"javascript html html5 geolocation"},"6412589":{"id":6412589,"title":"Set length property of JavaScript object","body":"Let's say I have a JavaScript object:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n };\n this.add = function(x){\n A.push(x);\n };\n this.remove = function(){\n return A.pop();\n };\n};\n
\n\nI can use it like so:
\n\nvar x = new a();\nx.add(3);\nx.add(4);\nalert(x.length()); // 2\nalert(x.remove()); // 4\nalert(x.length()); // 1\n
\n\nI was trying to make .length
not a function, so I could access it like this: x.length
, but I've had no luck in getting this to work.
\n\nI tried this, but it outputs 0
, because that's the length of A
at the time:
\n\nfunction a(){\n var A = [];\n this.length = A.length;\n //rest of the function...\n};\n
\n\nI also tried this, and it also outputs 0
:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n }();\n //rest of the function...\n};\n
\n\nHow do I get x.length
to output the correct length of the array inside in the object?
\n","tags":"javascript"},"6412607":{"id":6412607,"title":"Passing argument to function. What's wrong?","body":"In this jsFiddle
\n\nam I trying to pass an argument to a function, but it doesn't receive the argument or it isn't executed.
\n\n<a href=\"javascript:addRemove('7249');\">Details</a>\n
\n\nJQuery
\n\n$(document).ready(function() {\n\n function addRemove(u) {\n alert(u);\n }\n\n});\n
\n\nAny ideas what's wrong and how to fix it?
\n","tags":"javascript jquery"},"6412632":{"id":6412632,"title":"How to find and modify an asp.net control with JavaScript?","body":"This has been bothering me for quite some time. I'm simply trying to change the value of a textbox defined in asp.net, which normally works when it is not within a LoggedInTemplate.
\n\nI've searched everywhere on the net and even here, but the only thing I can find close to doing what I need is here Finding an asp:button and asp:textbox in Javascript. Unfortunately that doesn't work. Here's what I have so far:
\n\n<head id=\"Head1\" runat=\"server\">\n <script src=\"../../scripts/webeffects.js\" type=\"text/javascript\" language=\"javascript\"></script>\n</head>\n<asp:LoginView ID=\"LoginView1\" runat=\"server\">\n <LoggedInTemplate>\n <div class=\"lotto_pick_container\">\n <table runat=\"server\" id=\"tblLottoPick\">\n <tr><th colspan=\"3\">Pick a Lotto Number</th></tr>\n <tr>\n <td><asp:TextBox ID=\"txt1stNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt2ndNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt3rdNum\" runat=\"server\"></asp:TextBox></td>\n </tr>\n <tr>\n <td><asp:Button ID=\"cmdSubmitPick\" runat=\"server\" Text=\"Submit Lotto Number\" \n onclientclick=\"return validateLottoPicks()\" /></td>\n </tr>\n</table>\n </div>\n </LoggedInTemplate>\n</asp:LoginView>\n
\n\nRight now I'm trying to use an external js script to find a textbox and modify it with an arbitrary value of 12, just so that I know it can work:
\n\nfunction validateLottoPicks() {\n document.getElementById('<%= LoginView1.FindControl(\"txt2ndNum\").ClientID %>').value = 12\n}\n
\n\nWhen I debug this with Firebug it seems all my other code works, except for this one function. I have verified the function gets called, it's just this line that doesn't work. Can someone please provide some guidance? I'll send milk and cookies.
\n\nUpdate:
\n\nThanks for all the help so far! I got some pretty quick responses.\n
\n
I removed the visible=\"false\" portion of the html, but no luck.\n
I also tried using tblLottoPick.FindControl, but no luck.\n
I added my header which includes the script that contains the function I am trying to run.\n
Using the rendered id, document.getElementById(\"LoginView1_txt2ndNum\").value = 12, works fine.
\n","tags":"javascript asp.net"},"6412720":{"id":6412720,"title":"Need suggestions on interactive Javascript based map","body":"can anyone help identify the Javascript library used for interactive maps on http://www.africatravelresource.com/
\n\nOr is it a custom solution? Any suggestions for something similar?
\n","tags":"javascript map"},"6412753":{"id":6412753,"title":"Ajax RSS reader","body":"I am wanting to write a small application that can pull RSS feeds from any RSS feed url. if anyone could give me very basic help on how to achieve this?
\n\nim only really starting out in the world on AJAX and this kinda stuff so any help would be appreciated.
\n\nThanks
\n\nEDIT :- I am only trying to do this with Jquery and Ajax, I dont want to use PHP or any other server side code.
\n","tags":"javascript jquery ajax rss"},"6412863":{"id":6412863,"title":"jQuery: Two elements using the same event function.","body":"What is the best way to share one function between two different event handlers? I want the same outcome but some situation dependent variables will need to be defined within the function depending on which element was clicked.
\n\nI could hack a solution but want to know the best practice for such a scenario. Simple problem must have a simple answer...
\n\nEXAMPLE
\n\nvar onMyEvent = function(e){\n if(click triggered from 'a'){\n //do that \n } \n if(click triggered from 'div'){\n //do that\n } \n}\n\n\n$('a').click(onMyEvent);\n$('div').click(onMyEvent);\n
\n\nFIDDLE: http://jsfiddle.net/f6C92/
\n","tags":"javascript jquery events javascript-events"},"6412913":{"id":6412913,"title":"Javascript return false, still submits form","body":"I have a form with JS validation, upon there being an error, the submit button should 'grey-out' and the form should not be submitted, however the last couple of functions seem to submit the form even though they pop the alert box!?!?!
\n\nButton code:
\n\n<input type=\"submit\" name=\"button\" id=\"button\" \n onclick='return formvalidation();' value=\"Next\" />\n
\n\nNon Working Function Example:
\n\nfunction BlankSite() {\n var SiteNum= document.getElementsByName(\"sitesinput\")[0].value;\n if ((SiteNum == \"\") || (SiteNum == 0))\n {\n alert(\"You have not selected an amount of sites.\")\n document.forms[0].button.disabled=true;\n return false;\n }\n }\n
\n\nFunction initiator:
\n\nfunction formvalidation()\n{\n ZeroPhones();\n BlankPC();\n BlankSite();\n BlankSeats();\n phone_change();\n}// End of formvalidation\n
\n\nThis is very strange and I have tried various work arounds all to no avail!
\n\nThanks,\nB.
\n","tags":"javascript forms"},"6412993":{"id":6412993,"title":"How do I remove the hyphens in this string (more complex than it sounds!)","body":"I must first confess that I understand very little JS and this is a bastardised version of some code I picked up elsewhere. Essentially it runs through a collection of list-items and extracts their class names (which are being populated by a CMS to reflect for example \"Brand\" or \"Manufacturer\") builds them into a string, splits the string into arrays and dedupes them. It then creates a list of unique check boxes based on the class name which, when selected or deselected, filters the list-items on the page using jquery.
\n\nMy problem is, that because the string of class names is being split by a 'space' if the value of the class consists of multiple-words the values populating the class must be hyphenated.
\n\nBUT... when the label for the checkbox is generated on the page by the script I wonder if it is possible to remove the hyphen without upsetting the logic generating it.
\n\nHere is the code I have so far, if you drop this into an HTML file you will see how it works (the jquery file is hosted elsewhere).
\n\nAny help would be highly appreciated!
\n\n<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"> \n<html>\n<head>\n\n<script type=\"text/javascript\" src=\"http://www.chewbz.com/jquery-1.4.3.min.js\"></script>\n<script type=\"text/javascript\"> \n/**\n * Removes duplicates in the array 'a'\n */\nfunction unique(a) {\n tmp = new Array(0);\n for(i=0;i<a.length;i++){\n if(!contains(tmp, a[i])){\n tmp.length+=1;\n tmp[tmp.length-1]=a[i];\n }\n }\n return tmp;\n}\n\n/**\n * Returns true if 's' is contained in the array 'a'\n */\n\nfunction contains(a, e) {\n for(j=0;j<a.length;j++)if(a[j]==e)return true;\n return false;\n}\n\n$(document).ready(function () {\n // create a string of class names, \n var stringOfClassNames = '';\n\n // grab the class name of each list item to build that string\n $('.filterThis > li').each( function (i) {\n var thisClassString = $(this).attr('class');\n stringOfClassNames = stringOfClassNames +' '+ thisClassString\n });\n\n // Trim spaces from the ends of that string:\n stringOfClassNames = jQuery.trim(stringOfClassNames);\n\n // convert the string to an array.\n var arrayClasses = stringOfClassNames.split(' ');\n\n // pull out only unique values from that array\n arrayUniqueClasses = (unique(arrayClasses));\n\n // we only want to create filters if there are multiple classes\n if (arrayUniqueClasses.length > 1) {\n\n // create box for filters\n $('<div class=\"filters\" id=\"filters\"><\\/div>').insertBefore('.filterThis');\n\n // create the filter checkboxes based on all the class names\n $.each(arrayUniqueClasses, function() {\n $('<div class=\"filter-options\"><input type=\"checkbox\" checked=\"checked\" value=\"'+this+'\" class=\"filter-checkbox\" id=\"filterID'+this+'\" />'+this+'<\\/div>').appendTo('.filters');\n });\n\n // create a 'show all' checkbox\n $('<div class=\"filter-options-all\"><input type=\"checkbox\" checked=\"checked\" value=\"filterAll\" class=\"filter-checkbox\" id=\"filterIDall\" />Show All<\\/div>').appendTo('.filters');\n\n // create a close button\n $('<img src=\"\" id=\"filter-close\" onClick=\"document.getElementById(\\'filters\\').style.display = \\'none\\'\"><\\/div>').appendTo('.filters');\n\n // the filter part\n $('.filters input').click( function() {\n var value= $(this).val();\n if (value == 'filterAll') {\n if ($(this).is(':checked')) {\n $('.filters input').attr('checked','checked');\n $('.filterThis li').fadeIn();\n } else {\n var one=1;\n }\n } else {\n stringValue = '.filterThis > li.'+value;\n if ($(this).is(':checked')) {\n $(stringValue).fadeIn();\n } else {\n $(stringValue).fadeOut();\n $('.filters #filterIDall').removeAttr('checked');\n }\n }\n });\n }\n});\n</script> \n\n</head>\n<body>\n\n<style>\n<!-- \nul.filterThis {\nlist-style-type:none;\n}\nul.filterThis li {\nwidth:200px;height:200px;background:#eee;border:solid 1px #ccc;float:left;margin:10px;\n}\n-->\n</style>\n\n<ul class=\"filterThis\">\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Large-Jars\">\n <div class=\"product-container\">\n Large Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n</ul>\n\n\n</body>\n\n</html>\n
\n","tags":"javascript string-manipulation"},"6412997":{"id":6412997,"title":"Add divs between divs in jQuery","body":"I'm working with a great jQuery plugin (booklet), and pages of the booklet are defined as so:
\n\n<div id=\"mybook2\">\n <div class=\"b-load\">\n <div> \n <h3>Yay, Page 1!</h3>\n </div>\n <div> \n <h3>Yay, Page 2!</h3>\n </div>\n <div> \n <h3>Yay, Page 3!</h3>\n </div>\n <div> \n <h3>Yay, Page 4!</h3>\n </div>\n </div>\n</div>\n
\n\nI want to add a div before each one of the pages (all the divs in div class=\"b-load\").
\n\nHow would I add it? .prepend? I'm not sure what to do here, I've never worked with jQuery or javascript at all, really.
\n","tags":"javascript jquery jquery-plugins"},"6413018":{"id":6413018,"title":"Internet Explorer: how to escape extra carriage return after editing Textarea?","body":"We have a multiline textarea in Internet Explorer.
\n\nIf we check it's content after the next then everything is correct (there are no extra carriage returns in textarea):
\n\ndocument.getElementById( 'text-area' ).value = \"Hello,\\nWorld!\";\n
\n\nBut if we set caret in the beginning position of the second line (in Internet Explorer, not in the code) and press tab key there is extra carriage character (there is a string dump on keydown below):
\n\nvalue[0]='H'\nvalue[1]='e'\nvalue[2]='l'\nvalue[3]='l'\nvalue[4]='o'\nvalue[5]=','\nvalue[6]='\\r'\nvalue[7]='\\n'\nvalue[8]='W'\nvalue[9]='o'\nvalue[10]='r'\nvalue[11]='l'\nvalue[12]='d'\nvalue[13]='!'\n
\n\nIt's a problem because other browsers don't insert extra carriage return.
\n\nDo you know how to prevent this in Internet Explorer? With help of CSS or Javascript.
\n","tags":"javascript jquery css internet-explorer"},"6413036":{"id":6413036,"title":"Get current clipboard content?","body":"I'd like to know a way to make my script detect the content of the clipboard and paste it into a text field when the page is opened, with no input from the user. How can it be done?
\n","tags":"javascript content clipboard paste"},"6413183":{"id":6413183,"title":"Manipulate Select Multiple List Setup On Page Load","body":"I have the following two select (multiple lists) which I'm trying to setup as a shuttle by where I provide the user an \"Available List\" on the left which they can select from, which then gets transported to the right select list, which is my \"Assigned List\".
\n\nThe HTML code is as follows:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n\n<select multiple=\"multiple\" name=\"assign_list\" size=\"7\" style=\"width:250px;\" id=\"ASSIGNED_LIST\">\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n
\n\nThrough the use of jQuery, how could I possibly remove from the AVAILABLE_LIST, the options that have been selected and are now in the ASSIGNED_LIST?
\n\nI need to some how perform on the option values only (AVAILABLE_LIST minus ASSIGNED_LIST).
\n\nSo based on the above, the AVAILABLE_LIST would then look like this:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n</select>\n
\n\n**NOTE:Just to make myself clear, I already have the above data setup when entering my page, that is, there are already values in the \"Assigned List\" on the right.
\n\nOn entry when presenting this page with the two select lists to the user, I want to programmatically perform the minus between the two sets in the background. There is no human interaction required as the selection has already been made.
\n\nJust wondering if this is possible?
\n\nThanks.
\n","tags":"javascript jquery"},"6413240":{"id":6413240,"title":"seperate validation of two forms with jquery","body":"I have two forms in one page and i would like to validate each form seperatly DEPENDING on what the user fills. So basically the user must fill only ONE form and NOT both of them...SO basically if the user fills up form number 1, the validation will be on form 1 ONLY..
\n\nBelow please find the code of both forms:
\n\n <form action=\"/registration.flow\" method=\"post\" id=\"formElem1\" name=\"formElem1\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n\n\n<form action=\"/registration.flow\" method=\"post\" id=\"formElem2\" name=\"formElem2\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n
\n\nCan someone help me please?? THANKS
\n","tags":"javascript jquery"},"6413244":{"id":6413244,"title":"How to set the google-maps marker as it is showed on the original website","body":"Try to Search the first address on google maps, and click on it :
\n\nit will show us a marker with a photo (if avaiable), description, and some links.\nI'd like to add the same marker in my web application.
\n\nWhich API I need to use? At the moment I just make my own string and append it :
\n\nvar finestra='';\nfinestra += '<div style=\"position:relative;width:200px;\">';\nfinestra += '<div style=\"position:relative;float:left; color:#000000;\" class=canale>';\nfinestra += 'Archimede<br />Via Brennero,12<br />38100 Trento(TN)<br />c.+39 555555555';\nfinestra += '</div>';\nfinestra += '</div>';\n\nvar marker = createMarker(map.getCenter());\nmap.setCenter(new GLatLng(46.084989,11.118851), 16, G_NORMAL_MAP);\nmap.addOverlay(marker);\nmarker.openInfoWindowHtml(finestra); \n
\n\nBut I need the same marker as google maps show on the original website.\nIs it possible?
\n","tags":"javascript google-maps marker"},"6413265":{"id":6413265,"title":"Appending to instead of below . What's wrong?","body":"In this jsFiddle
\n\nhttp://jsfiddle.net/littlesandra88/tZqYX/
\n\nwould I like that a new <tr>
is inserted below the one where \"Details\" is clicked.
\n\nI do
\n\n$('.row').append(\"<tr><td>It worked</td></tr>\");\n
\n\nbut this results in
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n<tr><td>It worked</td></tr></tr>\n
\n\nwhere I was hoping for
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n</tr>\n<tr><td>It worked</td></tr>\n
\n\nAny idea how to fix this?
\n","tags":"javascript jquery"},"6413327":{"id":6413327,"title":"DOJO include files a directory back","body":"I have dojo files in resources/js/dojo1.6/dojo/dojo.js
\n\nI have another file here resources/js/pages/file1.js
\n\nThis file requires another file which is located at resources/js/folder/file2.js
\n\nThis is how I am including it dojo.require('folder.file2');
\n\nSo these three folder are in hirarchy
\n\ndojo1.6, pages and folder
\n\nWhen I run application
\n\nI got the following error
\n\nFile not found: /resources/js/dojo1.6/folder/file2.js\n
\n\nHow can I overcome this error.
\n","tags":"javascript dojo include-path dojo.data"},"6413356":{"id":6413356,"title":"What is the \"this\" in an example JS function?","body":"Below is the entire contents of a JS/JQuery file. I didn't write it, but I'm trying to add on to it. I am having trouble understanding what this
is referring to. I haven't seen functions set up in this style before (SmartPhone = function() {}
)
\n\nSmartPhone = function()\n{\n this.miniMap = new GameModeMap();\n\n this.init = function()\n {\n var self=this;\n var $PhoneContainer = $(\"#PhoneContainer\");\n $PhoneContainer.append(\"<div id='PhoneScreen'></div>\");\n $PhoneContainer.append(\"<div class='PhoneButton'></div>\");\n $('.PhoneButton').click(function(){self.toggleClicked()});\n\n this.miniMap.init(\"#PhoneScreen\");\n\n //append the appMenu\n $(\"#PhoneScreen\").append(\"<div id='AppMenu'></div>\");\n $(\"#AppMenu\").hide();\n initMenu();\n //toggleClicked();\n }\n\n this.toggleClicked = function() \n {\n console.log(this);\n $('#PhoneContainer').toggleClass ('clicked');\n $('#PhoneScreen').toggleClass ('vertical');\n this.miniMap.toggle();\n $('#AppMenu').toggle();\n }\n\n this.init();\n}\n
\n","tags":"javascript jquery this"},"6413416":{"id":6413416,"title":"How to sort page elements by z-index while debugging?","body":"I'm debugging a JavaScript method on an ASP.NET 3.5 web site using jQuery in Visual Studio 2008. As a sanity check, I would like to look at a list of the page elements sorted by z-index. What's a good/easy way to do this? I would prefer an expression that I can input into the Watch window, but I'm open to other suggestions.
\n","tags":"javascript jquery visual-studio-2008"},"6413440":{"id":6413440,"title":"Jquery: passing variable to the next chained function, is this the correct way?","body":"I want to know if this is correct.
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n}).blur(function(length){\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nAbove i've simplified my code, im just checking if length == 0
on focus and blur for my input. notice how I declared length
in focus, but not in blur, but i added the variable name inside .blur(function(length){
. Is this the better way to get length
accessible in .blur
without having to re-declare var length = $(this).val().length;
in .blur?
\n\nas opposed to this:
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n})\n\n$('.myfilter').blur(function(length){\n var length = $(this).val().length;\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nthe first code block is the better way to do this?
\n","tags":"javascript jquery function variables passing"},"6413444":{"id":6413444,"title":"Regex Comma Separated Emails","body":"I am trying to get this Regex statement to work
\n\n^([_a-z0-9-]+(\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*(\\.[a-z]{2,3})+(\\s?[,]\\s?|$))+$
\n\nfor a string of comma separated emails in a textbox
using jQuery('#textbox').val();
which passes the values into the Regex statement to find errors for a string like:
\n\n\"test@test.com, test1@test.com,test2@test.com\"
\n\nBut for some reason it is returning an error. I tried running it through http://regexpal.com/ but i'm unsure ?
\n\nNB: This is just a basic client-side test. I validate emails via the MailClass
on the server-side using .NET4.0 - so don't jump down my throat re-this. The aim here is to eliminate simple errors.
\n\nEscaped Version:
\n\n^([_a-z0-9-]+(\\\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\\\.[a-z0-9-]+)*(\\\\.[a-z]{2,3})+(\\\\s?[,]\\\\s?|$))+$
\n","tags":"javascript regex comma"},"6413512":{"id":6413512,"title":"Javascript: Weird \"getElementById\"","body":"I have a function that populates a pages with something like this
\n\n<span id=\"span_title_'+result_no+'\">'+title+'</span>\n
\n\nand then I have another function that has this:
\n\n document.getElementById(\"span_title_\"+which_table).innerHTML=\"asg\";\nalert(document.getElementById(\"span_title_\"+which_table).value);\n
\n\nThe strange thing is the first (innerHTML) call works perfectly, the second one, the alert, gives me \"undefined
\"
\n\nAny idea why this is?
\n","tags":"javascript getelementbyid"},"6413523":{"id":6413523,"title":"complex problem with setTimeout, clearTimeout, and javascript","body":"I am a bit of a noob at Javascript and am writing an \"autoresult\" script that automatically gets the results of an as the user is typing. However, because the PHP backend is slow, I want the script to check and see if it has been 1 second since the last keyup. That way, the PHP backend won't be called unless the user is done typing. My idea was to use setTimeout and clearTimeout to handle this. However, my script doesn't work. Here is the input that calls the script:
\n\n<input type=\"text\" id=\"inputbox\" onkeyup=\"lookup_input(this.value,0);\" />\n
\n\n\"0\" is a flag used to check whether a Timeout has been set. Here is the script:
\n\nvar timeOut1;\n\nfunction showQuery(input_myinput2) { \n $.post(\"mybackendfile.php\", {queryString: input_myinput2}, function(data){\n if(data.length >0) {\n $('#mydiv').html(data); //php backend stuff, don't worry about this\n }\n });\n} \nfunction lookup_input(input_myinput,flag) {\n if(input_myinput.length == 0) {\n $('#mydiv').hide(); //check to see if there is an input, and if not, hide the div that displays autoresults\n } \n else { \n //the flag checks to see if the Timeout has been set\n\n if(!flag) { \n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000);\n //change the flag to \"1\" so that if another key is pressed it will throw the else statement, and if the key is pressed soon enough, it will clear the Timeout\n $('#inputbox').onkeyup('lookup_input(this.value,1)'); \n $('#mydiv').show();\n $('#mydiv').html('Searching... ');\n }\n else { //if timeout has been set then and next key has been pressed\n clearTimeout(timeOut1);\n $('#mydiv').html('Searching... ');\n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000); \n }\n }\n} \n
\n\nany suggestions on how to access the showQuery function correctly and how to get this script to work? also, any suggestions on another way to do the autoresult stall besides using setTimeout/clearTimeout? thanks!
\n","tags":"javascript settimeout autosuggest"},"6413541":{"id":6413541,"title":"Put an image on Google map","body":"I am creating a web page which shows the Google map using java script. I did this part now i have to pun an image on that map as a icon.Would you please tell me how will i able to do that?
\n\n\n\n
\n\n<script language=\"javascript\">\n var lat=1067;\n var lon=-110;\n\n function load() {\n if (GBrowserIsCompatible()) {\n var map = new GMap2(document.getElementById(\"map\"));\n map.setCenter(new GLatLng(lat, lon), 13);\n }\n }\n function map(position) {\n lat = position.coords.latitude;\n lon = position.coords.longitude;\n load();\n }\n function get_location() {\n navigator.geolocation.getCurrentPosition(map);\n }\n </script>\n
\n\n\n\nSearch
\n\n\n\nThanks\nAmit Pal
\n","tags":"javascript google-maps google"},"6413549":{"id":6413549,"title":"Facebook uid scripts","body":"is there an existing java script to enable admins of trade pages to scan fb uids for know scammers, so we can ban known scammers ids before they managed to join or scam on newer trade pages? im not a scripter in any way but do admin a trade page and as far as i know there is a script but only for sale from another trade page, i was hopeing to get it free, we are growing daily and there are larger sites with larger banned scammers we want to be able to check for these id
sd and ban nefore they can scam on our group page, thank you for any info you can give
\n","tags":"javascript"},"6413720":{"id":6413720,"title":"facebook wall post message with js from innerhtml","body":"Three divs nested in one
\n\n<div id=\"fulltxt\">\n<div id='action'>txt1 </div>\n<div id='reason'> txt2 </div>\n<div id=\"party\"> txt3 </div>\n</div>\n
\n\nusing encodeURIComponent I want to use all the text as a message to send to users wall when they click my \"send to facebook\" link
\n\nThis is in my
\n\n<script>\n // A function to post on the users wall\n function wallPost() {\n FB.ui(\n {\n method: 'feed',\n name: 'example',\n link: 'http://www.example.com',\n picture: 'http://www.example.com/logo.png',\n caption: 'funny example',\n description: 'This was posted from example.com.',\n message: ''\n },\n function(response) {\n if (response && response.post_id) {\n document.getElementById('message').innerHTML = 'Thanks for sharing!';\n } else {\n document.getElementById('message').innerHTML = 'Hey, you didn\\'t share!';\n }\n }\n );\n }\n</script>\n
\n\nThis is before my closing body tag
\n\n<div id=\"fb-root\"></div>\n<script src=\"https://connect.facebook.net/he_IL/all.js\"></script>\n<script>\n FB.init({\n appId : 'number goes here',\n status : true, // check login status\n cookie : true, // enable cookies to allow the server to access the session\n xfbml : true // parse XFBML\n });\n</script>\n
\n\nThis is the link
\n\n<p id=\"message\">\n <a href=\"#\" onclick=\"wallPost();\">Share Me!</a>\n</p>\n
\n\nSo what I need is that when the link is clicked the message changes to the content of fulltxt and passes to facebook
\n\nhow do i change the message in the wallpost function to the dynamically created content in the fulltxt div
\n","tags":"javascript facebook innerhtml getelementbyid"},"6413732":{"id":6413732,"title":"Why won't this web page finish loading?","body":"If I run this code, why doesn't the page ever finish loading? It will always show connecting on my browser tab.
\n\nIt is a simple javascript which will prompt an alert box and change the entire document to the word testing.
\n\nJavascript - testQuery.js
\n\n(function (window, undefined) {\n\nvar testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n}\n\n\ntestQuery.alertMessage = function () {\n alert(\"alert\");\n document.write(\"testing\");\n};\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\nHTML - testQuery.html
\n\n<html>\n<head>\n\n<script src=\"testQuery.js\"></script>\n<script>\n\nfunction onClick() {\n\ntestQuery.alertMessage();\n\n}\n\n</script>\n</head>\n
\n\n\n\n\n\n\n
\n","tags":"javascript firefox browser"},"6413744":{"id":6413744,"title":"Looking to access 16-bit image data in Javascript/WebGL","body":"I'm trying to download 16-bit image data from a server and push it into a WebGL texture without browser plug-ins. texImage2d will work with: ImageData, HTMLImageElement, HTMLCanvasElement, or HTMLVideoElement. I'm looking for some javascript (a library or code sample) which can decode 16-bit TIFF or similar (hdf5, etc.) image data into one of these object types.
\n\nI have no problem doing this is 8-bit per channel RGB by using an to load a PNG but this doesn't work with 16-bit per channel data since there aren't any \"standard\" browser supported image formats which are 16-bit.
\n","tags":"javascript image-processing webgl"},"6413778":{"id":6413778,"title":"javascript: Problem with dynamically adding xsl-stylesheet to XML Data","body":"I'm trying to write my first Firefoy-Eytension. The extension is supposed to display FOAF-Files in a nice way using XSLT. Right now I just wan't to add the XSL Stylesheet to the rdf file when I press a button. The function is called but the presentation of the rdf-file does not change.
\n\nfunction loadXMLDoc(dname)\n{\n if (window.XMLHttpRequest)\n {\n xhttp=new XMLHttpRequest();\n }\n else\n {\n xhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n xhttp.open(\"GET\",dname,false);\n xhttp.send(\"\");\n return xhttp.responseXML;\n}\n\nfunction displayMyResult()\n{\n alert(\"test\")\n xml=loadXMLDoc(\"http://www.example.com/me.rdf\");\n xsl=loadXMLDoc(\"http://www.example.com/test.xsl\");\n if (window.ActiveXObject)\n {\n ex=xml.transformNode(xsl);\n content.document.location.replace(ex)\n }\n // code for Mozilla, Firefox, Opera, etc.\n else if (document.implementation && document.implementation.createDocument)\n {\n xsltProcessor=new XSLTProcessor();\n xsltProcessor.importStylesheet(xsl);\n resultDocument = xsltProcessor.transformToFragment(xml,document);\n content.document.location.replace(ex)\n }\n}\n
\n\nThe first function loadXMLDoc is copied from another post here, and should probably work. The Probem is in the displayMyResult Method. The test-Alert confirms, that the function is called but the me.rdf file is not displayed any different.
\n\nI belive that the line content.document.location.replace(ex) is wrong but have not found anything on the web that would explain to me what to use instead.
\n\nCan anybody tell me how to load the XLST-Stylesheet to present the RDF File?
\n","tags":"javascript xml xslt firefox-addon"},"6413881":{"id":6413881,"title":"Setting a maximum and minimum value for text box","body":"I own a canvas website and want my customers to be able to enter a custom length of the canvas within a set range.
\n\nSay the range for the product is:
\n\n\n- Minimum: 10 cm
\n- Maximum: 200 cm
\n
\n\nThen in the text box they can enter any number between that range, but if they enter \"215\" then it should automatically go down to \"200\". Likewise if they enter \"7\" then it should automatically go up to \"10\"
\n","tags":"php javascript"},"6413889":{"id":6413889,"title":"Use JavaScript to store and return user info","body":"I'm looking for a way to have users fill out a form and then print their information through the entire site (Like when you sign in to StackOverflow, your name changes on the top and it retains the information as you navigate the rest of the site). I'm thinking it's something to do with placing \"onClick\" on the submit button, but I need the information to be carried throughout the pages.
\n\n<form name=\"input\" action=\"html_form_action.asp\" method=\"get\">\nFirst name: <input type=\"text\" name=\"FirstName\" value=\"Mickey\" /><br />\nLast name: <input type=\"text\" name=\"LastName\" value=\"Mouse\" /><br />\n<input type=\"submit\" value=\"Submit\" />\n</form> \n
\n\nThanks in advance.
\n","tags":"javascript forms user"},"6413908":{"id":6413908,"title":"Simple XMLHttpRequest (Google Weather)","body":"Hello I want to get xml from Google Weather
\n\nvar xmlhttp;\n\nif (window.XMLHttpRequest)\n {// code for IE7+, Firefox, Chrome, Opera, Safari\n xmlhttp= new XMLHttpRequest();\n }\nelse\n {// code for IE6, IE5\n xmlhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n\n xmlhttp.open(\"GET\", \"http://www.google.com/ig/api?weather=london&hl=en\", true);\n\nxmlhttp.send(null);\n\nxmlDoc=xmlhttp.responseXML;\n
\n\nIt`s not working . Thanks
\n","tags":"javascript xmlhttprequest google-weather-api"},"6413944":{"id":6413944,"title":"Changing content of a webpage using Ajax","body":"Is it possible to change the content of a webpage using ajax?\nMy need is to actually change the options of a selection. \nFor example my x123.com/setting.html
\n\n<html>\n<head>\n <meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\">\n <title>Webpage</title> \n <script>\n function save_changes() {\n //save the selection\n }\n </script>\n\n</head> \n<body>\n <select name=\"\" multiple>\n <option value=\"123\">123</option>\n <option value=\"456\">456</option>\n </select> \n <input type=\"button\" name=\"Submit Dude\" onclick='save_changes()'>\n</body> \n</html>\n
\n\nI want to give a request from x123.com/123.html
and reload the current page(x123.com/123.html
) so that the changes in x123.com/setting.html
are actually reflected in this one.
\n\nLemme know if my explanation is not clear.
\n","tags":"javascript ajax jquery-ajax"},"6413951":{"id":6413951,"title":"How do I update my model object before a create/update?","body":"It's me the big rails newbie. I have another problem.
\n\nThis is my partial for _care_point.html.erb
\n\n<div id='<%=dom_id(care_point) %>' class='draggable node_chin'>\n <div id=<%=\"node_#{care_point.id}\" %> class='node'><%= care_point.body %>\n </div>\n <textarea class='node_input'><%= care_point.body %></textarea>\n <%= link_to 'Close', [care_map, care_point], :method => :post, :remote => true, :class => 'close' %>\n <%= link_to 'Delete', [care_map, care_point], :confirm => \"Are you sure?\", :method => :delete, :remote => true, :class => 'delete' %>\n</div>\n
\n\nWhen I click the Close link the request is sent to the server as expected. All the fields are null though. How do I make sure that my model object is kept updated before it is sent to the server? Do I have to use the form functionality or can I just update it with Javascript somehow?
\n\nCheers
\n","tags":"javascript ruby-on-rails"},"6414060":{"id":6414060,"title":"how get href all images in page using javascript?","body":"how get href all images in page using javascript\nthis code return src how retunr href?
\n\nfunction checkimages() {\n var images = document.images;\n for (var i=0; i<images.length; i++){\n var img =images[i].src;\n alert(img);\n }\n}\n
\n","tags":"javascript attributes"},"6414093":{"id":6414093,"title":"Why isn't this google maps loaded?","body":"This is my code :
\n\n<script type=\"text/javascript\" src=\"http://maps.google.com/maps/api/js?sensor=true\"></script> \n<script type=\"text/javascript\">\n function load() {\n if (GBrowserIsCompatible()) {\n var map;\n var location = new google.maps.LatLng(46.084989, 11.118851);\n\n var stylez =\n [\n {\n featureType: \"all\",\n elementType: \"all\",\n stylers: [\n { saturation: -98 }\n ]\n }\n ];\n\n var mapOptions = {\n zoom: 11,\n center: location,\n mapTypeControlOptions: {\n mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'myScale']\n }\n };\n\n map = new google.maps.Map(document.getElementById(\"map_canvas\"), mapOptions);\n var mapType = new google.maps.StyledMapType(stylez, { name: \"Grayscale\" });\n map.mapTypes.set('myScale', mapType);\n map.setMapTypeId('myScale') \n }\n }\n\n $(document).ready(function(){\n load();\n });\n</script>\n\n\n<div id=\"map_canvas\" style=\"width: 100%; height: 700px\"></div>\n
\n\nbut nothing is loaded. Where am I wrong? Removing GBrowserIsCompatible() it works, but it doesn't recognize the location.
\n","tags":"javascript google-maps"},"6414105":{"id":6414105,"title":"Facebook API FB.getLoginStatus returns undefined","body":"I have added a like button on my website, and want to know who clicked the like button.\nThese are my sample code:
\n\n <div id=\"fb-root\"></div>\n <script>\n window.fbAsyncInit = function() {\n FB.init({appId: '182722795115444', status: true, cookie: true,\n xfbml: true});\n\n // To find who clicked the like button\n FB.Event.subscribe('edge.create', function(response){\n FB.getLoginStatus(function(response) {\n\n if (response.session) {\n // logged in and connected user, someone you know\n alert(\"logged in and connected user\");\n } else {\n // no user session available, someone you dont know\n alert(\"no user session available\");\n }\n });\n });\n };\n (function() {\n var e = document.createElement('script'); e.async = true;\n e.src = document.location.protocol +\n '//connect.facebook.net/en_US/all.js';\n document.getElementById('fb-root').appendChild(e);\n }());\n </script>\n <script src=\"http://connect.facebook.net/en_US/all.js#appId=182722795115444&xfbml=1\"></script>\n <fb:like href=\"www.blogcountry.net\" send=\"true\" width=\"450\" show_faces=\"true\" font=\"\"></fb:like>\n
\n\nWhen I clicked the Like button, and login facebook, do like successfully, but got \"no user session available\" alert.
\n\nSo I am confused:
\n\n\n- My appId in FB.init is the same as\nfb:like tag, is it right?
\n- Are there something wrong in my\nprogram ?
\n- How to get user name who click the\nLike button?
\n
\n\nThanks in advance.
\n","tags":"javascript facebook api like app-id"},"6414107":{"id":6414107,"title":"In Java, How do I represent multiple objects (of same type) in a single JSON object.","body":"I need to pass the attribtutes of particular type, as apart of a restful service to a javascript which will then display them to a webpage
\n\n @GET\n @Produces(\"application/json\")\n @Consumes(\"application/json\") \n @Path(\"/getStatusAll\")\n\n public void getStatusAll(\n @Context HttpServletRequest request,\n @Context HttpServletResponse response) throws ServletException,\n IOException\n\n{\n\n JSONArray jArray = new JSONArray();\n\n Collection<S> s = Manager.getS().values();\n for (Server i : svr)\n {\n JSONObject m = new JSONObject();\n\n m.put(\"name\",i.getName());\n m.put(\"status\",i.getStatus());\n\n jArray.add(m);\n\n }\n\n return jArray.toString();\n\n\n response.getOutputStream().print(jArray);\n response.flushBuffer();\n}\n
\n\nJAVASCRIPT will need to read ONE JSON object looking like:
\n\n[ {name:someName0, status: someStatus},\n {name:someName1, status: someStatus},\n {name:someName2, status: someStatus}...etc]\n
\n","tags":"java javascript json"},"6414123":{"id":6414123,"title":"javascript trigger function on event from a script, not explicitly from html","body":"So I'm making a registration form ATM, I have it like I want it so far except the excess JavaScript code to check the values realtime (onmouseover, onmouseout, onblur etc.).
\nA small sample:
\n\n<tr>\n <td>\n <label for=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\">\n Enter your name:\n </label>\n </td>\n <td>\n <input type=\"text\"\n id=\"name\"\n name=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\"\n onblur=\"checkValue('name', '', 3);\">\n </td>\n</tr>\n
\n\nfieldSelected makes the field background yellow if the value of the specified element (first parameter) matches the second parameter (default value) or is shorter than third parameter.
\nYou mouseover the label or the input field and it changes the bg first to yellow, then to red (since you didn't input anything).
\ncheckValue changes the field background to either red or green depending on the value (same parameters).
\nYou enter something in the input field, switch to another field and it changes the background color.
\n\nNow, as you will probably notice, there's a LOT of JavaScript function calls right there (5 per each input/select field). It would be great if someone would know a way to attach those event triggers from another place (I don't usually code this dirty), not directly in the form like this and preferably to multiple IDs at once. I have jQuery here, but I'm really no expert in JavaScript.
\n\nOr maybe there's a simpler way to do this? I want that the field background color changes on all those events for maximum interactivity. Sure, it's nothing much when all the data goes to the server side but I just want it that way.
\n","tags":"javascript javascript-events"},"6414152":{"id":6414152,"title":"Navigating / scraping hashbang links with javascript (phantomjs)","body":"I'm trying to download the HTML of a website that is almost entirely generated by JavaScript. So, I need to simulate browser access and have been playing around with PhantomJS. Problem is, the site uses hashbang URLs and I can't seem to get PhantomJS to process the hashbang -- it just keeps calling up the homepage.
\n\nThe site is http://www.regulations.gov. The default takes you to #!home. I've tried using the following code (from here) to try and process different hashbangs.
\n\nif (phantom.state.length === 0) {\n if (phantom.args.length === 0) {\n console.log('Usage: loadreg_1.js <some URL>');\n phantom.exit();\n }\n var address = 'http://www.regulations.gov/';\n var hash = phantom.args[0];\n console.log(address);\n phantom.state = Date.now().toString();\n phantom.open(address);\n\n} else {\n var hash = phantom.args[0];\n document.location = hash;\n console.log(document.location.hash);\n var elapsed = Date.now() - new Date().setTime(phantom.state);\n if (phantom.loadStatus === 'success') {\n if (!first_time) {\n var first_time = true;\n if (!document.addEventListener) {\n console.log('Not SUPPORTED!');\n }\n phantom.render('result.png');\n var markup = document.documentElement.innerHTML;\n console.log(markup);\n phantom.exit();\n }\n } else {\n console.log('FAIL to load the address');\n phantom.exit();\n }\n}\n
\n\nThis code produces the correct hashbang (for instance, I can set the hash to '#!contactus') but it doesn't dynamically generate any different HTML--just the default page.
\n\nI've also tried to set the initial address to the hashbang, but then the script just hangs and doesn't do anything.
\n\nThoughts?
\n","tags":"javascript python web-scraping hashbang phantomjs"},"6414240":{"id":6414240,"title":"Constant Variables in Javascript","body":"I am trying to have some const global variables which I can use in the javascript and I came out with this code and picking up from some answers referred in SO. But it seems that I have a little mistake somewhere which I couldn't spot. Can someone help me with this?
\n\nin testQuery.js
\n\n(function (window, undefined) {\n\n var testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n }\n\n var MYGLOBALS = function() {\n var globals = {\n foo : \"bar\",\n batz : \"blah\" \n }\n\n return {\n getValue : function(s) {\n return globals[s];\n }\n }\n }();\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\n
\n\nand in the html javascript tag i have this line of code.
\n\nin testQuery.html file
\n\n<html>\n <head>\n <script src=\"testQuery.js\"></script>\n <script>\n\n function onClick() {\n\n alert(MYGLOBALS.getValue(\"foo\"));\n }\n\n </script>\n </head>\n\n <body>\n\n <input type=\"button\" onclick=\"onClick()\">\n\n </body>\n\n</html>\n
\n","tags":"javascript javascript-library"},"6414253":{"id":6414253,"title":"Prototype - How to deselect the selected value from a dropdown","body":"How do I deselect the selected value from a dropdown list using Prototype.
\n\nFrom
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2” SELECTED>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nTo
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2”>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nThanks for any help in advance.
\n","tags":"javascript html prototype prototypejs"},"6414376":{"id":6414376,"title":"Can I see what jquery is sending to an external server?","body":"I am on a website...it has jquery and is sending some requests using javascript out to a php page.
\n\nIs their any way to see what data it is sending out from my computer and/or which URLs it is talking to?
\n\nI am using firefox and can load software if their is any needed.
\n\nEDIT - I have downloaded firebug and have the page loaded. Any idea what option I need to select?
\n","tags":"javascript jquery firefox"},"6414438":{"id":6414438,"title":"jQuery jqPlot library 12 hour Time Y-Axis Inversion issue","body":"I've started using jqPlot recently. The generated graphs look amazing and I love it. There are a few little things to learn here and there, but overall it's great.
\n\nI'm using the stacked bar generation and came into a werid issue. Basically, I want a 12 hour time from hours 0 - 24 on the Y axis, days on the X axis, and plot seconds of a certain activity on the graph. But also, I want the days (midnight) to start at the top of the graph, and come to the bottom.
\n\nI can flip the data easily with an inverse of the 'min' and 'max', but the issue arises when I try to flip the ticks; essentially, the \"time\".
\n\nI have my series defaults set to a hidden axis:
\n\nseriesDefaults: {\n renderer: $.jqplot.BarRenderer,\n yaxis: 'y2axis'\n},\n
\n\nAnd I put a placeholder series ( with the values all 0's, eg: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] ) to associate with a separate yaxis to plot the date ticks:
\n\nseries: [\n { show: true, yaxis: 'yaxis', }\n],\n
\n\nI can flip the values by changing the min and max on the default y axis and hiding it:
\n\ny2axis:{\n min: 24,\n max: 0,\n showTicks: false\n}\n
\n\nThen I set the ticks, and format them with the DateAxisRenderer:
\n\nyaxis:{\n renderer:$.jqplot.DateAxisRenderer,\n ticks: ['0', '2', '4', '6', '8', '10', '12', '14', '16', '18', '20', '22', '24'],\n tickOptions: { formatString: '%I:%M %p' }\n}\n
\n\nThis creates a yaxis with the time's from 12:00 AM to 12:00PM back to 12:00 AM in that format. but in increasing order from the bottom of the graph.
\n\nObviously, flipping the min and max on the 'yaxis' would accomplish nothing, as there is only place holder values, and it only flips the values. How would I go about to flip the axis values so that the time goes (from the bottom) 24, 22, 20... etc, etc, ?
\n\nThanks for your help in advance.
\n","tags":"javascript jquery jquery-plugins jqplot time-format"},"6414473":{"id":6414473,"title":"How to cause live text wrap while image/element is being dragged, in javascript?","body":"I want to make a text editor which incorporates this sort of effect (see video). However, I have no idea how this would be possible with javascript.
\n\nhttp://www.youtube.com/watch?v=mYnj4Mz9g9g
\n\nAny ideas would be amazing!
\n\nThanks
\n","tags":"javascript html text-editor textwrapping"},"6414530":{"id":6414530,"title":"Change background using Javascript - AJAX - jQuery","body":"I have a table as below;
\n\n<table style=\"width: 100%; border: solid 1px #666600; min-width: 800px\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n<td id=\"aaa\"> </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td id=\"bbb\"> </td>\n</tr>\n<tr>\n<td> </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td> </td>\n</tr>\n</table>\n
\n\nI am using jquery ajax and i have script as below;
\n\n$(document).ready( function() {\nvar i = 1;\n$.ajax({\n type: 'POST',\n url: 'ajax.php',\n data: 'id=' + i,\n dataType: 'json',\n cache: false,\n success: function(result) {\n $('.title').each(function(index){\n values = result[index].split('*');\n indexa = values[0];\n indexb = values[1];\n if((result[index])){\n $(this).html(indexb);\n }else{\n $(this).html(\" \");\n }\n });\n },\n });\n});\n
\n\nThe php file will return [\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"]
for i=1, [\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]
for i=2 etc etc.. The text in class=\"title\"
changes accordingly with respect to the data, as abc
or whatever it is..
\n\nYou can see another cell above every title cell having class=\"content\"
. I have a php file, ajax2.php
, which will return an image name with respect to a $_POST[\"data1\"]
and $_POST[\"data2\"]
. The $_POST[\"data1\"]
portion should have value indexa
and $_POST[\"data2\"]
portion should have value indexb
from javascript for each ajax request. The images are placed in images folder and the data returned by php file will be only image_name.extension
.
\n\nIn short, I want to change the background image of content cell above title cell to change when data / text in corresponding title cell changes. Anybody tell me how to do the AJAX request and change background image (change background image url).
\n\nI think it will be something like;
\n\n$(.content).css({ 'background-image':'url(images/' + imagename });
\n\nYou can see my fiddle here
\n\nThanks in advance..
\n","tags":"javascript jquery ajax jquery-ajax"},"6414558":{"id":6414558,"title":"In IE8 with Chrome Frame, after Download, App hangs","body":"Here's a strange one. Throwing it out there to see if anyone has any thoughts.
\n\nThis problem only occurs with IE8 with Chrome Frame installed. However, some machines with IE8 and chrome frame do not have the problem.
\n\nWhen a user downloads a file, the app stops responding (the file is successfully downloaded). Links still work, but all JS appears to be blocked. If the user re-loads the browser, the app works fine, and re-downloading (even the same file) no longer causes the app to hang.
\n\nI should add that only a small number of users have this issue (so its definitely something in the app causing the problem). The problem seems to require: certain user, certain setup with IE8+chrome frame.
\n","tags":"javascript internet-explorer-8 frame hang google-chrome-frame"},"6414578":{"id":6414578,"title":"Javascript slider not showing in IE9","body":"We have an automatic slider on this website, http://www.realcapfinancial.com and it has been working on all browsers. IE9 doesnt seem to work. It comes up with and error, no object line 298... character 2 etc. I forget what it says but I can't check it again since I'm at work using a mac.
\n\nAny help is perfect, thank you
\n","tags":"javascript jquery internet internet-explorer-9 explorer"},"6414613":{"id":6414613,"title":"Using Dashcode's List Controller without their DataSource option","body":"I'm working on my own custom google calendar, so far i'm able to get everything to work, i've loaded all the data and everything works great, each event shows up on a select box.
\n\nWhat i want to do now is to load each event name on the LIST part. How exactly can i do that? i'm very lost with it.
\n\nI looked at the sample code that dashcode has for the list part but i really am lost with populating the list in real time, can somebody help me? i can provide more info as needed, thanks!
\n","tags":"javascript json apple dashcode"},"6414614":{"id":6414614,"title":"Fairly easy JQuery Input Selection location problem","body":"I am having a problem with getting my JQuery javascript code to apply to the select box elements that it is supposed to. What's happening is that the select boxes are not following the actions that are specified in the javascript code. They are simply staying disabled and checked (see code below) instead of changing based on the first checkbox's selection.
\n\nI believe it is a problem regarding how I specify the location of the select boxes in the javascript code, but I don't know how to go about fixing it. Then again, I could be wrong about that too.
\n\nIf you have any insight on this or can correct the code, please do! Cheers.
\n\n
\n\nHTML:
\n\n<div class=\"medium_box\">\n <form name=\"searchform\" class=\"FECKsearch\" method=\"get\" onSubmit=\"return dosearch();\">\n <input name=\"s\" id=\"searchBox\" class=\"input\" type=\"text\" value=\"\" onfocus=\"myFocusHandler(this);\" onblur=\"myBlurHandler(this);\" size=\"18\" maxlength=\"50\">\n <input type=\"submit\" name=\"searchsubmit\" class=\"button\" value=\"Go\" />\n\n <span class=\"searcher\">International: <input type=\"checkbox\" id=\"International\" checked=\"yes\"></input></span>\n <span class=\"searcher1\">Americas: <input type=\"checkbox\" id=\"Americas\" disabled checked=\"yes\"></input></span>\n <span class=\"searcher1\">Europe: <input type=\"checkbox\" id=\"Europe\" disabled checked=\"yes\"></input></span>\n Asia: <input type=\"checkbox\" id=\"Asia\" disabled checked=\"yes\"></input>\n </form> \n</div>\n
\n\nJavascript:
\n\n$('#International').click(function() {\nvar paramChangeBoxes = $('input:checkbox');\nif ($(this).is(':checked')) {\n $('#Americas').attr('checked', 'checked');\n $('#Americas').attr('disabled', 'disabled');\n $('#Europe').attr('checked', 'checked');\n $('#Europe').attr('disabled', 'disabled');\n $('#Asia').attr('checked', 'checked');\n $('#Asia').attr('disabled', 'disabled');\n}\nelse {\n paramChangeBoxes.removeAttr('disabled');\n $('#Americas').removeAttr('disabled');\n $('#Europe').removeAttr('disabled');\n $('#Asia').removeAttr('disabled');\n\n }\n});\n
\n\n
\n\nUpdate & Solution:
\n\nCheers to John for the code $('#International').live(\"click\",function() {
which corrected the error of the JQuery code not functioning. Apparently if you are importing the code from a remote file you must include the \"live\" portion inside of your coding.
\n\nThanks again John!
\n","tags":"php javascript jquery html div"},"6414755":{"id":6414755,"title":"Convert Matlab Fuzzy Logic toolbox fis file to c# / c++ / javascript","body":"I have a Matlab program that is partially relies on Matlab's Fuzzy logic toolbox, which I want to convert to c# program (and later on to objective-c, but let's keep this for later).\nIs ther any means to convert my fuzzy logic fis file into c# (or c++, or maybe even javascript)?
\n\nP.S. I know the deploytool
can convert my program to exe, but I don't want to rely on matlab runtime
component and dlls but to make it a complete c# (or c++) program.
\n","tags":"c# javascript matlab"},"6414782":{"id":6414782,"title":"Provide link/Redirect after a 'Like' or 'Share' on Facebook or a 'Share' on Twitter","body":"basically what I want to do is forward people to a download link once they either 'like' my page on Facebook or post a link of the page to their profile (whatever is easier) and something similar for Twitter.
\n\nI have seen some bands do this when promoting a free download — to download the new song you must post this to your profile etc.
\n\nAnybody know how I could go about this? (This isn't a 'can you do it for me' question, I just need a point in the right direction regarding API's or any examples)
\n\nThanks.
\n","tags":"php javascript facebook twitter share"},"6414827":{"id":6414827,"title":"Why does my checkbox return the wrong state?","body":"I'm really confused. I have the following:
\n\n<input class=\"check-box\" \n id=\"Data__Correct\" \n name=\"Data.Correct\" \n type=\"checkbox\" value=\"Data.Correct\" />\n
\n\nWhen I put a check in the checkbox and check with fiddler I see it's sending back:
\n\nData.Correct False\n
\n\nI thought it should be the other way around. What's happening?
\n","tags":"javascript jquery html"}},"docInfo":{"78932":{"title":8,"tags":3,"body":34},"318630":{"title":6,"tags":6,"body":50},"814910":{"title":3,"tags":7,"body":24},"3047391":{"title":5,"tags":5,"body":80},"3802824":{"title":8,"tags":2,"body":67},"3827055":{"title":8,"tags":6,"body":68},"4047072":{"title":3,"tags":1,"body":43},"4185821":{"title":9,"tags":1,"body":80},"4272538":{"title":6,"tags":2,"body":220},"4460205":{"title":5,"tags":4,"body":13},"4508230":{"title":5,"tags":5,"body":31},"4529460":{"title":5,"tags":4,"body":211},"5306132":{"title":10,"tags":5,"body":223},"5351143":{"title":7,"tags":5,"body":41},"5549729":{"title":3,"tags":4,"body":14},"6174688":{"title":8,"tags":4,"body":90},"6294393":{"title":6,"tags":5,"body":143},"6296451":{"title":3,"tags":5,"body":81},"6364675":{"title":7,"tags":5,"body":296},"6395651":{"title":13,"tags":5,"body":25},"6396782":{"title":6,"tags":5,"body":32},"6397574":{"title":5,"tags":4,"body":44},"6398787":{"title":3,"tags":1,"body":12},"6401696":{"title":1,"tags":1,"body":27},"6401946":{"title":4,"tags":3,"body":63},"6403354":{"title":6,"tags":4,"body":123},"6403728":{"title":7,"tags":2,"body":130},"6404725":{"title":4,"tags":4,"body":73},"6405964":{"title":4,"tags":5,"body":27},"6406161":{"title":2,"tags":5,"body":24},"6409944":{"title":7,"tags":4,"body":69},"6409972":{"title":7,"tags":5,"body":48},"6410184":{"title":3,"tags":4,"body":147},"6410224":{"title":5,"tags":3,"body":51},"6411169":{"title":7,"tags":4,"body":46},"6411194":{"title":5,"tags":3,"body":22},"6411282":{"title":5,"tags":2,"body":27},"6411574":{"title":7,"tags":1,"body":38},"6411636":{"title":3,"tags":4,"body":58},"6411637":{"title":4,"tags":3,"body":56},"6411778":{"title":13,"tags":5,"body":124},"6411964":{"title":4,"tags":4,"body":61},"6412119":{"title":5,"tags":2,"body":170},"6412151":{"title":5,"tags":2,"body":86},"6412259":{"title":5,"tags":2,"body":26},"6412334":{"title":5,"tags":5,"body":240},"6412428":{"title":5,"tags":6,"body":86},"6412566":{"title":8,"tags":4,"body":172},"6412589":{"title":5,"tags":1,"body":79},"6412607":{"title":5,"tags":2,"body":28},"6412632":{"title":5,"tags":2,"body":172},"6412720":{"title":6,"tags":2,"body":17},"6412753":{"title":3,"tags":4,"body":43},"6412863":{"title":7,"tags":5,"body":52},"6412913":{"title":6,"tags":2,"body":77},"6412993":{"title":6,"tags":3,"body":337},"6412997":{"title":5,"tags":4,"body":63},"6413018":{"title":8,"tags":5,"body":75},"6413036":{"title":3,"tags":4,"body":16},"6413183":{"title":7,"tags":2,"body":140},"6413240":{"title":5,"tags":2,"body":107},"6413244":{"title":7,"tags":4,"body":72},"6413265":{"title":7,"tags":2,"body":53},"6413327":{"title":5,"tags":5,"body":40},"6413356":{"title":3,"tags":2,"body":61},"6413416":{"title":6,"tags":5,"body":33},"6413440":{"title":8,"tags":5,"body":75},"6413444":{"title":4,"tags":3,"body":83},"6413512":{"title":3,"tags":2,"body":33},"6413523":{"title":5,"tags":3,"body":141},"6413541":{"title":4,"tags":4,"body":56},"6413549":{"title":3,"tags":1,"body":57},"6413720":{"title":6,"tags":4,"body":135},"6413732":{"title":5,"tags":3,"body":61},"6413744":{"title":7,"tags":4,"body":65},"6413778":{"title":8,"tags":5,"body":107},"6413881":{"title":6,"tags":2,"body":45},"6413889":{"title":6,"tags":3,"body":63},"6413908":{"title":4,"tags":5,"body":31},"6413944":{"title":5,"tags":4,"body":65},"6413951":{"title":5,"tags":3,"body":87},"6414060":{"title":5,"tags":2,"body":24},"6414093":{"title":4,"tags":3,"body":68},"6414105":{"title":5,"tags":5,"body":105},"6414107":{"title":9,"tags":3,"body":70},"6414123":{"title":7,"tags":3,"body":164},"6414152":{"title":6,"tags":6,"body":128},"6414240":{"title":3,"tags":3,"body":81},"6414253":{"title":5,"tags":4,"body":46},"6414376":{"title":5,"tags":3,"body":37},"6414438":{"title":10,"tags":7,"body":184},"6414473":{"title":8,"tags":5,"body":20},"6414530":{"title":6,"tags":5,"body":200},"6414558":{"title":6,"tags":9,"body":73},"6414578":{"title":4,"tags":7,"body":34},"6414613":{"title":7,"tags":4,"body":55},"6414614":{"title":7,"tags":5,"body":162},"6414755":{"title":10,"tags":3,"body":49},"6414782":{"title":6,"tags":5,"body":44},"6414827":{"title":4,"tags":3,"body":32}},"length":100,"save":true},"index":{"title":{"root":{"1":{"2":{"docs":{"6414438":{"tf":1}},"df":1},"6":{"docs":{"6413744":{"tf":1}},"df":1},"docs":{},"df":0},"2":{"0":{"1":{"0":{"docs":{"3827055":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"3":{"docs":{"6411778":{"tf":1}},"df":1},"docs":{},"df":0,"c":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6405964":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6409972":{"tf":1},"6414827":{"tf":1}},"df":2}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"g":{"docs":{"6413944":{"tf":1},"6414530":{"tf":1}},"df":2}},"i":{"docs":{},"df":0,"n":{"docs":{"6413440":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6414755":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6412632":{"tf":1},"6414613":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1},"6413944":{"tf":1}},"df":2}},"x":{"docs":{},"df":0,"t":{"docs":{"6411194":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6411169":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1},"6412993":{"tf":1},"6413523":{"tf":1}},"df":3}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6413440":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"6414473":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{"6174688":{"tf":1},"6364675":{"tf":1}},"df":2},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"5549729":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413018":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}},"d":{"docs":{"6395651":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"6412151":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413036":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6412119":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1},"6413018":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":1},"6414827":{"tf":1}},"df":5}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1},"6413444":{"tf":1}},"df":2}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"6414107":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"q":{"docs":{"6397574":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1}},"df":1},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412753":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412993":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6411574":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"6412753":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412607":{"tf":1},"6413265":{"tf":1},"6414827":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"6412607":{"tf":1},"6413265":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414613":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1},"4529460":{"tf":1},"6403728":{"tf":1}},"df":3}}}},"e":{"docs":{},"df":0,"b":{"docs":{"6411282":{"tf":1},"6413732":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413944":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1}},"df":1}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"3802824":{"tf":1},"4460205":{"tf":1}},"df":2}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413908":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413512":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"k":{"docs":{"6410184":{"tf":1},"6412151":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1}},"df":1}},"y":{"docs":{"6413440":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"6414827":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"3047391":{"tf":1},"6405964":{"tf":1},"6412993":{"tf":1}},"df":3}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1}},"df":1}},"e":{"docs":{"6413889":{"tf":1}},"df":1}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"6396782":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"3827055":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412913":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6409972":{"tf":1},"6410224":{"tf":1},"6413183":{"tf":1},"6414253":{"tf":1},"6414614":{"tf":1}},"df":6}}}},"t":{"docs":{"78932":{"tf":1},"6403728":{"tf":1},"6409972":{"tf":1},"6412589":{"tf":1},"6413244":{"tf":1},"6413881":{"tf":1}},"df":6,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"4047072":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413444":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{"6413240":{"tf":1}},"df":1}}},"e":{"docs":{"6414376":{"tf":1}},"df":1,"m":{"docs":{"6364675":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{"6414376":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414376":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"c":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6397574":{"tf":1}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"2":{"5":{"6":{"docs":{"6395651":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6414782":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"w":{"docs":{"6412119":{"tf":1},"6413244":{"tf":1},"6414578":{"tf":1}},"df":3},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411636":{"tf":1},"6414578":{"tf":1}},"df":2}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6413549":{"tf":1},"6414123":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6411282":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6413908":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6414107":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6412863":{"tf":1},"6414107":{"tf":1}},"df":2}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6413416":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"v":{"docs":{"6174688":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6174688":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"6396782":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6414105":{"tf":1},"6414782":{"tf":1}},"df":5}}}}}},"l":{"docs":{},"df":0,"s":{"docs":{"6412913":{"tf":1}},"df":1}}},"i":{"docs":{"6414755":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1},"6413327":{"tf":1},"6414755":{"tf":1}},"df":3}},"r":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1}},"df":1,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6413732":{"tf":1}},"df":1}}},"d":{"docs":{"6412632":{"tf":1}},"df":1}},"x":{"docs":{"4529460":{"tf":1}},"df":1},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412566":{"tf":1},"6412607":{"tf":1},"6412863":{"tf":1},"6413356":{"tf":1},"6413440":{"tf":1},"6414123":{"tf":1}},"df":6}}}}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"6414755":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1}},"df":1}},"m":{"docs":{"6411778":{"tf":1.4142135623730951},"6412913":{"tf":1},"6413240":{"tf":1}},"df":3}}},"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413444":{"tf":1}},"df":1}}}},"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411964":{"tf":1},"6414376":{"tf":1}},"df":2}}},"j":{"docs":{},"df":0,"s":{"4":{"docs":{"6409972":{"tf":1}},"df":1},"docs":{},"df":0}},"r":{"docs":{},"df":0,"a":{"docs":{"6413018":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414123":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412863":{"tf":1},"6414123":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"4185821":{"tf":1},"6412863":{"tf":1},"6413416":{"tf":1}},"df":4}}}}}},"g":{"docs":{"6395651":{"tf":1}},"df":1},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6404725":{"tf":1},"6411169":{"tf":1},"6412259":{"tf":1}},"df":3}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6411169":{"tf":1}},"df":1},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1},"6403728":{"tf":1},"6411194":{"tf":1},"6412334":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1},"6413240":{"tf":1},"6413440":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1}},"df":14},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"n":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6412428":{"tf":1},"6414107":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":1},"6364675":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6403354":{"tf":1},"6403728":{"tf":1},"6406161":{"tf":1},"6411169":{"tf":1},"6411574":{"tf":1.4142135623730951},"6411636":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412428":{"tf":1},"6412589":{"tf":1},"6412632":{"tf":1},"6412720":{"tf":1},"6412913":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414060":{"tf":1},"6414123":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1},"6414578":{"tf":1},"6414755":{"tf":1}},"df":35,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{"4047072":{"tf":1},"6413356":{"tf":1},"6413720":{"tf":1}},"df":3,"o":{"docs":{},"df":0,"n":{"docs":{"6403354":{"tf":1},"6414107":{"tf":1}},"df":2}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6414614":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6409944":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"o":{"docs":{"6413889":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3827055":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413327":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412720":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6413416":{"tf":1}},"df":1}}}},".":{"docs":{"5306132":{"tf":1}},"df":1},"e":{"8":{"docs":{"6414558":{"tf":1}},"df":1},"9":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{"4272538":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{"6174688":{"tf":1},"6414438":{"tf":1}},"df":2}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"318630":{"tf":1},"814910":{"tf":1},"6412119":{"tf":1},"6413541":{"tf":1},"6413744":{"tf":1},"6414060":{"tf":1}},"df":6,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6414473":{"tf":1}},"df":1}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"4460205":{"tf":1}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1},"l":{"docs":{"5351143":{"tf":1}},"df":1}},"k":{"docs":{"6411282":{"tf":1}},"df":1}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6414755":{"tf":1}},"df":1},"n":{"docs":{"6412428":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"d":{"docs":{"6413183":{"tf":1},"6413732":{"tf":1},"6414093":{"tf":1}},"df":3}},"o":{"docs":{},"df":0,"k":{"docs":{"6413744":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"6414152":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414782":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1},"6414613":{"tf":1}},"df":2}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"6414473":{"tf":1}},"df":1}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"3802824":{"tf":1},"6296451":{"tf":1},"6411636":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1},"6414614":{"tf":1}},"df":6}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414782":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1},"6414253":{"tf":1}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412607":{"tf":1},"6413440":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1},"6403354":{"tf":1}},"df":3},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{"3802824":{"tf":1},"6411282":{"tf":1},"6412428":{"tf":1},"6413183":{"tf":1},"6413416":{"tf":1},"6413732":{"tf":1},"6414060":{"tf":1}},"df":7}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6413720":{"tf":1}},"df":2},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"4185821":{"tf":1},"6395651":{"tf":1}},"df":2}}}},"i":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}},"p":{"docs":{"3802824":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411194":{"tf":1},"6411778":{"tf":1}},"df":2}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"3802824":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1},"6413951":{"tf":1}},"df":2}}}},".":{"docs":{"5306132":{"tf":1}},"df":1},"s":{"docs":{"78932":{"tf":1},"3047391":{"tf":1},"5351143":{"tf":1},"6395651":{"tf":1.4142135623730951},"6396782":{"tf":1},"6403728":{"tf":1},"6412863":{"tf":1},"6413889":{"tf":1},"6413944":{"tf":1},"6414060":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1}},"df":12,"e":{"docs":{},"df":0,"r":{"docs":{"4508230":{"tf":1},"6413889":{"tf":1}},"df":2,"'":{"docs":{"6395651":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411169":{"tf":1},"6412259":{"tf":1},"6414105":{"tf":1}},"df":3}}}},"o":{"docs":{"4508230":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"6413549":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414782":{"tf":1}},"df":1}}}}},"o":{"docs":{"6412863":{"tf":1},"6413240":{"tf":1}},"df":2}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414755":{"tf":1}},"df":1}}}}}},"r":{"docs":{"6413265":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{"6411194":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414438":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6413881":{"tf":1},"6414473":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}}}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"6414107":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{"6413265":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1},"6410224":{"tf":1}},"df":2}},"s":{"docs":{},"df":0,"k":{"docs":{"6404725":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411574":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6403354":{"tf":1}},"df":1}}}},"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"6174688":{"tf":1},"6412753":{"tf":1},"6413944":{"tf":1},"6414530":{"tf":1}},"df":4}}},"p":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6411778":{"tf":1}},"df":1}}}}}},"i":{"docs":{"6414105":{"tf":1}},"df":1}},"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6396782":{"tf":1}},"df":2}}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"d":{"docs":{"6411778":{"tf":1},"6413778":{"tf":1}},"df":2,"d":{"docs":{"6412997":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1},"6413744":{"tf":1}},"df":2}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"4508230":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"814910":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1}}}},"p":{"docs":{"6412720":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1},"6414093":{"tf":1}},"df":4},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6409944":{"tf":1}},"df":1}}},"i":{"docs":{"6364675":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6413183":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"g":{"docs":{"4508230":{"tf":1}},"df":1}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1},"6413951":{"tf":1}},"df":2}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"6412632":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{"6401946":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{"6412993":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"5549729":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6403354":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{"6413183":{"tf":1},"6414107":{"tf":1}},"df":2}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413720":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"u":{"docs":{"6294393":{"tf":1},"6411194":{"tf":1}},"df":2}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1},"w":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"j":{"docs":{"6401946":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"w":{"docs":{"6409944":{"tf":1}},"df":1},"x":{"docs":{},"df":0,"t":{"docs":{"6413440":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"d":{"docs":{"6396782":{"tf":1},"6412720":{"tf":1}},"df":2}},"s":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1},"6414152":{"tf":1}},"df":2}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412259":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411637":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412259":{"tf":1},"6412589":{"tf":1},"6413951":{"tf":1},"6414107":{"tf":1.4142135623730951}},"df":4}}}}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414613":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413244":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1}},"df":1}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6294393":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}},"b":{"docs":{},"df":0,"e":{"docs":{"6414473":{"tf":1}},"df":1,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413951":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413265":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412997":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413327":{"tf":1}},"df":1,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1},"6414530":{"tf":1}},"df":2}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"6412720":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"4047072":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1}},"df":1}},"x":{"docs":{"78932":{"tf":1},"6410224":{"tf":1},"6413881":{"tf":1}},"df":3}},"i":{"docs":{},"df":0,"t":{"docs":{"6413744":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6395651":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"g":{"docs":{"6412151":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6401946":{"tf":1}},"df":1}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1},"6405964":{"tf":1},"6413778":{"tf":1}},"df":3,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"6414613":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{"6413744":{"tf":1},"6413778":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6414613":{"tf":1}},"df":1}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6410224":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6414558":{"tf":1}},"df":1}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{"6396782":{"tf":1},"6413327":{"tf":1}},"df":2}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414473":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6414253":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4460205":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"6413416":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6411574":{"tf":1.4142135623730951}},"df":1}}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6409972":{"tf":1},"6411778":{"tf":1},"6413778":{"tf":1}},"df":3}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}},"v":{"docs":{"6412997":{"tf":1.4142135623730951}},"df":1}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1},"6413908":{"tf":1},"6414093":{"tf":1}},"df":5}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1},"6413512":{"tf":1}},"df":2}}}}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6409972":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6411574":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413440":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"l":{"docs":{},"df":0,"u":{"docs":{"78932":{"tf":1},"6410224":{"tf":1},"6413881":{"tf":1},"6414253":{"tf":1}},"df":4},"i":{"docs":{},"df":0,"d":{"docs":{"6413240":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"3827055":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"6395651":{"tf":1}},"df":1}}},"a":{"docs":{"4460205":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414558":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{"6411964":{"tf":1}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"5":{"docs":{"5351143":{"tf":1},"6412566":{"tf":1}},"df":2},"docs":{"6405964":{"tf":1},"6414123":{"tf":1}},"df":2,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"4529460":{"tf":1}},"df":2}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{"6414060":{"tf":1}},"df":1}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"y":{"docs":{"6414438":{"tf":1}},"df":1},"z":{"docs":{"6413416":{"tf":1}},"df":1}},"length":557},"tags":{"root":{"2":{"0":{"0":{"8":{"docs":{"6413416":{"tf":1}},"df":1},"docs":{},"df":0},"1":{"0":{"docs":{"3827055":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"8":{"docs":{"6414558":{"tf":1}},"df":1},"9":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"3047391":{"tf":1},"6364675":{"tf":1},"6412428":{"tf":1},"6414107":{"tf":1}},"df":4,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"814910":{"tf":1},"3047391":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"4047072":{"tf":1},"4185821":{"tf":1},"4272538":{"tf":1},"4460205":{"tf":1},"4508230":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1},"5351143":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6395651":{"tf":1},"6396782":{"tf":1},"6397574":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6401946":{"tf":1},"6403354":{"tf":1},"6403728":{"tf":1},"6404725":{"tf":1},"6405964":{"tf":1},"6406161":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6410184":{"tf":1},"6410224":{"tf":1},"6411169":{"tf":1},"6411194":{"tf":1},"6411282":{"tf":1},"6411574":{"tf":1},"6411636":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6411964":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1},"6412259":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":1},"6412607":{"tf":1},"6412632":{"tf":1},"6412720":{"tf":1},"6412753":{"tf":1},"6412863":{"tf":1.4142135623730951},"6412913":{"tf":1},"6412993":{"tf":1},"6412997":{"tf":1},"6413018":{"tf":1},"6413036":{"tf":1},"6413183":{"tf":1},"6413240":{"tf":1},"6413244":{"tf":1},"6413265":{"tf":1},"6413327":{"tf":1},"6413356":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413444":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6413541":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413881":{"tf":1},"6413889":{"tf":1},"6413908":{"tf":1},"6413944":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414253":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":1},"6414755":{"tf":1},"6414782":{"tf":1},"6414827":{"tf":1}},"df":100}}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1},"814910":{"tf":1.7320508075688772},"4529460":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6396782":{"tf":1},"6403728":{"tf":1},"6405964":{"tf":1},"6410184":{"tf":1},"6411194":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412607":{"tf":1},"6412753":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413018":{"tf":1},"6413183":{"tf":1},"6413240":{"tf":1},"6413265":{"tf":1},"6413356":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413944":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951},"6414578":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":31}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6403354":{"tf":1},"6414107":{"tf":1},"6414613":{"tf":1}},"df":3}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"5":{"docs":{"5306132":{"tf":1},"5351143":{"tf":1},"5549729":{"tf":1},"6412566":{"tf":1}},"df":4},"docs":{"78932":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6405964":{"tf":1},"6411169":{"tf":1},"6411282":{"tf":1},"6412566":{"tf":1},"6414253":{"tf":1},"6414473":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":12,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414558":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"5":{"docs":{"6410224":{"tf":1}},"df":1},"docs":{"4508230":{"tf":1},"6411964":{"tf":1},"6413881":{"tf":1},"6414614":{"tf":1},"6414782":{"tf":1}},"df":5},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1},"6403354":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6411636":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6413440":{"tf":1}},"df":1},"t":{"docs":{"6413036":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{"6413327":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411194":{"tf":1},"6412997":{"tf":1},"6414438":{"tf":1}},"df":3}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1},"6414253":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"j":{"docs":{"6412259":{"tf":1},"6414253":{"tf":1}},"df":2}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413744":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414152":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6414614":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414613":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{"6396782":{"tf":1},"6413327":{"tf":1}},"df":2,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}},"m":{"docs":{"78932":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6410184":{"tf":1},"6413732":{"tf":1},"6413778":{"tf":1},"6414376":{"tf":1}},"df":4}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1},"6414782":{"tf":1}},"df":3}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1},"6411778":{"tf":1},"6412913":{"tf":1},"6413889":{"tf":1}},"df":4,"a":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413889":{"tf":1}},"df":1}}},"i":{"docs":{"814910":{"tf":1},"6412334":{"tf":1}},"df":2},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"o":{"docs":{"4508230":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414782":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414438":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6414473":{"tf":1}},"df":1,"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"2":{"5":{"6":{"docs":{"6395651":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6414782":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"6397574":{"tf":1},"6409944":{"tf":1}},"df":2}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"3827055":{"tf":1},"6413416":{"tf":1}},"df":2}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"c":{"docs":{"6414755":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{"6409972":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"6404725":{"tf":1},"6414558":{"tf":1}},"df":3}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6405964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1},"6294393":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1},"6413018":{"tf":1}},"df":5}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413036":{"tf":1}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1}}}},"p":{"docs":{"6412720":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1},"6414093":{"tf":1}},"df":4},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"q":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6294393":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"5549729":{"tf":1}},"df":1}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1.4142135623730951},"6413732":{"tf":1}},"df":2}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6411169":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1},"6413951":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1},"6413951":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1},"6413444":{"tf":1}},"df":2}}},"d":{"docs":{},"df":0,"o":{"docs":{"4508230":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6411169":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6412753":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4508230":{"tf":1},"6174688":{"tf":1},"6412753":{"tf":1},"6413944":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951}},"df":5}}},"p":{"docs":{},"df":0,"p":{"docs":{"6414105":{"tf":1}},"df":1,"l":{"docs":{"6414613":{"tf":1}},"df":1}},"i":{"docs":{"6413908":{"tf":1},"6414105":{"tf":1}},"df":2}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6396782":{"tf":1.4142135623730951}},"df":2}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414060":{"tf":1}},"df":1}}}}}}},"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413778":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6403354":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"814910":{"tf":1.4142135623730951}},"df":1}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1},"6405964":{"tf":1},"6410184":{"tf":1},"6413778":{"tf":1}},"df":5,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1},"6404725":{"tf":1},"6413244":{"tf":1},"6413541":{"tf":1.4142135623730951},"6413908":{"tf":1},"6414093":{"tf":1},"6414558":{"tf":1}},"df":7}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413512":{"tf":1},"6413720":{"tf":1}},"df":2}}}}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6409972":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1.4142135623730951}},"df":3}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413327":{"tf":1}},"df":1}}}}},"d":{"docs":{"6414105":{"tf":1}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413744":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"4460205":{"tf":1}},"df":1}}},"o":{"docs":{"4460205":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1.4142135623730951}},"df":3}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"t":{"docs":{"6406161":{"tf":1}},"df":1,"j":{"docs":{"6409972":{"tf":1}},"df":1,"s":{"4":{"docs":{"6409972":{"tf":1}},"df":1},"docs":{},"df":0}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6404725":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414473":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412863":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6397574":{"tf":1},"6401946":{"tf":1},"6409944":{"tf":1}},"df":3}}}},"w":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"n":{"docs":{"6411636":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6414240":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413908":{"tf":1}},"df":1}}}}},"b":{"docs":{"6411964":{"tf":1},"6412428":{"tf":1},"6414152":{"tf":1}},"df":3,"g":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6413744":{"tf":1}},"df":2}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"4460205":{"tf":1}},"df":1}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"3827055":{"tf":1},"6413416":{"tf":1}},"df":2}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}},"length":354},"body":{"root":{"0":{"0":{"0":{"0":{"docs":{},"df":0,"c":{"docs":{},"df":0,"d":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{"4272538":{"tf":1.4142135623730951},"4529460":{"tf":1.4142135623730951},"6364675":{"tf":2.449489742783178},"6403354":{"tf":1.7320508075688772},"6411169":{"tf":1.7320508075688772},"6412913":{"tf":1},"6413440":{"tf":2},"6413523":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.7320508075688772}},"df":10,"'":{"docs":{"6414438":{"tf":1}},"df":1},",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{},"df":0,",":{"0":{"docs":{"6414438":{"tf":1}},"df":1},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}}}}},"1":{"0":{"0":{"0":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1},"docs":{"6412334":{"tf":2.23606797749979},"6414093":{"tf":1},"6414530":{"tf":1}},"df":3,"%":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{"6413881":{"tf":1},"6414438":{"tf":1}},"df":2,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413881":{"tf":1}},"df":1}}}}},"1":{"0":{"docs":{"6413541":{"tf":1}},"df":1},"docs":{"6414093":{"tf":1}},"df":1,".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6414093":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"2":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1}},"df":1}}},"docs":{"6296451":{"tf":1},"6412632":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":3,":":{"0":{"0":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1,"p":{"docs":{},"df":0,"m":{"docs":{"6414438":{"tf":1}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}},"3":{"docs":{"6413541":{"tf":1}},"df":1},"4":{"docs":{"6414438":{"tf":1}},"df":1},"6":{"docs":{"6413244":{"tf":1},"6413744":{"tf":2},"6414438":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}},"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{"6414105":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"9":{"docs":{"5306132":{"tf":1}},"df":1},"docs":{"6414438":{"tf":1}},"df":1},"docs":{"6364675":{"tf":1.4142135623730951},"6403354":{"tf":1.7320508075688772},"6411637":{"tf":1.4142135623730951},"6412589":{"tf":1},"6412993":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413523":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":8,"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1.7320508075688772},"6412993":{"tf":1},"6414530":{"tf":1}},"df":3}},"”":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1}},"df":1}},".":{"4":{"docs":{},"df":0,".":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0},"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"a":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}}},"2":{"0":{"0":{"8":{"docs":{"6413416":{"tf":1}},"df":1},"docs":{"6404725":{"tf":1},"6413881":{"tf":1.4142135623730951}},"df":2},"1":{"0":{"docs":{"3827055":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3827055":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{"6414438":{"tf":1.4142135623730951}},"df":1},"1":{"5":{"docs":{"6413881":{"tf":1}},"df":1},"docs":{},"df":0},"2":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1},"4":{"docs":{"6414438":{"tf":2}},"df":1},"5":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1},"9":{"8":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{"3802824":{"tf":1},"4529460":{"tf":1.7320508075688772},"6403354":{"tf":1.4142135623730951},"6412589":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1},"6414578":{"tf":1}},"df":7,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"”":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6403354":{"tf":1}},"df":1}},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}},"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}},"3":{"0":{"docs":{"6409944":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}},"5":{"0":{"0":{"0":{"docs":{"4047072":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{"4047072":{"tf":1}},"df":1},"docs":{"318630":{"tf":1},"3802824":{"tf":1},"6411637":{"tf":1},"6414123":{"tf":1.7320508075688772}},"df":4,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}},"”":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},".":{"5":{"docs":{"6413416":{"tf":1}},"df":1},"docs":{},"df":0},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}},"p":{"docs":{},"df":0,"x":{"docs":{"6412119":{"tf":1}},"df":1}}},"4":{"0":{"0":{"docs":{"6404725":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{"6411637":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":1},"6414438":{"tf":1}},"df":5,".":{"0":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{},"df":0},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}}}},"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"7":{"docs":{"6412259":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{"814910":{"tf":1},"6364675":{"tf":1},"6412259":{"tf":1},"6414123":{"tf":1}},"df":4},"6":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,")":{"docs":{},"df":0,"/":{"6":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0}}}}},"6":{"6":{"6":{"0":{"0":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{"6414438":{"tf":1}},"df":1},"7":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{"6403354":{"tf":1.4142135623730951},"6413881":{"tf":1}},"df":2,",":{"2":{"5":{"docs":{"6403354":{"tf":1}},"df":1,",":{"docs":{},"df":0,",":{"7":{"docs":{},"df":0,",":{"4":{"0":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0},"4":{"0":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"8":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6414530":{"tf":1}},"df":1}},".":{"1":{"2":{"3":{"docs":{},"df":0,".":{"1":{"2":{"3":{"4":{"docs":{"6411169":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{"6174688":{"tf":1.4142135623730951},"6413744":{"tf":1},"6414438":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}},"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}},"9":{"8":{"docs":{"6414093":{"tf":1}},"df":1},"docs":{"6413444":{"tf":2.8284271247461903}},"df":1,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}},"]":{"docs":{},"df":0,"{":{"3":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1},"4":{"docs":{"6411169":{"tf":1}},"df":1},"docs":{},"df":0}}},"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":2},"3802824":{"tf":1.7320508075688772},"4047072":{"tf":1.4142135623730951},"4185821":{"tf":2.23606797749979},"5549729":{"tf":1},"6294393":{"tf":1},"6396782":{"tf":1.4142135623730951},"6397574":{"tf":1},"6401696":{"tf":1},"6401946":{"tf":1.4142135623730951},"6403354":{"tf":3},"6403728":{"tf":1},"6406161":{"tf":1},"6410184":{"tf":1},"6411282":{"tf":1},"6411574":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412753":{"tf":1.7320508075688772},"6412993":{"tf":1},"6413018":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413327":{"tf":1},"6413444":{"tf":1.4142135623730951},"6413541":{"tf":1.7320508075688772},"6413720":{"tf":1},"6413732":{"tf":1.4142135623730951},"6414093":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1.4142135623730951},"6414123":{"tf":1.7320508075688772},"6414376":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414782":{"tf":1}},"df":40,">":{"docs":{},"df":0,"i":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"814910":{"tf":1},"3802824":{"tf":1.4142135623730951},"3827055":{"tf":1.4142135623730951},"4047072":{"tf":1},"4185821":{"tf":1.7320508075688772},"4272538":{"tf":1},"4460205":{"tf":1},"4529460":{"tf":1.4142135623730951},"6174688":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6395651":{"tf":1},"6396782":{"tf":1},"6397574":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6403354":{"tf":1},"6403728":{"tf":1.4142135623730951},"6404725":{"tf":1.7320508075688772},"6405964":{"tf":1},"6409944":{"tf":1.4142135623730951},"6409972":{"tf":1},"6410184":{"tf":1},"6410224":{"tf":1},"6411574":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1.4142135623730951},"6411964":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412259":{"tf":1},"6412334":{"tf":1.7320508075688772},"6412566":{"tf":1},"6412589":{"tf":2},"6412753":{"tf":1},"6412863":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6412997":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413265":{"tf":1},"6413327":{"tf":1.7320508075688772},"6413440":{"tf":1},"6413444":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6413541":{"tf":1},"6413549":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413881":{"tf":1},"6413944":{"tf":1.4142135623730951},"6414105":{"tf":1},"6414240":{"tf":1},"6414376":{"tf":1.7320508075688772},"6414438":{"tf":1.7320508075688772},"6414473":{"tf":1},"6414530":{"tf":1.7320508075688772},"6414558":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":1.4142135623730951},"6414755":{"tf":1},"6414782":{"tf":1},"6414827":{"tf":1}},"df":68,"'":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1},"5306132":{"tf":1},"6395651":{"tf":1},"6397574":{"tf":1},"6412566":{"tf":1},"6412997":{"tf":1},"6413416":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414152":{"tf":1},"6414438":{"tf":1},"6414613":{"tf":1},"6414827":{"tf":1}},"df":14},"v":{"docs":{"6401946":{"tf":1},"6412632":{"tf":1},"6414152":{"tf":1},"6414438":{"tf":1}},"df":4},"d":{"docs":{"6413036":{"tf":1}},"df":1}},"f":{"docs":{"6412151":{"tf":1},"6413018":{"tf":1},"6413732":{"tf":1},"6414614":{"tf":1}},"df":4},"n":{"docs":{"6364675":{"tf":1},"6412607":{"tf":1},"6413265":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":5},"t":{"docs":{"6403728":{"tf":1},"6413244":{"tf":1},"6413732":{"tf":1}},"df":3,"'":{"docs":{"6413018":{"tf":1},"6413951":{"tf":1}},"df":2},"`":{"docs":{"6413908":{"tf":1}},"df":1}},"m":{"docs":{"6412753":{"tf":1}},"df":1}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1},"6413327":{"tf":1},"6413951":{"tf":1},"6414105":{"tf":1},"6414558":{"tf":1},"6414827":{"tf":1}},"df":6},"r":{"docs":{},"df":0,"e":{"docs":{"6413265":{"tf":1}},"df":1,"a":{"docs":{"6403354":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1},"6409944":{"tf":1},"6411574":{"tf":1},"6411964":{"tf":1},"6412863":{"tf":1},"6414613":{"tf":1}},"df":6}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"3047391":{"tf":1.4142135623730951},"6412259":{"tf":1},"6413244":{"tf":1}},"df":3}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"4047072":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}}},"e":{"docs":{"6413018":{"tf":1},"6414578":{"tf":1}},"df":2},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6411964":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414614":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"6411194":{"tf":1},"6412720":{"tf":1},"6413240":{"tf":1},"6413778":{"tf":1}},"df":5}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"3802824":{"tf":1},"6174688":{"tf":1},"6401696":{"tf":1},"6403728":{"tf":1},"6411636":{"tf":1},"6412632":{"tf":1},"6412753":{"tf":1},"6412913":{"tf":1},"6413541":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1}},"df":15,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6395651":{"tf":1},"6413183":{"tf":1},"6414782":{"tf":1}},"df":3}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1},"5549729":{"tf":1},"6414473":{"tf":1}},"df":3}}}}}}},"i":{"docs":{"6294393":{"tf":1.4142135623730951},"6409972":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6413327":{"tf":1.4142135623730951},"6413720":{"tf":1.7320508075688772},"6413951":{"tf":1},"6414093":{"tf":1},"6414152":{"tf":1},"6414438":{"tf":1},"6414558":{"tf":1}},"df":11},"e":{"docs":{"4272538":{"tf":1.4142135623730951},"6174688":{"tf":1},"6403354":{"tf":1.4142135623730951},"6403728":{"tf":1},"6404725":{"tf":1},"6409944":{"tf":1},"6410184":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1},"6413183":{"tf":1},"6413440":{"tf":1},"6413512":{"tf":1},"6413778":{"tf":1},"6414152":{"tf":1},"6414530":{"tf":1}},"df":15,"n":{"docs":{"6413881":{"tf":1},"6414438":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"6413183":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"e":{"docs":{"6413720":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{"6413244":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"3047391":{"tf":1}},"df":1}}}},"a":{"docs":{"6412566":{"tf":1},"6413440":{"tf":1}},"df":2,"n":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1},"6412334":{"tf":1},"6413512":{"tf":1},"6414240":{"tf":1},"6414438":{"tf":1}},"df":5,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6414782":{"tf":1}},"df":1}}}}},"i":{"docs":{"814910":{"tf":1},"6294393":{"tf":1},"6411637":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6412607":{"tf":1},"6412993":{"tf":1},"6413265":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6414473":{"tf":1},"6414578":{"tf":1}},"df":12}},"m":{"docs":{"6412607":{"tf":1}},"df":1},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"4047072":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{"6403728":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6413440":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}},"o":{"docs":{"5306132":{"tf":1},"6411778":{"tf":1},"6412566":{"tf":1.4142135623730951},"6413183":{"tf":1},"6413327":{"tf":1},"6413720":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1}},"df":8,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"y":{"docs":{"6413881":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"e":{"docs":{"6364675":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{"6406161":{"tf":1}},"df":1}}}},"b":{"docs":{"6412566":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412334":{"tf":1},"6414782":{"tf":1}},"df":2}}}},"t":{"docs":{},"df":0,"w":{"docs":{"5306132":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"3047391":{"tf":1},"4529460":{"tf":1},"6412151":{"tf":1},"6412566":{"tf":1},"6412993":{"tf":1},"6413018":{"tf":1},"6413244":{"tf":1},"6413265":{"tf":1},"6413444":{"tf":1},"6414093":{"tf":1}},"df":11,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413240":{"tf":1},"6413356":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1}},"df":1}}}},"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6401946":{"tf":1},"6413183":{"tf":1}},"df":2}}}},"p":{"docs":{},"df":0,".":{"docs":{"6412119":{"tf":1},"6414755":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1.4142135623730951},"5351143":{"tf":1}},"df":2}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1}},"df":1}},"o":{"docs":{"318630":{"tf":1},"6413018":{"tf":1}},"df":2,"e":{"docs":{"3827055":{"tf":1},"4508230":{"tf":1},"5549729":{"tf":1},"6410184":{"tf":1},"6411636":{"tf":1}},"df":5},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"4508230":{"tf":1}},"df":1}}},"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1.4142135623730951}},"df":1,">":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411194":{"tf":1}},"df":1}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}}}}}}},"i":{"docs":{"6411282":{"tf":1},"6414107":{"tf":1}},"df":2},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6401696":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}},"(":{"docs":{},"df":0,"+":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}},"^":{"docs":{},"df":0,"(":{"docs":{},"df":0,"[":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1.4142135623730951}},"df":1}}}}},"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"@":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"a":{"docs":{"6396782":{"tf":1},"6406161":{"tf":1},"6413265":{"tf":1},"6414473":{"tf":1}},"df":4},"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"5306132":{"tf":1},"6396782":{"tf":1},"6397574":{"tf":1},"6413720":{"tf":1}},"df":6,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"318630":{"tf":1},"4047072":{"tf":1},"6411282":{"tf":1},"6411637":{"tf":1},"6412259":{"tf":1},"6412428":{"tf":1},"6412589":{"tf":1},"6412997":{"tf":1},"6413327":{"tf":1},"6413720":{"tf":1},"6414060":{"tf":1},"6414253":{"tf":1}},"df":12}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1},"6412993":{"tf":1}},"df":2,"'":{"docs":{"6414558":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"6413908":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"c":{"docs":{"4529460":{"tf":1}},"df":1}}},"i":{"docs":{"5351143":{"tf":1},"6411636":{"tf":1}},"df":2},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413732":{"tf":1}},"df":1}}},"a":{"docs":{"6364675":{"tf":1}},"df":1}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1},"6413444":{"tf":1}},"df":2},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"318630":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6411169":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{"3047391":{"tf":1},"6412993":{"tf":1}},"df":2}},"\"":{"0":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0,"+":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"3047391":{"tf":1}},"df":1},"e":{"docs":{},"df":0,"d":{"docs":{"5549729":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"w":{"docs":{"6411636":{"tf":1.7320508075688772},"6412334":{"tf":1},"6414123":{"tf":1}},"df":3},"n":{"docs":{"6412913":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"r":{"docs":{"6412720":{"tf":1},"6414123":{"tf":1}},"df":2},"n":{"docs":{"6413183":{"tf":1}},"df":1},"h":{"docs":{"6412334":{"tf":1}},"df":1},"k":{"docs":{"6412428":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412753":{"tf":1},"6414376":{"tf":1}},"df":2,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"x":{"docs":{"6411637":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}},"*":{"docs":{},"df":0,"*":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{"6413944":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"'":{"docs":{"6412589":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"6411194":{"tf":1}},"df":1}}}},"}":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}},"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1}},"df":1}}},"k":{"docs":{},"df":0,"k":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3802824":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6403354":{"tf":1.7320508075688772},"6404725":{"tf":1.4142135623730951},"6410224":{"tf":1},"6412151":{"tf":1},"6413240":{"tf":1},"6413512":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1.4142135623730951}},"df":11,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1},"6413523":{"tf":1},"6414827":{"tf":1}},"df":3}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6412997":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413951":{"tf":1},"6414614":{"tf":1}},"df":4}}},"a":{"docs":{"6412607":{"tf":1}},"df":1},"t":{"docs":{"6403728":{"tf":1},"6414530":{"tf":1}},"df":2,"r":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}},"d":{"docs":{"6412334":{"tf":1}},"df":1}},"?":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1},"6414093":{"tf":1}},"df":2,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6413183":{"tf":1.4142135623730951},"6414253":{"tf":1.4142135623730951}},"df":3}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6413512":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{"6412119":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6413889":{"tf":1}},"df":1}}}},"p":{"docs":{"6413720":{"tf":1}},"df":1},"!":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}},".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"{":{"docs":{},"df":0,"'":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}},"i":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"6410184":{"tf":1}},"df":1}}}}}},"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"4529460":{"tf":1},"6404725":{"tf":1},"6412334":{"tf":1},"6412589":{"tf":1.7320508075688772},"6412632":{"tf":1},"6412913":{"tf":1.4142135623730951},"6413778":{"tf":1},"6414060":{"tf":1}},"df":9,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{"6397574":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{"6413327":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"318630":{"tf":1},"4272538":{"tf":1},"6401946":{"tf":1},"6403354":{"tf":1},"6409972":{"tf":1},"6411169":{"tf":1},"6412259":{"tf":1},"6412589":{"tf":1},"6412863":{"tf":1},"6413244":{"tf":1},"6413523":{"tf":1},"6413908":{"tf":1}},"df":12},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"h":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"y":{"2":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"f":{"docs":{"6412566":{"tf":1},"6414152":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}},"[":{"7":{"docs":{},"df":0,",":{"2":{"5":{"docs":{"6403354":{"tf":1}},"df":1,",":{"docs":{},"df":0,",":{"7":{"docs":{},"df":0,",":{"4":{"0":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0,"[":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"4185821":{"tf":1.4142135623730951},"5306132":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413523":{"tf":1.7320508075688772},"6413778":{"tf":1}},"df":5,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1.7320508075688772},"6413183":{"tf":1},"6413778":{"tf":1.4142135623730951}},"df":3}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1.7320508075688772},"6413018":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"6409972":{"tf":1},"6412428":{"tf":1}},"df":2,"s":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6405964":{"tf":1},"6413416":{"tf":1},"6414123":{"tf":1}},"df":3}},"i":{"docs":{},"df":0,"x":{"docs":{"6411636":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412119":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1}},"df":3}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412997":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1.7320508075688772},"6296451":{"tf":1},"6364675":{"tf":1},"6410184":{"tf":1},"6412119":{"tf":1},"6412863":{"tf":1},"6412993":{"tf":1},"6413018":{"tf":1},"6413744":{"tf":1},"6414152":{"tf":1},"6414558":{"tf":1.7320508075688772},"6414614":{"tf":1.4142135623730951}},"df":13,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}},"p":{"docs":{"6413951":{"tf":1},"6414558":{"tf":1}},"df":2}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1},"6414123":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"m":{"docs":{"6413778":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6414782":{"tf":1.4142135623730951}},"df":1}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414782":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6413732":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1},"6414105":{"tf":1},"6414755":{"tf":1.7320508075688772}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414755":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1}},"df":1,"t":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1.7320508075688772},"6401946":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"5351143":{"tf":1},"6412632":{"tf":1},"6413183":{"tf":1},"6414613":{"tf":1}},"df":4}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6409944":{"tf":1},"6414152":{"tf":1.4142135623730951}},"df":2}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"6414152":{"tf":1}},"df":1,"t":{"docs":{"6411964":{"tf":1},"6413881":{"tf":1}},"df":2},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1.4142135623730951},"6411574":{"tf":1}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414253":{"tf":1}},"df":1}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}},"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1},"6412863":{"tf":1}},"df":2}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1},"6412334":{"tf":1.4142135623730951},"6414438":{"tf":1},"6414827":{"tf":1}},"df":4},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1},"6414107":{"tf":1}},"df":2}}}},"n":{"docs":{"6413541":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{"6413744":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{"6412753":{"tf":1},"6412993":{"tf":1}},"df":2}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6395651":{"tf":1},"6412632":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413541":{"tf":1},"6414614":{"tf":1}},"df":5}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"6174688":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1}},"df":5,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"y":{"docs":{"6414152":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1,"g":{"docs":{"6413744":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"6406161":{"tf":1},"6411194":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412997":{"tf":1}},"df":5,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414614":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}}}}}},"t":{"docs":{"6294393":{"tf":1},"6412993":{"tf":1},"6413541":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":4,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6413951":{"tf":1},"6414755":{"tf":1}},"df":2}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6411964":{"tf":1},"6414107":{"tf":1}},"df":2}}}}}}},"s":{"docs":{"4272538":{"tf":1},"6403354":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1}},"df":2,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{"3802824":{"tf":1.7320508075688772},"5306132":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":2.6457513110645907},"6409944":{"tf":1},"6412428":{"tf":2.449489742783178},"6412566":{"tf":1},"6412993":{"tf":1.4142135623730951},"6412997":{"tf":2.449489742783178},"6413036":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413416":{"tf":1},"6413512":{"tf":1},"6413541":{"tf":1},"6413549":{"tf":2.23606797749979},"6413732":{"tf":1},"6414060":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414782":{"tf":1.4142135623730951}},"df":20,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1},"6414152":{"tf":1}},"df":2}},"b":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"y":{"docs":{"6364675":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"(":{"docs":{},"df":0,"<":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"x":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413889":{"tf":1}},"df":1}}}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6174688":{"tf":1},"6397574":{"tf":1},"6405964":{"tf":1},"6412607":{"tf":1},"6413444":{"tf":1},"6413720":{"tf":1},"6414107":{"tf":1}},"df":7},"t":{"docs":{"6413036":{"tf":1}},"df":1}},"d":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{"3827055":{"tf":1}},"df":1}},"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1},"6414530":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"4047072":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1.4142135623730951},"6413720":{"tf":1.4142135623730951},"6413778":{"tf":1},"6413951":{"tf":1},"6414530":{"tf":1},"6414782":{"tf":1.4142135623730951}},"df":9,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,",":{"docs":{},"df":0,"q":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"4185821":{"tf":1},"6395651":{"tf":1},"6405964":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1},"6413944":{"tf":1},"6414473":{"tf":1}},"df":7,"e":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1},"6413244":{"tf":1}},"df":2}}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6413018":{"tf":1}},"df":2,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413541":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"3047391":{"tf":1},"6414782":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"p":{"docs":{"3802824":{"tf":1},"6412913":{"tf":1}},"df":2,"u":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413512":{"tf":1},"6414613":{"tf":1}},"df":4},"p":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1},"6414782":{"tf":1}},"df":2}}},"r":{"docs":{"6413744":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414578":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1},"6413512":{"tf":1}},"df":2}}}}},"o":{"docs":{},"df":0,"m":{"docs":{"4529460":{"tf":1}},"df":1},"r":{"docs":{},"df":0,"m":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6397574":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412566":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6403728":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{"6174688":{"tf":1},"6412753":{"tf":1},"6413523":{"tf":1.7320508075688772},"6414376":{"tf":1},"6414530":{"tf":1.7320508075688772}},"df":5,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"6413244":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6413356":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"{":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"[":{"0":{"docs":{"6414152":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{"4272538":{"tf":1},"6411169":{"tf":1},"6411778":{"tf":1}},"df":3}},"c":{"docs":{"318630":{"tf":1}},"df":1,"k":{"docs":{"6412993":{"tf":1},"6414240":{"tf":1}},"df":2},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6413720":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}}}}}}},"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{"6413744":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"d":{"docs":{"6294393":{"tf":1}},"df":1}},"c":{"docs":{"3802824":{"tf":1}},"df":1},"x":{"docs":{"6403728":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"6364675":{"tf":1},"6397574":{"tf":1},"6413440":{"tf":1},"6413444":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":5,"a":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1},"5306132":{"tf":1},"6414613":{"tf":1}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"6401946":{"tf":1},"6411574":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412753":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1},"6414827":{"tf":1}},"df":7},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412997":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1},"6413444":{"tf":1}},"df":2,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"d":{"docs":{"3827055":{"tf":1},"6414107":{"tf":1}},"df":2,"i":{"docs":{"6403728":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6414614":{"tf":1},"6414782":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{"3047391":{"tf":1.7320508075688772},"6411169":{"tf":1},"6413444":{"tf":1.4142135623730951}},"df":3,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"4508230":{"tf":1}},"df":1,"r":{"docs":{"6414123":{"tf":1}},"df":1,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1}},"df":1}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":2},"v":{"docs":{"318630":{"tf":1},"6364675":{"tf":1},"6411778":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6414093":{"tf":1}},"df":7}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6403354":{"tf":1},"6409944":{"tf":1}},"df":2}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1},"6296451":{"tf":1},"6403354":{"tf":1},"6404725":{"tf":1},"6411636":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1.7320508075688772},"6412589":{"tf":1.7320508075688772},"6412913":{"tf":1},"6412993":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413444":{"tf":1},"6413732":{"tf":1},"6413778":{"tf":1},"6414060":{"tf":1},"6414107":{"tf":1},"6414240":{"tf":1.7320508075688772},"6414530":{"tf":1.7320508075688772}},"df":18,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"r":{"docs":{"6414060":{"tf":1}},"df":1}}},"y":{"docs":{},"df":0,"p":{"docs":{"6398787":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413889":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"j":{"docs":{"3827055":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414578":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"j":{"4":{"docs":{},"df":0,"m":{"docs":{},"df":0,"z":{"9":{"docs":{},"df":0,"g":{"9":{"docs":{},"df":0,"g":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"2":{"0":{"0":{"9":{"docs":{},"df":0,"/":{"0":{"6":{"docs":{},"df":0,"/":{"1":{"7":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"8":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"q":{"docs":{},"df":0,"y":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"h":{"docs":{},"df":0,"j":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"f":{"6":{"docs":{},"df":0,"c":{"9":{"2":{"docs":{},"df":0,"/":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"p":{"docs":{"6396782":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,".":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"v":{"docs":{"5306132":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6411964":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6411194":{"tf":1}},"df":1}}}}}}},"(":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6412997":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6409944":{"tf":1},"6413944":{"tf":1}},"df":2}}},"a":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6174688":{"tf":1}},"df":2}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6174688":{"tf":1.4142135623730951},"6397574":{"tf":1},"6412607":{"tf":1}},"df":3}},"n":{"docs":{},"df":0,"t":{"docs":{"3047391":{"tf":1},"6414438":{"tf":1}},"df":2}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1.4142135623730951}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1.4142135623730951}},"df":1}}}}}},"g":{"docs":{},"df":0,"n":{"docs":{"6414093":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1},"6412632":{"tf":1},"6413720":{"tf":1},"6414107":{"tf":1}},"df":6,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414105":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414558":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412259":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"3047391":{"tf":1.4142135623730951},"3827055":{"tf":1.4142135623730951},"6413265":{"tf":1},"6413523":{"tf":1}},"df":4,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"6413778":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"4529460":{"tf":1}},"df":1}}},"t":{"docs":{"6412589":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414107":{"tf":1}},"df":3,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6413327":{"tf":1}},"df":1}}},"docs":{},"df":0}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}},"q":{"docs":{"6404725":{"tf":1.4142135623730951}},"df":1,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1},"6413951":{"tf":1},"6414107":{"tf":1},"6414376":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":5}}},"i":{"docs":{},"df":0,"r":{"docs":{"6401946":{"tf":1},"6413183":{"tf":1},"6413327":{"tf":1},"6414558":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"f":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1}},"df":1}}}}},"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6397574":{"tf":1}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6398787":{"tf":1}},"df":1}}}},"l":{"docs":{"6401946":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1},"6413356":{"tf":1},"6414240":{"tf":1}},"df":3}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1},"6413944":{"tf":1}},"df":2}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1},"6412632":{"tf":1},"6414438":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"$":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":3}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4529460":{"tf":1.4142135623730951},"6411637":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413778":{"tf":1},"6414123":{"tf":1},"6414782":{"tf":1}},"df":7,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1.4142135623730951},"4460205":{"tf":1},"6409944":{"tf":1},"6411637":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1},"6413327":{"tf":1},"6413444":{"tf":1},"6413732":{"tf":1}},"df":9,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414755":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"[":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6412334":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413951":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"6413881":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413881":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"3":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}},"docs":{},"df":0}}}}}},"t":{"docs":{"6364675":{"tf":1}},"df":1},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":2.23606797749979}},"df":1,"}":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"[":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"e":{"docs":{"6364675":{"tf":2.8284271247461903}},"df":1}},"w":{"docs":{"6412119":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1.7320508075688772}},"df":1}},"g":{"docs":{},"df":0,"b":{"docs":{"6413744":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"6412753":{"tf":1.4142135623730951}},"df":1}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6411778":{"tf":1}},"df":1,"b":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"c":{"docs":{"3802824":{"tf":1.4142135623730951},"3827055":{"tf":1},"6414755":{"tf":2.449489742783178}},"df":3,"o":{"docs":{"6412566":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"6414827":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6413778":{"tf":1},"6413951":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1.7320508075688772},"6411964":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6403728":{"tf":1},"6404725":{"tf":1},"6410184":{"tf":1},"6412151":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413036":{"tf":1},"6413356":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414530":{"tf":1}},"df":11,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6413778":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6396782":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6396782":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"6411194":{"tf":1},"6414107":{"tf":1.4142135623730951}},"df":2}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1},"4529460":{"tf":2},"6412632":{"tf":1},"6412993":{"tf":1}},"df":4,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{"6412993":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":2.23606797749979}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1.4142135623730951}},"df":1,"u":{"docs":{"6414152":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6412993":{"tf":1},"6414755":{"tf":1.7320508075688772}},"df":3}},"n":{"docs":{},"df":0,"i":{"docs":{"3827055":{"tf":1},"6401946":{"tf":1}},"df":2}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"6409944":{"tf":1.7320508075688772},"6413732":{"tf":1},"6414105":{"tf":1.4142135623730951}},"df":4,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412151":{"tf":1.7320508075688772}},"df":1}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"6174688":{"tf":1}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6414152":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}},"\"":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"e":{"docs":{"78932":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"5351143":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1.7320508075688772},"6364675":{"tf":1.4142135623730951},"6396782":{"tf":1},"6401696":{"tf":1.4142135623730951},"6401946":{"tf":1},"6404725":{"tf":1.4142135623730951},"6410184":{"tf":1},"6410224":{"tf":1},"6411636":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412566":{"tf":1},"6412632":{"tf":1},"6412753":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6413240":{"tf":1},"6413440":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6413908":{"tf":1.4142135623730951},"6414060":{"tf":1},"6414093":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414152":{"tf":1.4142135623730951},"6414240":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":3}},"df":37,">":{"0":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}}}}}}},"1":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1,"r":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"814910":{"tf":1},"4047072":{"tf":1},"4272538":{"tf":2},"4529460":{"tf":1.4142135623730951},"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6364675":{"tf":1.7320508075688772},"6397574":{"tf":1},"6401696":{"tf":1},"6401946":{"tf":1},"6403354":{"tf":2.6457513110645907},"6403728":{"tf":1},"6404725":{"tf":1.7320508075688772},"6409944":{"tf":1},"6409972":{"tf":1},"6410184":{"tf":1.4142135623730951},"6410224":{"tf":1},"6411169":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412151":{"tf":1.7320508075688772},"6412259":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412589":{"tf":2},"6412607":{"tf":1.4142135623730951},"6412632":{"tf":1.4142135623730951},"6412863":{"tf":1},"6412913":{"tf":1.7320508075688772},"6412993":{"tf":1},"6412997":{"tf":1},"6413018":{"tf":1.4142135623730951},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413244":{"tf":1},"6413265":{"tf":1.7320508075688772},"6413327":{"tf":1},"6413356":{"tf":1},"6413440":{"tf":1.4142135623730951},"6413512":{"tf":1.4142135623730951},"6413523":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413720":{"tf":2},"6413732":{"tf":1.4142135623730951},"6413778":{"tf":1},"6413889":{"tf":1},"6413908":{"tf":1},"6413944":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414107":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414253":{"tf":1.4142135623730951},"6414438":{"tf":2},"6414530":{"tf":1.4142135623730951},"6414614":{"tf":1.4142135623730951},"6414827":{"tf":1.4142135623730951}},"df":62}}}},"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}}}}}},"2":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414755":{"tf":1}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}},"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"2":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"3":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"4":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"5":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"6":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"7":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"8":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"9":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"0":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"1":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"2":{"docs":{},"df":0,"*":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}},"docs":{},"df":0}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}},"b":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}},"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"#":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}}}}}},"x":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"1":{"2":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413944":{"tf":1}},"df":1,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,")":{"docs":{},"df":0,"{":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413440":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1}},"df":1}}}}},"a":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413356":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"6403728":{"tf":1}},"df":1}},"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414240":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411169":{"tf":1},"6412913":{"tf":1},"6414105":{"tf":1}},"df":3}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951},"4529460":{"tf":1},"6412589":{"tf":1},"6413018":{"tf":1},"6414152":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":6,"l":{"docs":{},"df":0,"i":{"docs":{"6413523":{"tf":1}},"df":1}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414755":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"6414755":{"tf":1}},"df":2}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1},"6401946":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}},"c":{"docs":{"6406161":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6414376":{"tf":1}},"df":2}},"i":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"t":{"docs":{"6411574":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"814910":{"tf":1}},"df":1}}}}}},":":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":2}},"df":1}}}},"e":{"docs":{"6414438":{"tf":1},"6414578":{"tf":1}},"df":2},"m":{"docs":{},"df":0,"a":{"docs":{"6413444":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"d":{"docs":{"6411282":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6397574":{"tf":1},"6412334":{"tf":1}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6395651":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"6401946":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}}}}},"o":{"docs":{"6410224":{"tf":1}},"df":1}},".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"_":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6403354":{"tf":1.4142135623730951},"6414123":{"tf":1.4142135623730951}},"df":2,":":{"docs":{},"df":0,"#":{"0":{"0":{"0":{"0":{"0":{"0":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"3":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{"6409972":{"tf":1.4142135623730951}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{"6412913":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"6413720":{"tf":1.4142135623730951},"6414105":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"i":{"docs":{"6413778":{"tf":1}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"6412151":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412993":{"tf":3},"6413951":{"tf":1.4142135623730951}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414827":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1},"6414530":{"tf":2.449489742783178}},"df":2}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":2.23606797749979}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}},"b":{"docs":{"6412997":{"tf":1.4142135623730951}},"df":1,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}},"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6414530":{"tf":2.449489742783178}},"df":1}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"g":{"docs":{"6412993":{"tf":1}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"6413240":{"tf":2}},"df":1}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":2.23606797749979}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6413951":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}},"z":{"docs":{"6412334":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"3802824":{"tf":1.7320508075688772},"4529460":{"tf":1},"6296451":{"tf":1.4142135623730951},"6411194":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413244":{"tf":1},"6413356":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413951":{"tf":1},"6414105":{"tf":2}},"df":10,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1},"6413265":{"tf":1}},"df":2}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"4508230":{"tf":1},"6364675":{"tf":1},"6409944":{"tf":1.7320508075688772},"6413444":{"tf":1}},"df":4,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413036":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"6412632":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413951":{"tf":1.7320508075688772}},"df":4}},"n":{"docs":{},"df":0,"e":{"docs":{"6411778":{"tf":1},"6412151":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413183":{"tf":1},"6413523":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"1":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"6411637":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6405964":{"tf":1},"6409972":{"tf":1},"6412993":{"tf":1},"6413018":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":2},"6413549":{"tf":1},"6413720":{"tf":1},"6414123":{"tf":1},"6414578":{"tf":1},"6414614":{"tf":2},"6414827":{"tf":1.4142135623730951}},"df":13,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6174688":{"tf":1},"6409972":{"tf":1.4142135623730951},"6412993":{"tf":2.23606797749979},"6414827":{"tf":1}},"df":4,"'":{"docs":{"6414614":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414123":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414060":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1},"6413523":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413889":{"tf":1},"6413944":{"tf":1.7320508075688772},"6414123":{"tf":2},"6414438":{"tf":1},"6414530":{"tf":2.449489742783178},"6414614":{"tf":1}},"df":10,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{"6412259":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6403728":{"tf":1.4142135623730951},"6414578":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{"6174688":{"tf":1},"6413944":{"tf":1}},"df":2}}}}}}},"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6411964":{"tf":1}},"df":1,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"5351143":{"tf":1},"6174688":{"tf":1},"6296451":{"tf":1},"6410184":{"tf":1.4142135623730951},"6413908":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":7,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":2}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"3802824":{"tf":1},"4047072":{"tf":1.4142135623730951},"5306132":{"tf":1},"6174688":{"tf":1.4142135623730951},"6364675":{"tf":1.7320508075688772},"6410184":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413778":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414152":{"tf":1}},"df":16},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"5549729":{"tf":1},"6414613":{"tf":1}},"df":2}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6403728":{"tf":1.7320508075688772}},"df":2}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{"6413018":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"6412334":{"tf":1},"6413889":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"g":{"docs":{"6413018":{"tf":1.7320508075688772}},"df":1}}}},"d":{"docs":{"6395651":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"h":{"docs":{"6414530":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6409944":{"tf":1},"6411964":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6414152":{"tf":1},"6414578":{"tf":1}},"df":7,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{"6413881":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"4185821":{"tf":1},"6409944":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412428":{"tf":1}},"df":7}},"m":{"docs":{},"df":0,"e":{"docs":{"6414240":{"tf":1},"6414438":{"tf":1}},"df":2}},"u":{"docs":{},"df":0,"s":{"docs":{"3047391":{"tf":1},"4529460":{"tf":1},"6364675":{"tf":1},"6412119":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":5}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{"6401696":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6410184":{"tf":1.7320508075688772}},"df":1},"b":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"6412566":{"tf":1}},"df":2}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413720":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"6294393":{"tf":1},"6410224":{"tf":1},"6411778":{"tf":1},"6412993":{"tf":2.6457513110645907},"6413541":{"tf":1},"6413720":{"tf":1},"6414438":{"tf":1}},"df":8,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":3},"6414530":{"tf":2.23606797749979}},"df":2,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"814910":{"tf":1},"6414438":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":3}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":1.4142135623730951},"6414093":{"tf":1}},"df":2}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6412720":{"tf":1},"6413881":{"tf":1.4142135623730951},"6414613":{"tf":1}},"df":3}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1},"4529460":{"tf":1},"6411636":{"tf":1.4142135623730951},"6411778":{"tf":1},"6412566":{"tf":1.4142135623730951},"6413944":{"tf":1}},"df":6}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1.7320508075688772}},"df":1}}}}},"m":{"docs":{"6412993":{"tf":1},"6413881":{"tf":1}},"df":2,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6413881":{"tf":1}},"df":1}}}}},"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"1":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6412993":{"tf":1}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6411636":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"78932":{"tf":1},"3047391":{"tf":1.7320508075688772},"4272538":{"tf":1.4142135623730951},"5306132":{"tf":1},"6296451":{"tf":1.4142135623730951},"6404725":{"tf":1.4142135623730951},"6412151":{"tf":1},"6412259":{"tf":1},"6413183":{"tf":1},"6413327":{"tf":1},"6414152":{"tf":1},"6414614":{"tf":1}},"df":12,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413327":{"tf":1},"6414530":{"tf":1}},"df":2}}}},"r":{"docs":{},"df":0,"m":{"docs":{"5351143":{"tf":1},"6174688":{"tf":1.4142135623730951},"6296451":{"tf":1},"6406161":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412913":{"tf":1.7320508075688772},"6413240":{"tf":2.23606797749979},"6413889":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":10,"u":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"t":{"docs":{"6413744":{"tf":1},"6414438":{"tf":1.4142135623730951}},"df":2,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413240":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412913":{"tf":1.7320508075688772}},"df":1}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6414782":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6414578":{"tf":1}},"df":1}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"=":{"0":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"j":{"docs":{},"df":0,"=":{"0":{"docs":{},"df":0,";":{"docs":{},"df":0,"j":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,";":{"docs":{},"df":0,"j":{"docs":{},"df":0,"+":{"docs":{},"df":0,"+":{"docs":{},"df":0,")":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"[":{"docs":{},"df":0,"j":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"=":{"docs":{},"df":0,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"u":{"docs":{"4047072":{"tf":1},"6413440":{"tf":1.4142135623730951}},"df":2}},"o":{"docs":{"6414240":{"tf":1}},"df":1},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6396782":{"tf":1},"6401696":{"tf":1},"6413327":{"tf":1},"6413778":{"tf":1}},"df":4}},"r":{"docs":{"6411637":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1}},"df":1}}},"i":{"docs":{"6414755":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{"6294393":{"tf":1},"6414530":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"6414827":{"tf":1}},"df":1},".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6403728":{"tf":1.4142135623730951},"6412993":{"tf":1},"6413244":{"tf":1},"6413440":{"tf":1},"6413512":{"tf":1},"6413778":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":10,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"6414152":{"tf":1.4142135623730951}},"df":1}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"4":{"docs":{"6296451":{"tf":1}},"df":1},"docs":{"318630":{"tf":1},"4272538":{"tf":1},"6174688":{"tf":1.4142135623730951},"6410184":{"tf":1.7320508075688772},"6412566":{"tf":1},"6413778":{"tf":1},"6413908":{"tf":1},"6414376":{"tf":1}},"df":8,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}},"y":{"docs":{"6413778":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"6174688":{"tf":1},"6412632":{"tf":1},"6414376":{"tf":1}},"df":3}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}},"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1}},"df":1}}}},"x":{"docs":{"4047072":{"tf":1},"4185821":{"tf":1},"4529460":{"tf":1.4142135623730951},"6403728":{"tf":1.7320508075688772},"6411636":{"tf":1},"6412259":{"tf":1},"6412607":{"tf":1},"6413265":{"tf":1},"6414614":{"tf":1}},"df":9},"l":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1.7320508075688772},"6401946":{"tf":1},"6410184":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413327":{"tf":2},"6413356":{"tf":1},"6413778":{"tf":2},"6414530":{"tf":1.7320508075688772},"6414558":{"tf":1.7320508075688772},"6414614":{"tf":1},"6414755":{"tf":1}},"df":11,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":2}},"df":1,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0},".":{"docs":{},"df":0,"v":{"docs":{"6296451":{"tf":1}},"df":1},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6296451":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414240":{"tf":1}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}},"l":{"docs":{"6413240":{"tf":1.7320508075688772},"6413889":{"tf":1}},"df":2},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1},"6412993":{"tf":2.8284271247461903}},"df":2,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1.7320508075688772}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"5351143":{"tf":1.7320508075688772},"6174688":{"tf":1},"6411778":{"tf":2},"6413036":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":2.6457513110645907}},"df":6}}},"n":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1},"6414558":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6412632":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6413244":{"tf":2.449489742783178}},"df":1}}}}},"d":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"6364675":{"tf":1.4142135623730951},"6406161":{"tf":1},"6411637":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1.4142135623730951},"6413240":{"tf":1},"6413444":{"tf":1},"6414105":{"tf":1}},"df":11},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6413732":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6409944":{"tf":1.4142135623730951},"6412566":{"tf":1}},"df":2}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"4272538":{"tf":1.4142135623730951},"6296451":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412913":{"tf":1},"6412993":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":1},"6414827":{"tf":1}},"df":8},"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"6396782":{"tf":1},"6413720":{"tf":1},"6414105":{"tf":1},"6414782":{"tf":1}},"df":4,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{"6412566":{"tf":1}},"df":1}},"r":{"docs":{"6294393":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1},"6413549":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1}},"df":7,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6409944":{"tf":1}},"df":1}}},"l":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"5306132":{"tf":1},"6296451":{"tf":1.4142135623730951},"6397574":{"tf":1},"6401946":{"tf":1.4142135623730951},"6403728":{"tf":1},"6405964":{"tf":1},"6409944":{"tf":1},"6411169":{"tf":1},"6411574":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1.7320508075688772},"6412334":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":2.449489742783178},"6412607":{"tf":1.4142135623730951},"6412632":{"tf":1.7320508075688772},"6412863":{"tf":1.4142135623730951},"6412913":{"tf":1.4142135623730951},"6412993":{"tf":2.23606797749979},"6413356":{"tf":2.23606797749979},"6413512":{"tf":1.4142135623730951},"6413523":{"tf":1.7320508075688772},"6413541":{"tf":1.7320508075688772},"6413720":{"tf":1.7320508075688772},"6413732":{"tf":1.4142135623730951},"6413778":{"tf":2},"6413944":{"tf":1},"6413951":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414530":{"tf":1},"6414614":{"tf":1}},"df":36,"(":{"docs":{"6412863":{"tf":1},"6414240":{"tf":1}},"df":2,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}},"p":{"docs":{"6404725":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2}}}}}}},"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{"4047072":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1},"6413523":{"tf":1}},"df":2}}}},"e":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6412151":{"tf":1.4142135623730951}},"df":2},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}},"x":{"docs":{"6412589":{"tf":1}},"df":1}},"=":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"3047391":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.7320508075688772}},"df":1}}}}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"%":{"2":{"0":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"5":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}}}}},"docs":{},"df":0},"docs":{},"df":0}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{"6413720":{"tf":1}},"df":1}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"6413549":{"tf":1},"6414782":{"tf":1}},"df":2},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"5306132":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414558":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6396782":{"tf":1.4142135623730951}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"w":{"docs":{"6414438":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1},"6412566":{"tf":1.7320508075688772}},"df":2,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6401946":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"d":{"docs":{"6412753":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"3827055":{"tf":1},"6411964":{"tf":1}},"df":2}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":2.449489742783178}},"df":1}},"a":{"docs":{},"df":0,"g":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6395651":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"b":{"docs":{"6413549":{"tf":1}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2,"(":{"docs":{},"df":0,"{":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{"6413720":{"tf":1}},"df":1}}},":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"6414105":{"tf":1}},"df":1}}}}}},"s":{"docs":{"6401946":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"b":{"docs":{"3802824":{"tf":1.4142135623730951},"6412566":{"tf":1}},"df":2,"o":{"docs":{},"df":0,"x":{"docs":{"4185821":{"tf":2.449489742783178},"6409972":{"tf":1},"6410224":{"tf":1},"6411282":{"tf":1.4142135623730951},"6412993":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413881":{"tf":1},"6414614":{"tf":1.7320508075688772},"6414827":{"tf":1}},"df":9,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414613":{"tf":1}},"df":1}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"4529460":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"!":{"docs":{},"df":0,"?":{"docs":{},"df":0,"!":{"docs":{},"df":0,"?":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6411169":{"tf":1}},"df":1,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{"6404725":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"h":{"docs":{"3802824":{"tf":1},"4185821":{"tf":1},"4272538":{"tf":1.4142135623730951},"4508230":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6413240":{"tf":1.4142135623730951}},"df":7,"e":{"docs":{},"df":0,"r":{"docs":{"6412632":{"tf":1}},"df":1}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1},"6414438":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":2},"6414530":{"tf":1}},"df":2}}}},"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6411636":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"4047072":{"tf":1},"6364675":{"tf":1},"6412334":{"tf":1},"6414438":{"tf":1}},"df":4,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414827":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1},"6413183":{"tf":1},"6414123":{"tf":2},"6414530":{"tf":2}},"df":4,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"4185821":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"6411778":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6414614":{"tf":1}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{"6403728":{"tf":1}},"df":1,"c":{"docs":{"3047391":{"tf":1},"6294393":{"tf":1},"6412753":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413444":{"tf":1},"6414438":{"tf":1}},"df":6}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"n":{"docs":{"6413549":{"tf":1.7320508075688772}},"df":1,"d":{"docs":{"6414782":{"tf":1}},"df":1}},"r":{"docs":{"4529460":{"tf":1},"6414240":{"tf":1},"6414438":{"tf":1}},"df":3},"t":{"docs":{},"df":0,"z":{"docs":{"6414240":{"tf":1}},"df":1}},"d":{"docs":{"3047391":{"tf":1}},"df":1}},"e":{"docs":{"6397574":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1.4142135623730951}},"df":5,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1},"6410184":{"tf":1},"6411637":{"tf":1},"6413265":{"tf":1},"6414614":{"tf":1}},"df":5,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}},";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":2}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1},"6412151":{"tf":1}},"df":2}}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"4272538":{"tf":1},"6414614":{"tf":1}},"df":2}},"v":{"docs":{"6413778":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6401946":{"tf":1},"6412997":{"tf":1},"6413356":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6413951":{"tf":1}},"df":6,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"4272538":{"tf":1},"6364675":{"tf":1}},"df":2}}}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1},"6411637":{"tf":1},"6412863":{"tf":1},"6413183":{"tf":1},"6413881":{"tf":1}},"df":5}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6403354":{"tf":1},"6411574":{"tf":1},"6412863":{"tf":1.4142135623730951}},"df":4},"i":{"docs":{},"df":0,"d":{"docs":{"6413523":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1},"6401946":{"tf":1},"6413018":{"tf":1}},"df":3,"n":{"docs":{"6403728":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,",":{"docs":{},"df":0,"#":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6364675":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412913":{"tf":1},"6412993":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":2}},"df":9,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414105":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"[":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"6364675":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6294393":{"tf":1},"6412566":{"tf":1}},"df":2}}},"g":{"docs":{"6412151":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1},"t":{"docs":{"6401946":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{"6404725":{"tf":1},"6412632":{"tf":2.23606797749979}},"df":2,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"318630":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1.7320508075688772},"6174688":{"tf":1.4142135623730951},"6364675":{"tf":1},"6395651":{"tf":1},"6409944":{"tf":1},"6411636":{"tf":1},"6411964":{"tf":1},"6412566":{"tf":1.7320508075688772},"6413018":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1}},"df":18,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"3802824":{"tf":1}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,",":{"1":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}},"a":{"docs":{},"df":0,"k":{"docs":{"3047391":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6412993":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}}},">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6404725":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1},"6413951":{"tf":1}},"df":2,"a":{"docs":{"4529460":{"tf":1}},"df":1},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412119":{"tf":1}},"df":1}}}},"t":{"docs":{"6412334":{"tf":1},"6413523":{"tf":1},"6413744":{"tf":2}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413744":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"4047072":{"tf":1},"6413440":{"tf":1.4142135623730951}},"df":2,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413440":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6409944":{"tf":1}},"df":1}}}}}},"h":{"docs":{"6414240":{"tf":1}},"df":1},"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"c":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412119":{"tf":1.4142135623730951},"6413440":{"tf":1},"6414558":{"tf":1}},"df":3,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.4142135623730951},"6403354":{"tf":3.4641016151377544},"6412566":{"tf":1.4142135623730951}},"df":3}}}}}}}},"g":{"docs":{"6414123":{"tf":1}},"df":1},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"z":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"3827055":{"tf":1},"4272538":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412632":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1}},"df":7,"=":{"docs":{},"df":0,"\"":{"1":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1},"2":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1},"3":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1},"4":{"docs":{"6410184":{"tf":1}},"df":1},"5":{"docs":{"6410184":{"tf":1}},"df":1},"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"3":{"docs":{"6412334":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}},"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"3":{"docs":{"6412334":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"g":{"1":{"docs":{"6412119":{"tf":1}},"df":1},"docs":{},"df":0}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"1":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"2":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"3":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"docs":{},"df":0}}},"b":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}},"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"2":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"1":{"docs":{"6412632":{"tf":1}},"df":1},"docs":{},"df":0}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"1":{"docs":{"6412632":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"b":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"1":{"docs":{"6413240":{"tf":1}},"df":1},"2":{"docs":{"6413240":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"%":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"}":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"1":{"docs":{"6413720":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"%":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"#":{"docs":{},"df":0,"{":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"“":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414253":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{"4508230":{"tf":1},"6294393":{"tf":1},"6296451":{"tf":1},"6412607":{"tf":1},"6413265":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6414376":{"tf":1},"6414473":{"tf":1.4142135623730951}},"df":9,"l":{"docs":{"3827055":{"tf":1}},"df":1},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"814910":{"tf":1}},"df":1}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"6412720":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{"6413549":{"tf":1}},"df":1}}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{"6413549":{"tf":1}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"'":{"docs":{"5306132":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6413018":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1},"6414827":{"tf":1}},"df":8},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409972":{"tf":1},"6412993":{"tf":1},"6414613":{"tf":1}},"df":3}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1},"6411194":{"tf":2},"6412993":{"tf":1.7320508075688772}},"df":3}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1}},"df":1}}}}},"n":{"docs":{"6413744":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6411636":{"tf":1},"6414614":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6414152":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"l":{"docs":{"6414558":{"tf":1}},"df":1},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}},"d":{"docs":{"3827055":{"tf":1},"4185821":{"tf":1},"4460205":{"tf":1.4142135623730951},"6412589":{"tf":1},"6413440":{"tf":1},"6414614":{"tf":1}},"df":6}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1},"6413018":{"tf":1},"6413265":{"tf":1}},"df":3}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413036":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":1.4142135623730951},"6414123":{"tf":1.7320508075688772}},"df":5,":":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"2":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,",":{"1":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"'":{"docs":{},"df":0,",":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413327":{"tf":1},"6414614":{"tf":1}},"df":5}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414473":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6364675":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6414152":{"tf":1}},"df":4,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6296451":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6413356":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"x":{"docs":{"6364675":{"tf":1},"6412151":{"tf":1.4142135623730951},"6412334":{"tf":1},"6413416":{"tf":1}},"df":4,"a":{"docs":{"6414530":{"tf":1}},"df":1},"b":{"docs":{"6414530":{"tf":1}},"df":1},".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5351143":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"6412720":{"tf":1},"6413183":{"tf":1},"6414123":{"tf":1}},"df":4}}},"v":{"docs":{"4047072":{"tf":1}},"df":1},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"6364675":{"tf":1}},"df":1}}},"n":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"t":{"docs":{"6413018":{"tf":1.7320508075688772}},"df":1}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1},"6412566":{"tf":1}},"df":2}}}},"g":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":2.449489742783178}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":2.23606797749979}},"df":1,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"w":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1},"h":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{"6413549":{"tf":1},"6414613":{"tf":1}},"df":2,"r":{"docs":{},"df":0,"m":{"docs":{"5306132":{"tf":1},"6397574":{"tf":1.4142135623730951},"6413889":{"tf":1.7320508075688772}},"df":3}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"_":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"6414438":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6404725":{"tf":1.7320508075688772},"6411169":{"tf":1},"6412334":{"tf":1}},"df":3}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411574":{"tf":1},"6412334":{"tf":1.4142135623730951}},"df":2,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412119":{"tf":1}},"df":1}}}},"m":{"docs":{"6396782":{"tf":1},"6412334":{"tf":1},"6413440":{"tf":1},"6413549":{"tf":1}},"df":4,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":3.4641016151377544},"6411778":{"tf":1},"6414614":{"tf":1}},"df":3,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1},"6396782":{"tf":1},"6409944":{"tf":1},"6410224":{"tf":1}},"df":4}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412334":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"g":{"docs":{"318630":{"tf":1},"814910":{"tf":1},"4529460":{"tf":3.3166247903554},"6412119":{"tf":2.6457513110645907},"6413541":{"tf":1},"6413744":{"tf":1.7320508075688772},"6414060":{"tf":1.4142135623730951},"6414530":{"tf":2.449489742783178}},"df":8,"e":{"docs":{},"df":0,"'":{"docs":{"4529460":{"tf":1}},"df":1,":":{"docs":{},"df":0,"'":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414530":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{},"df":0,")":{"docs":{},"df":0,"'":{"docs":{},"df":0,"}":{"docs":{},"df":0,",":{"5":{"0":{"0":{"0":{"docs":{"814910":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414530":{"tf":1}},"df":1}}},"´":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6414060":{"tf":1}},"df":1}}}}}}},"/":{"docs":{},"df":0,"p":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}}},"g":{"docs":{"318630":{"tf":1.4142135623730951},"6412119":{"tf":1.4142135623730951},"6414060":{"tf":1}},"df":3},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411574":{"tf":1}},"df":1}}}}}}}},"e":{"5":{"docs":{"6413908":{"tf":1}},"df":1},"6":{"docs":{"6413908":{"tf":1}},"df":1},"7":{"docs":{"318630":{"tf":1},"6413908":{"tf":1}},"df":2},"8":{"docs":{"6296451":{"tf":1},"6414558":{"tf":1.4142135623730951}},"df":2,"+":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6414558":{"tf":1}},"df":1}}}}}}},"9":{"docs":{"6414578":{"tf":1}},"df":1},"docs":{"4272538":{"tf":2.23606797749979},"6174688":{"tf":1}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1},"6414782":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"u":{"docs":{"6174688":{"tf":1},"6411636":{"tf":1},"6412428":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414558":{"tf":1}},"df":5,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413881":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413512":{"tf":1}},"df":1}}}}},".":{"docs":{"5306132":{"tf":1}},"df":1},"'":{"docs":{},"df":0,"v":{"docs":{"5306132":{"tf":1},"6364675":{"tf":1},"6412428":{"tf":1},"6412589":{"tf":1},"6412997":{"tf":1},"6413440":{"tf":1},"6414152":{"tf":1},"6414613":{"tf":1}},"df":8},"d":{"docs":{"4272538":{"tf":1},"6413244":{"tf":1}},"df":2},"m":{"docs":{"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412566":{"tf":2},"6412632":{"tf":1.4142135623730951},"6412997":{"tf":1},"6413183":{"tf":1},"6413356":{"tf":1},"6413416":{"tf":1},"6413444":{"tf":1},"6413744":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414578":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":14},"l":{"docs":{},"df":0,"l":{"docs":{"6412119":{"tf":1.7320508075688772},"6412632":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"(":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"!":{"docs":{},"df":0,"b":{"docs":{"6401696":{"tf":1}},"df":1},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413523":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412863":{"tf":1.4142135623730951}},"df":1}}}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1}}}},"=":{"0":{"docs":{"6414060":{"tf":1}},"df":1},"1":{"docs":{"6410184":{"tf":1},"6414530":{"tf":1}},"df":2,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"=":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0},":":{"docs":{},"df":0,"%":{"docs":{},"df":0,"m":{"docs":{"6414438":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6414060":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"5":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}},"a":{"docs":{},"df":0,"d":{"docs":{"4460205":{"tf":1},"6412566":{"tf":1}},"df":2}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6296451":{"tf":1},"6364675":{"tf":1},"6411778":{"tf":1},"6412993":{"tf":2.449489742783178},"6413440":{"tf":1},"6413720":{"tf":1},"6413889":{"tf":1.7320508075688772},"6413944":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1}},"df":13,"=":{"docs":{},"df":0,"\"":{"docs":{"6414614":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6414614":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413944":{"tf":1}},"df":2}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6364675":{"tf":1}},"df":1,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{"6410184":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"1":{"docs":{"6413240":{"tf":1}},"df":1},"2":{"docs":{"6413240":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}}}}}},"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"}":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"0":{"docs":{"6414107":{"tf":1}},"df":1},"1":{"docs":{"6414107":{"tf":1}},"df":1},"2":{"docs":{"6414107":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":2}},"df":1}}}}}}}}}}}}}}}},"v":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1},"6413889":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,",":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"w":{"docs":{"3047391":{"tf":1},"3802824":{"tf":1.4142135623730951},"4272538":{"tf":1.4142135623730951},"5351143":{"tf":1},"6364675":{"tf":1.7320508075688772},"6409972":{"tf":1},"6411778":{"tf":1},"6411964":{"tf":1},"6412151":{"tf":1.7320508075688772},"6412589":{"tf":1},"6412993":{"tf":1},"6413265":{"tf":1},"6413356":{"tf":1},"6413541":{"tf":1},"6413732":{"tf":1},"6413908":{"tf":1},"6414093":{"tf":1.7320508075688772},"6414107":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414240":{"tf":1},"6414782":{"tf":1}},"df":21,"b":{"docs":{},"df":0,"i":{"docs":{"6413951":{"tf":1}},"df":1},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6411169":{"tf":1.7320508075688772}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"d":{"docs":{"318630":{"tf":1},"3047391":{"tf":1},"4185821":{"tf":1},"5306132":{"tf":2},"6294393":{"tf":1},"6395651":{"tf":1},"6397574":{"tf":1.4142135623730951},"6403354":{"tf":1},"6405964":{"tf":1.4142135623730951},"6411637":{"tf":1.4142135623730951},"6412428":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413889":{"tf":1},"6413944":{"tf":1},"6414107":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414376":{"tf":1},"6414613":{"tf":1},"6414782":{"tf":1}},"df":23,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414376":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}},"t":{"4":{"docs":{},"df":0,".":{"0":{"docs":{"6413444":{"tf":1}},"df":1},"docs":{},"df":0}},"docs":{"6412632":{"tf":1}},"df":1},"x":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6411637":{"tf":1.4142135623730951},"6413018":{"tf":1},"6413523":{"tf":1}},"df":4}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6411194":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413720":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412334":{"tf":1.4142135623730951},"6412997":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1.7320508075688772}},"df":1}}},"d":{"docs":{},"df":0,"e":{"docs":{"6401946":{"tf":1}},"df":1,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1},"6411574":{"tf":1.4142135623730951}},"df":2}},"'":{"docs":{"6401946":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"w":{"docs":{"3047391":{"tf":1},"6294393":{"tf":1.7320508075688772},"6409944":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413183":{"tf":1},"6413541":{"tf":1},"6413778":{"tf":1},"6414613":{"tf":1}},"df":9,"j":{"docs":{"6409944":{"tf":1}},"df":1},".":{"docs":{},"df":0,"j":{"docs":{"6409944":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{"6414093":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":3},"i":{"docs":{},"df":0,"c":{"docs":{"6413440":{"tf":1},"6414123":{"tf":1}},"df":2},"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"[":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"6401946":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1},"6412632":{"tf":1}},"df":4}}}},"o":{"docs":{},"df":0,"b":{"docs":{"6413523":{"tf":1}},"df":1}},"n":{"docs":{"6412566":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":2},"4529460":{"tf":2},"6412259":{"tf":1},"6413951":{"tf":1}},"df":4}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"6411169":{"tf":1.4142135623730951},"6411636":{"tf":1},"6411637":{"tf":2.6457513110645907},"6412632":{"tf":1},"6413240":{"tf":1},"6413720":{"tf":1},"6413881":{"tf":1},"6414558":{"tf":1}},"df":10,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"6412566":{"tf":1},"6413778":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1,":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1,":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"4047072":{"tf":1},"6174688":{"tf":1},"6403354":{"tf":1.4142135623730951},"6404725":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414107":{"tf":1},"6414530":{"tf":1}},"df":8,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412993":{"tf":1.4142135623730951},"6414614":{"tf":2},"6414827":{"tf":1}},"df":3}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":2},"6413523":{"tf":1},"6413889":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414614":{"tf":1}},"df":5,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1},"6412993":{"tf":1},"6414093":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412993":{"tf":1},"6414093":{"tf":1}},"df":3}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1},"6413889":{"tf":1},"6414614":{"tf":1}},"df":3,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":3}}}}}},"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"4272538":{"tf":1.7320508075688772}},"df":1}}}}}}},"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413744":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"6409944":{"tf":1},"6411574":{"tf":1},"6412913":{"tf":1},"6413951":{"tf":1}},"df":4,"t":{"docs":{"6412119":{"tf":1},"6412566":{"tf":1.7320508075688772},"6414827":{"tf":1}},"df":3,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1},"6411964":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":3}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,":":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412993":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":2}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"b":{"docs":{"6414530":{"tf":1}},"df":1}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"[":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"0":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6412993":{"tf":1}},"df":2,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1.7320508075688772}},"df":1,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6410224":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}},",":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1}},"df":1}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6404725":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6412259":{"tf":1},"6412334":{"tf":1},"6413183":{"tf":1},"6413440":{"tf":1},"6413512":{"tf":1}},"df":9},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3827055":{"tf":1},"6174688":{"tf":1},"6412259":{"tf":1},"6412753":{"tf":1},"6413265":{"tf":1},"6413440":{"tf":1},"6414240":{"tf":1}},"df":7}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413512":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413356":{"tf":1}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"#":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1.7320508075688772}},"df":1}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6412589":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412589":{"tf":1}},"df":1}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"k":{"docs":{"6403728":{"tf":1},"6413889":{"tf":1},"6414530":{"tf":1}},"df":3},"g":{"docs":{"6401946":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6413512":{"tf":1},"6414438":{"tf":1}},"df":5,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1},"6414123":{"tf":1}},"df":2}}},"e":{"docs":{},"df":0,"r":{"docs":{"6414755":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"'":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1},"b":{"docs":{},"df":0,"i":{"docs":{"6403728":{"tf":1}},"df":1}}}},"m":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{"6413240":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1.7320508075688772},"6411637":{"tf":1},"6413327":{"tf":1}},"df":3}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"3802824":{"tf":1},"6174688":{"tf":1},"6412993":{"tf":1},"6413444":{"tf":1},"6413889":{"tf":1}},"df":5,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}},"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"t":{"docs":{"6413444":{"tf":1}},"df":1}},"w":{"docs":{"6413523":{"tf":1},"6414107":{"tf":1},"6414558":{"tf":1}},"df":3,"n":{"docs":{"3047391":{"tf":1},"6401946":{"tf":1}},"df":2},"(":{"0":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"5306132":{"tf":1},"6401946":{"tf":1},"6412334":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6414578":{"tf":1}},"df":6,"s":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1},"6413523":{"tf":1},"6414613":{"tf":1}},"df":3}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413240":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}},"t":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6397574":{"tf":1},"6413541":{"tf":1}},"df":2}}}},"'":{"docs":{"6412589":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}},"l":{"docs":{"6294393":{"tf":1}},"df":1,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6414755":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"5306132":{"tf":1}},"df":1}}},"p":{"docs":{"6413889":{"tf":1},"6414438":{"tf":1}},"df":2,"i":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414376":{"tf":1}},"df":1}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}}},"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":2.8284271247461903}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"{":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6412151":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,":":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1},"6405964":{"tf":1.4142135623730951},"6411637":{"tf":1},"6414152":{"tf":1}},"df":4}},"b":{"docs":{"4529460":{"tf":1}},"df":1,"l":{"docs":{"5306132":{"tf":1},"6403728":{"tf":1.7320508075688772},"6410224":{"tf":1},"6412334":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":5},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1}},"df":1}}}}},"g":{"docs":{"6414105":{"tf":1},"6414240":{"tf":1}},"df":2,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"k":{"docs":{"6414376":{"tf":1}},"df":1},"l":{"docs":{"4529460":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"k":{"docs":{"6404725":{"tf":1.4142135623730951},"6411778":{"tf":2.8284271247461903}},"df":2}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414782":{"tf":1}},"df":1}}}}}}}}},"o":{"docs":{"4185821":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1},"6411637":{"tf":1},"6412428":{"tf":1},"6412863":{"tf":1},"6413183":{"tf":1.7320508075688772},"6413240":{"tf":1}},"df":8}},"r":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1.4142135623730951},"4529460":{"tf":1},"6364675":{"tf":1.4142135623730951},"6401696":{"tf":1},"6401946":{"tf":1.7320508075688772},"6409972":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412428":{"tf":1.4142135623730951},"6412566":{"tf":1.4142135623730951},"6412589":{"tf":1.7320508075688772},"6412607":{"tf":1},"6412632":{"tf":2},"6412753":{"tf":1},"6412913":{"tf":1},"6413183":{"tf":1},"6413356":{"tf":1},"6413444":{"tf":1.4142135623730951},"6413744":{"tf":1},"6413778":{"tf":1},"6414152":{"tf":2},"6414240":{"tf":1},"6414438":{"tf":1}},"df":22,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1},"6409944":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6412863":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":6}}}},"m":{"docs":{"6412993":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{"6413549":{"tf":2}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1.7320508075688772}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"6401946":{"tf":1},"6412151":{"tf":2},"6412993":{"tf":1.4142135623730951},"6413720":{"tf":1.7320508075688772},"6413908":{"tf":1},"6413951":{"tf":1.4142135623730951},"6414105":{"tf":2},"6414152":{"tf":1},"6414438":{"tf":1}},"df":9}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,")":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"814910":{"tf":1},"5351143":{"tf":1.4142135623730951},"6401946":{"tf":1},"6409944":{"tf":1},"6411964":{"tf":1},"6412632":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414613":{"tf":1}},"df":8,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"1":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1},"docs":{"6409944":{"tf":1},"6413523":{"tf":2}},"df":2}}},"\"":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"'":{"docs":{"6414438":{"tf":1}},"df":1},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411778":{"tf":1}},"df":1}}}}},")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6414530":{"tf":1.7320508075688772}},"df":2,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{"6414438":{"tf":1.7320508075688772}},"df":1,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{"6413744":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"1":{"docs":{},"df":0,"@":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,",":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"2":{"docs":{},"df":0,"@":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}},"docs":{"3827055":{"tf":2.449489742783178},"5306132":{"tf":1},"6364675":{"tf":2.23606797749979},"6412566":{"tf":1.4142135623730951},"6413444":{"tf":1},"6413778":{"tf":1}},"df":6,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6414240":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413732":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}},"i":{"docs":{"6413732":{"tf":1.7320508075688772},"6414240":{"tf":1.7320508075688772}},"df":2}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}},"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":2.6457513110645907},"5351143":{"tf":1.4142135623730951},"6403728":{"tf":1},"6412119":{"tf":1.4142135623730951},"6413018":{"tf":1},"6413036":{"tf":1},"6413720":{"tf":1},"6413881":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":10,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4185821":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"6413744":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"6174688":{"tf":1.4142135623730951}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"2":{"docs":{},"df":0,"d":{"docs":{"6413744":{"tf":1}},"df":1}},"docs":{},"df":0}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6413541":{"tf":1},"6413778":{"tf":1},"6414530":{"tf":1}},"df":4}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"4529460":{"tf":1},"6294393":{"tf":1.4142135623730951}},"df":3}}},"m":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1},"6412993":{"tf":1.4142135623730951}},"df":2,"=":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"{":{"docs":{},"df":0,"{":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"+":{"docs":{},"df":0,"=":{"1":{"docs":{"6412993":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"[":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"2":{"docs":{"6413720":{"tf":1}},"df":1},"3":{"docs":{"6413720":{"tf":1}},"df":1},"docs":{},"df":0}},"d":{"docs":{"6412334":{"tf":2}},"df":1,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}},"v":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":2}},"df":1,"u":{"docs":{"318630":{"tf":1},"3047391":{"tf":1.7320508075688772},"4529460":{"tf":1.4142135623730951},"5306132":{"tf":1},"6404725":{"tf":1.4142135623730951},"6410224":{"tf":1},"6411636":{"tf":2},"6411778":{"tf":1.4142135623730951},"6412632":{"tf":1.4142135623730951},"6412993":{"tf":2.23606797749979},"6413018":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":2},"6413444":{"tf":1},"6414123":{"tf":2},"6414253":{"tf":1},"6414438":{"tf":2.23606797749979},"6414530":{"tf":1.7320508075688772},"6414614":{"tf":1}},"df":19,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"1":{"0":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}},"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}},"2":{"3":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"1":{"2":{"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"4":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}},"7":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0},"4":{"5":{"6":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"4":{"5":{"6":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1}},"df":1}}}}}},"g":{"docs":{},"df":0,"o":{"docs":{"6414614":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"2":{"docs":{},"df":0,"+":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{"6410184":{"tf":1}},"df":1}}}},"docs":{"6410184":{"tf":1}},"df":1}}}},"b":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},"c":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},"f":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}},"v":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6410184":{"tf":1}},"df":1}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6410184":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"s":{"docs":{"6413889":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"6413889":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1}},"df":1}}}}},"“":{"docs":{},"df":0,"v":{"docs":{"6414253":{"tf":2.449489742783178}},"df":1}},"'":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"+":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"+":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"[":{"0":{"docs":{"6414530":{"tf":1}},"df":1},"1":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0,"j":{"docs":{"6410184":{"tf":1}},"df":1}},"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6410184":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6410224":{"tf":1}},"df":1}}}}},"[":{"1":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"1":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"2":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"3":{"docs":{"6413018":{"tf":1}},"df":1},"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{"6413018":{"tf":1}},"df":1}}}},"2":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"3":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"4":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"o":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"5":{"docs":{"6413018":{"tf":1}},"df":1},"6":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"r":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"7":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"n":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"8":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"w":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"9":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"o":{"docs":{"6413018":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}},"i":{"docs":{},"df":0,"d":{"docs":{"3047391":{"tf":1},"6411169":{"tf":1.7320508075688772},"6412913":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413444":{"tf":1}},"df":5,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"318630":{"tf":1.4142135623730951},"4272538":{"tf":3},"4529460":{"tf":2.8284271247461903},"6296451":{"tf":1},"6364675":{"tf":2.23606797749979},"6404725":{"tf":1.7320508075688772},"6410184":{"tf":2},"6410224":{"tf":1.7320508075688772},"6411169":{"tf":2.23606797749979},"6412151":{"tf":1},"6412334":{"tf":3.3166247903554},"6412589":{"tf":1.7320508075688772},"6412913":{"tf":1},"6412993":{"tf":2.23606797749979},"6413244":{"tf":1},"6413356":{"tf":1.4142135623730951},"6413440":{"tf":1.7320508075688772},"6413541":{"tf":1.7320508075688772},"6413732":{"tf":1},"6414060":{"tf":1.7320508075688772},"6414093":{"tf":2.23606797749979},"6414105":{"tf":1},"6414152":{"tf":2.449489742783178},"6414240":{"tf":1.7320508075688772},"6414530":{"tf":1},"6414614":{"tf":1}},"df":26,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"4529460":{"tf":1},"6401946":{"tf":1},"6411636":{"tf":1},"6412863":{"tf":1},"6413440":{"tf":1},"6414240":{"tf":1}},"df":7}}},"o":{"docs":{},"df":0,"u":{"docs":{"6412913":{"tf":1}},"df":1}}},"%":{"2":{"0":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"z":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,",":{"docs":{},"df":0,"b":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,",":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}},"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":2}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":2}},"df":1}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"1":{"docs":{},"df":0,".":{"0":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2},"docs":{},"df":0}},"docs":{},"df":0}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{"3047391":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1},"6403728":{"tf":1},"6412753":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6414613":{"tf":1}},"df":8,"f":{"docs":{},"df":0,"i":{"docs":{"6397574":{"tf":1},"6412632":{"tf":1}},"df":2}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"4185821":{"tf":1},"4460205":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413444":{"tf":1}},"df":6},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"6395651":{"tf":1},"6414473":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"3827055":{"tf":1},"6409972":{"tf":1},"6413416":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6409972":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414107":{"tf":1}},"df":1,"(":{"0":{"docs":{"6401696":{"tf":1}},"df":1},"docs":{},"df":0}}}},"s":{"docs":{"3827055":{"tf":1}},"df":1}},"g":{"docs":{"6411169":{"tf":1}},"df":1,"t":{"docs":{"4272538":{"tf":2},"4529460":{"tf":1.7320508075688772},"6294393":{"tf":1},"6296451":{"tf":1.4142135623730951},"6364675":{"tf":1.4142135623730951},"6410184":{"tf":2.8284271247461903},"6412151":{"tf":2},"6412334":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":2},"6413240":{"tf":2},"6413523":{"tf":1},"6413889":{"tf":1.7320508075688772},"6413951":{"tf":3.4641016151377544},"6414614":{"tf":1},"6414827":{"tf":1}},"df":16,";":{"0":{"docs":{"6413523":{"tf":1}},"df":1},"3":{"8":{"1":{"0":{"0":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":2.6457513110645907}},"df":1}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{"6413889":{"tf":1.4142135623730951}},"df":1}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":3.4641016151377544}},"df":1}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"6413244":{"tf":1}},"df":1}}},"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"+":{"3":{"9":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6412993":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1.4142135623730951},"4529460":{"tf":1},"6294393":{"tf":1},"6364675":{"tf":1.4142135623730951},"6398787":{"tf":1},"6409944":{"tf":1},"6410224":{"tf":1},"6411636":{"tf":1},"6412259":{"tf":1},"6412589":{"tf":1},"6412632":{"tf":1},"6413183":{"tf":1},"6413523":{"tf":1},"6414152":{"tf":1},"6414614":{"tf":1}},"df":15,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{"4047072":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414240":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6413541":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1.4142135623730951},"6294393":{"tf":1},"6411778":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412993":{"tf":1.4142135623730951},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":7}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1.7320508075688772}},"df":1}}}}},"o":{"docs":{"4272538":{"tf":1},"4529460":{"tf":1},"6397574":{"tf":1},"6412119":{"tf":1},"6412428":{"tf":1},"6413881":{"tf":1.4142135623730951},"6414438":{"tf":1},"6414614":{"tf":1},"6414782":{"tf":1}},"df":9,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"318630":{"tf":1},"6411964":{"tf":1.7320508075688772},"6413244":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413908":{"tf":1},"6414613":{"tf":1}},"df":6,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"4":{"6":{"docs":{},"df":0,".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{"6414093":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}},"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"3047391":{"tf":1},"3827055":{"tf":1}},"df":2,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"6413416":{"tf":1}},"df":1}}}}}}},"e":{"docs":{"6412119":{"tf":1},"6413720":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":4}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1}},"df":1,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1},"6412119":{"tf":1}},"df":2},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"6406161":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1.4142135623730951},"4508230":{"tf":1},"6294393":{"tf":1},"6412753":{"tf":1},"6413512":{"tf":1},"6413944":{"tf":1}},"df":7,"n":{"docs":{"4529460":{"tf":1},"6174688":{"tf":1},"6410184":{"tf":1.4142135623730951},"6411636":{"tf":1},"6411778":{"tf":1.4142135623730951}},"df":5},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413549":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6411778":{"tf":1},"6412566":{"tf":1},"6412997":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1}},"df":6,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{"6414123":{"tf":1}},"df":1}},"y":{"docs":{"6412913":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6413549":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"+":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}},"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"w":{"docs":{"6413549":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"6414438":{"tf":1.7320508075688772}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}}}},"b":{"docs":{"6412993":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"d":{"docs":{"6409972":{"tf":2.23606797749979}},"df":1,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"4":{"6":{"docs":{},"df":0,".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{},"df":0,",":{"1":{"1":{"docs":{},"df":0,".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6413244":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1},"6414240":{"tf":1.4142135623730951}},"df":2,"s":{"docs":{},"df":0,"[":{"docs":{"6414240":{"tf":1}},"df":1}}}}}}},"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1},"6414093":{"tf":1.4142135623730951}},"df":2}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6411778":{"tf":1},"6412632":{"tf":1}},"df":2}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6174688":{"tf":1}},"df":1}}}},"p":{"docs":{"6412566":{"tf":1}},"df":1,"r":{"docs":{"6410184":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"2":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}},"s":{"docs":{"6412993":{"tf":1},"6414107":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"e":{"docs":{"3827055":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1},"6403728":{"tf":1},"6410184":{"tf":1},"6411637":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412993":{"tf":1},"6413523":{"tf":1.7320508075688772},"6414376":{"tf":1},"6414473":{"tf":1},"6414530":{"tf":1.4142135623730951},"6414558":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":17,"n":{"docs":{"6413356":{"tf":1},"6414782":{"tf":1}},"df":2},"m":{"docs":{"6364675":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1},"6414558":{"tf":1},"6414578":{"tf":1}},"df":8}},"n":{"docs":{},"df":0,"d":{"docs":{"3827055":{"tf":1},"4047072":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6411637":{"tf":1},"6412632":{"tf":1},"6413720":{"tf":1.4142135623730951},"6414376":{"tf":1.4142135623730951},"6414827":{"tf":1}},"df":9,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"6414105":{"tf":1}},"df":1}}}}}},"t":{"docs":{"6174688":{"tf":1.7320508075688772},"6411637":{"tf":1},"6412428":{"tf":1},"6413951":{"tf":1.4142135623730951}},"df":4},"s":{"docs":{"6401946":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1.4142135623730951},"4529460":{"tf":1},"6409972":{"tf":1.7320508075688772},"6412913":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":2.449489742783178},"6413944":{"tf":1.4142135623730951},"6414253":{"tf":1},"6414613":{"tf":1},"6414614":{"tf":1.7320508075688772}},"df":10,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414376":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414253":{"tf":1}},"df":1}}}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6410224":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6413356":{"tf":1}},"df":1}}}}}},"t":{"docs":{"318630":{"tf":1},"5306132":{"tf":1},"6401946":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412334":{"tf":1},"6413018":{"tf":1},"6413183":{"tf":1},"6413356":{"tf":1},"6413523":{"tf":1.7320508075688772},"6413881":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":12,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4047072":{"tf":1}},"df":1}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1.4142135623730951},"6414558":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1.4142135623730951}},"df":1,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"{":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1},"6413444":{"tf":1},"6414438":{"tf":1}},"df":3}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6413240":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"318630":{"tf":1},"4508230":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6397574":{"tf":1},"6409944":{"tf":1},"6411574":{"tf":1},"6412753":{"tf":1},"6413444":{"tf":1},"6413720":{"tf":1},"6413744":{"tf":1},"6413951":{"tf":1.4142135623730951},"6414107":{"tf":1},"6414123":{"tf":1}},"df":14,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"6403354":{"tf":1},"6411964":{"tf":1.7320508075688772},"6412428":{"tf":1},"6414107":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"814910":{"tf":1},"4047072":{"tf":1},"6413018":{"tf":1},"6413512":{"tf":1},"6413523":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":7,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6411194":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"3827055":{"tf":1},"6412632":{"tf":1},"6413244":{"tf":1}},"df":3,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6397574":{"tf":1.4142135623730951},"6413720":{"tf":1},"6414105":{"tf":1.7320508075688772}},"df":3}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"6413778":{"tf":1},"6414614":{"tf":1}},"df":2},"r":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1.4142135623730951},"6411194":{"tf":1},"6413744":{"tf":1},"6414152":{"tf":1}},"df":4}}}}},"b":{"docs":{"6411194":{"tf":1}},"df":1,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1},"6364675":{"tf":1},"6412913":{"tf":1.7320508075688772},"6413889":{"tf":1}},"df":4}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6410224":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6410224":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6411778":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"6412334":{"tf":1},"6412997":{"tf":1},"6413951":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":4}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"4047072":{"tf":1},"6411169":{"tf":1},"6414152":{"tf":1},"6414530":{"tf":1}},"df":4,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414105":{"tf":1},"6414558":{"tf":1}},"df":2}}}}},":":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{"6411574":{"tf":1},"6411778":{"tf":1},"6412566":{"tf":1},"6412863":{"tf":1}},"df":4}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6396782":{"tf":1},"6411194":{"tf":1},"6411778":{"tf":1},"6412720":{"tf":1},"6413523":{"tf":1.4142135623730951}},"df":5,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6174688":{"tf":1}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413416":{"tf":1}},"df":1}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{"6403728":{"tf":1}},"df":1,"i":{"docs":{"6414123":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":2}},"a":{"docs":{},"df":0,"l":{"docs":{"6406161":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6411964":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6411778":{"tf":1},"6412119":{"tf":1},"6412863":{"tf":1.4142135623730951},"6413444":{"tf":1},"6413732":{"tf":1}},"df":6,"i":{"docs":{"6412566":{"tf":1},"6412632":{"tf":1},"6414614":{"tf":1}},"df":3,"f":{"docs":{},"df":0,"i":{"docs":{"6413440":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1},"6413744":{"tf":1},"6414782":{"tf":1}},"df":3,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{"6414152":{"tf":1}},"df":1}}},"z":{"docs":{},"df":0,"e":{"docs":{"4529460":{"tf":2}},"df":1,"=":{"docs":{},"df":0,"\"":{"1":{"8":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0},"7":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1},"docs":{},"df":0}},":":{"2":{"2":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}},"d":{"docs":{},"df":0,"e":{"docs":{"318630":{"tf":1},"5306132":{"tf":1},"6397574":{"tf":1},"6409944":{"tf":1},"6411574":{"tf":1},"6412428":{"tf":1.4142135623730951},"6412753":{"tf":1},"6413444":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":9}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"6413889":{"tf":1}},"df":2}},"t":{"docs":{},"df":0,"e":{"docs":{"6411574":{"tf":1},"6411964":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412913":{"tf":1},"6413416":{"tf":1},"6413549":{"tf":1},"6413889":{"tf":1.4142135623730951},"6414152":{"tf":1.4142135623730951}},"df":8,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412913":{"tf":1.7320508075688772}},"df":1}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6412863":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414614":{"tf":1}},"df":1},"t":{"docs":{},"df":0,"e":{"docs":{"4508230":{"tf":1},"5306132":{"tf":1},"6411964":{"tf":1}},"df":3,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413444":{"tf":1.4142135623730951},"6413523":{"tf":1}},"df":2}}}}},"u":{"docs":{"6413720":{"tf":1.4142135623730951},"6414105":{"tf":1},"6414107":{"tf":1.7320508075688772}},"df":3}},"r":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412753":{"tf":1},"6414438":{"tf":1.4142135623730951}},"df":3}},"c":{"docs":{},"df":0,"k":{"docs":{"6414438":{"tf":1}},"df":1,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413889":{"tf":1}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6413523":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6413744":{"tf":1}},"df":1}}}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"6396782":{"tf":1},"6412119":{"tf":1},"6412993":{"tf":1},"6413356":{"tf":1}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1.7320508075688772},"6412334":{"tf":1.4142135623730951},"6414093":{"tf":1},"6414530":{"tf":1}},"df":4,":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"1":{"1":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}},"docs":{},"df":0},"5":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,";":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}},"'":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,":":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{"6414093":{"tf":1}},"df":1},"r":{"docs":{"6414093":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1.4142135623730951}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411964":{"tf":1.4142135623730951}},"df":1,">":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6403728":{"tf":1}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}},"f":{"docs":{},"df":0,"t":{"docs":{"6411282":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"1":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"2":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}},"docs":{},"df":0}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6398787":{"tf":1}},"df":1,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6398787":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"3047391":{"tf":1},"6364675":{"tf":1.7320508075688772},"6403354":{"tf":1.4142135623730951},"6405964":{"tf":1},"6412993":{"tf":2.6457513110645907},"6413018":{"tf":1},"6413244":{"tf":1},"6413444":{"tf":1.4142135623730951}},"df":8,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":2}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6412913":{"tf":1},"6413512":{"tf":1},"6414558":{"tf":1}},"df":3}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6411574":{"tf":1},"6411778":{"tf":1},"6412334":{"tf":1}},"df":3,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6411574":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6414558":{"tf":1}},"df":2},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{"5351143":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6414558":{"tf":1}},"df":1}},"c":{"docs":{},"df":0,"k":{"docs":{"6412334":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{"3827055":{"tf":1},"6413416":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"f":{"docs":{"6412753":{"tf":1},"6413523":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6411778":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"6411637":{"tf":2.449489742783178}},"df":1}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1},"6412720":{"tf":1},"6412863":{"tf":1}},"df":5,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"1":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1.7320508075688772},"6414530":{"tf":1}},"df":2}},"v":{"docs":{"6174688":{"tf":1},"6412119":{"tf":1}},"df":2}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"4272538":{"tf":1},"6409944":{"tf":1},"6409972":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412428":{"tf":1},"6412720":{"tf":1},"6413512":{"tf":1},"6413889":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1},"6414558":{"tf":1},"6414782":{"tf":1}},"df":15}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6414613":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414240":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"3047391":{"tf":1},"6403728":{"tf":1},"6412632":{"tf":1},"6413240":{"tf":1},"6414105":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414240":{"tf":1}},"df":7}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414107":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{"6414782":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"3802824":{"tf":1},"6396782":{"tf":1},"6410184":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6414376":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"6413416":{"tf":1},"6414473":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"6397574":{"tf":1.7320508075688772}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"6413523":{"tf":1}},"df":1}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1},"6412997":{"tf":1}},"df":2}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":1},"6412119":{"tf":1},"6412993":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413732":{"tf":1},"6414438":{"tf":1},"6414613":{"tf":1}},"df":11,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414438":{"tf":1}},"df":1}}}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"2":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}},"i":{"docs":{"6413523":{"tf":1}},"df":1}}}}},"n":{"docs":{"6412119":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1},"6414530":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"p":{"docs":{"6294393":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6413183":{"tf":1}},"df":1}}}},"a":{"2":{"5":{"6":{"docs":{"6395651":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"6412566":{"tf":1.4142135623730951},"6412863":{"tf":1},"6413720":{"tf":1.4142135623730951}},"df":3}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"3802824":{"tf":1},"5306132":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412566":{"tf":1},"6412863":{"tf":1},"6413244":{"tf":1.4142135623730951},"6414105":{"tf":1},"6414123":{"tf":1},"6414558":{"tf":1}},"df":9},"p":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1},"6413744":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1},"6414613":{"tf":1}},"df":5}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414093":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1},"4460205":{"tf":1},"6413908":{"tf":1}},"df":3,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"5549729":{"tf":1},"6413944":{"tf":1}},"df":2,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{"6413549":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6413416":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1.7320508075688772},"6412632":{"tf":1.4142135623730951},"6412993":{"tf":1},"6413036":{"tf":1},"6413523":{"tf":2},"6413541":{"tf":1},"6413549":{"tf":1.4142135623730951},"6414152":{"tf":1},"6414530":{"tf":1}},"df":12,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"4529460":{"tf":1},"6403728":{"tf":1}},"df":2}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"4529460":{"tf":1},"6411282":{"tf":2}},"df":2}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"4529460":{"tf":1.7320508075688772}},"df":1},"a":{"docs":{"6364675":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{"6413549":{"tf":1}},"df":1},"m":{"docs":{"6413549":{"tf":1.4142135623730951}},"df":1,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1.7320508075688772}},"df":1}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"4185821":{"tf":1},"6412863":{"tf":1}},"df":2}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414578":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"w":{"docs":{"6413523":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1},"6414060":{"tf":1}},"df":2,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"#":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"1":{"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"x":{"docs":{},"df":0,"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"b":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,".":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,".":{"docs":{},"df":0,"/":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"p":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}}}}}}}},"m":{"docs":{"6409972":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1.4142135623730951},"6412753":{"tf":1},"6414123":{"tf":1},"6414558":{"tf":1}},"df":4}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1.4142135623730951}},"df":1}}}}}}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1},"6412334":{"tf":1}},"df":2}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6414123":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"r":{"docs":{"6414107":{"tf":1}},"df":1}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"4508230":{"tf":1},"6401946":{"tf":1},"6411964":{"tf":1.4142135623730951}},"df":3}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6411637":{"tf":1}},"df":1}}}}}}},"w":{"3":{"docs":{"6412119":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"4460205":{"tf":1},"4529460":{"tf":1},"6398787":{"tf":1},"6403354":{"tf":1},"6405964":{"tf":1},"6411778":{"tf":1},"6412863":{"tf":1},"6413036":{"tf":1},"6413416":{"tf":1},"6413440":{"tf":1.4142135623730951},"6413523":{"tf":1.4142135623730951},"6413549":{"tf":1},"6413778":{"tf":1},"6413889":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414376":{"tf":1},"6414827":{"tf":1}},"df":19,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414123":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1},"5351143":{"tf":1},"6403728":{"tf":1.7320508075688772},"6409972":{"tf":1},"6411282":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412151":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412753":{"tf":1.4142135623730951},"6412863":{"tf":1.4142135623730951},"6412993":{"tf":1},"6412997":{"tf":1},"6413183":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1},"6413881":{"tf":1},"6413908":{"tf":1},"6413944":{"tf":1},"6414105":{"tf":1},"6414123":{"tf":1.7320508075688772},"6414438":{"tf":1.4142135623730951},"6414473":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1},"6414755":{"tf":1.4142135623730951},"6414782":{"tf":1}},"df":29},"'":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6413416":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"6412607":{"tf":1},"6413416":{"tf":1},"6414614":{"tf":1},"6414827":{"tf":1}},"df":4},"e":{"docs":{},"df":0,"v":{"docs":{"6414530":{"tf":1},"6414782":{"tf":1}},"df":2}}}},"y":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6296451":{"tf":1}},"df":1}}},"i":{"docs":{"6412151":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"3802824":{"tf":1},"4529460":{"tf":1}},"df":2}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6413523":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"3802824":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"4272538":{"tf":1},"6412607":{"tf":1},"6413778":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414614":{"tf":1}},"df":6}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"3047391":{"tf":1},"4272538":{"tf":1},"5351143":{"tf":1},"6412151":{"tf":1},"6412753":{"tf":1},"6413356":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1}},"df":8,"\"":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"318630":{"tf":1},"3827055":{"tf":1},"4185821":{"tf":1},"4272538":{"tf":2},"4508230":{"tf":1},"6296451":{"tf":1},"6364675":{"tf":2},"6403728":{"tf":1},"6410184":{"tf":1.4142135623730951},"6411574":{"tf":1},"6411636":{"tf":1.4142135623730951},"6411778":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412428":{"tf":1},"6412566":{"tf":1},"6412632":{"tf":2.23606797749979},"6412913":{"tf":1.4142135623730951},"6412993":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413512":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413744":{"tf":1.4142135623730951},"6413778":{"tf":1},"6413908":{"tf":1},"6414093":{"tf":1},"6414558":{"tf":1.4142135623730951},"6414578":{"tf":1.7320508075688772},"6414613":{"tf":1.7320508075688772}},"df":28,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}},"d":{"docs":{"6412993":{"tf":1},"6413732":{"tf":1}},"df":2},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{"6413523":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{"6411574":{"tf":1},"6411964":{"tf":1}},"df":2}},"l":{"docs":{},"df":0,"d":{"docs":{"6412753":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411778":{"tf":1},"6411964":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1}},"df":4}}},"'":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6413523":{"tf":1}},"df":2}}},"u":{"docs":{},"df":0,"d":{"docs":{"6174688":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"4272538":{"tf":1},"5306132":{"tf":1.4142135623730951},"6409944":{"tf":1},"6412428":{"tf":1},"6412993":{"tf":1},"6413440":{"tf":1},"6413744":{"tf":1}},"df":8}}},"i":{"docs":{},"df":0,"n":{"docs":{"6411282":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6413881":{"tf":1}},"df":4}}}},"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"318630":{"tf":1.4142135623730951},"4529460":{"tf":2.449489742783178},"6403728":{"tf":3.1622776601683795},"6412119":{"tf":1.7320508075688772},"6412334":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":6,"=":{"docs":{},"df":0,"\"":{"1":{"1":{"0":{"docs":{"6412119":{"tf":1}},"df":1},"4":{"docs":{"6294393":{"tf":1}},"df":1},"5":{"docs":{"6294393":{"tf":2.6457513110645907}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"4":{"5":{"0":{"docs":{"6414105":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"2":{"0":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"#":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}},"e":{"docs":{"4529460":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"3802824":{"tf":1.4142135623730951},"6403728":{"tf":1},"6413416":{"tf":1},"6413732":{"tf":1.4142135623730951},"6414240":{"tf":1.4142135623730951}},"df":5,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"6413778":{"tf":1}},"df":2}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6413732":{"tf":1},"6414240":{"tf":1}},"df":2}}}}}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"b":{"docs":{"3802824":{"tf":1},"4508230":{"tf":1},"5306132":{"tf":1},"6396782":{"tf":1},"6403354":{"tf":1},"6406161":{"tf":1},"6411574":{"tf":1},"6412334":{"tf":1},"6413244":{"tf":1},"6413416":{"tf":1},"6413541":{"tf":1},"6413778":{"tf":1}},"df":12,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"4460205":{"tf":1},"6413244":{"tf":1},"6413881":{"tf":1},"6414105":{"tf":1},"6414152":{"tf":1},"6414578":{"tf":1}},"df":6,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6414376":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"'":{"docs":{"6294393":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412428":{"tf":1.4142135623730951}},"df":1}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6411282":{"tf":1},"6413944":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6411282":{"tf":1},"6414107":{"tf":1}},"df":2}}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}},"g":{"docs":{},"df":0,"l":{"docs":{"6395651":{"tf":1},"6413744":{"tf":1}},"df":2}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"3802824":{"tf":1}},"df":2}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"3802824":{"tf":1}},"df":1}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4460205":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6414438":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}},"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"6174688":{"tf":1}},"df":1}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{"3802824":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1}},"df":1}}},"w":{"docs":{},"df":0,"w":{"docs":{"6174688":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412913":{"tf":1},"6414152":{"tf":1},"6414827":{"tf":1}},"df":3}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1},"6412607":{"tf":1.4142135623730951}},"df":2}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{"6174688":{"tf":1},"6414438":{"tf":1}},"df":2}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6403354":{"tf":1.7320508075688772},"6410184":{"tf":1},"6412589":{"tf":1},"6412993":{"tf":2.23606797749979}},"df":4,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}},"(":{"0":{"docs":{"6412993":{"tf":1}},"df":1},"docs":{},"df":0},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{"4185821":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1},"6413018":{"tf":1}},"df":2},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6364675":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413744":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"6411574":{"tf":1}},"df":1}}}}},"p":{"docs":{},"df":0,"p":{"docs":{"4508230":{"tf":1},"6396782":{"tf":1},"6414558":{"tf":2}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1},"6414614":{"tf":1}},"df":2,"c":{"docs":{"3802824":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":1.4142135623730951},"6412566":{"tf":1},"6412753":{"tf":1}},"df":5,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413244":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}},"/":{"docs":{},"df":0,"x":{"docs":{"6174688":{"tf":1}},"df":1},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{"6414614":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"5306132":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1},"6411778":{"tf":1}},"df":2}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"78932":{"tf":1},"6412334":{"tf":1}},"df":2}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1},"6412334":{"tf":1},"6412753":{"tf":1}},"df":3,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413244":{"tf":1},"6413356":{"tf":1}},"df":2}},"a":{"docs":{},"df":0,"r":{"docs":{"5351143":{"tf":1},"6414558":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"d":{"docs":{"6413720":{"tf":1},"6414105":{"tf":1}},"df":2}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"6413356":{"tf":1}},"df":1,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6413356":{"tf":1}},"df":1}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}}}}}}},"i":{"docs":{"6404725":{"tf":1},"6413244":{"tf":1}},"df":2,"'":{"docs":{"6414782":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"4529460":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"4508230":{"tf":1.4142135623730951},"5306132":{"tf":1.4142135623730951},"6364675":{"tf":1.4142135623730951},"6405964":{"tf":1},"6414614":{"tf":1}},"df":5,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"6413889":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6405964":{"tf":1}},"df":1}}}}}},"v":{"docs":{"6414438":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412566":{"tf":1},"6413944":{"tf":1.4142135623730951}},"df":2}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1},"6401946":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1},"6412589":{"tf":1},"6413440":{"tf":1},"6413523":{"tf":1},"6413720":{"tf":1},"6414152":{"tf":1}},"df":9}},"p":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"k":{"docs":{},"df":0,"!":{"docs":{},"df":0,"!":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412334":{"tf":1},"6412753":{"tf":1}},"df":2}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6414578":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":2}}},"r":{"docs":{},"df":0,"e":{"docs":{"6412566":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"6411778":{"tf":1},"6413183":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1},"6412632":{"tf":1},"6413416":{"tf":1}},"df":3}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}},":":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}},"k":{"docs":{"4508230":{"tf":1},"6395651":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1.4142135623730951}},"df":4},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6411574":{"tf":1}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"6414614":{"tf":1}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1},"4529460":{"tf":1.7320508075688772},"6413720":{"tf":1},"6413778":{"tf":1}},"df":4}}}}}},"a":{"docs":{},"df":0,"z":{"docs":{"6414438":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414473":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6174688":{"tf":1},"6412913":{"tf":1}},"df":2}}}}},"d":{"docs":{"6296451":{"tf":1.4142135623730951},"6397574":{"tf":1},"6403728":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412632":{"tf":1},"6413440":{"tf":1},"6414105":{"tf":1}},"df":7,"d":{"docs":{"6364675":{"tf":2},"6401946":{"tf":1},"6409972":{"tf":1},"6411636":{"tf":1},"6411778":{"tf":2},"6412119":{"tf":1},"6412428":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413244":{"tf":1},"6413356":{"tf":1},"6413778":{"tf":1},"6414558":{"tf":1}},"df":12,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"u":{"docs":{"6412607":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"6413244":{"tf":1},"6414152":{"tf":1.7320508075688772}},"df":2}}},"a":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}}}},"(":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1},"6414530":{"tf":1}},"df":2}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413889":{"tf":1},"6414105":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1}},"df":4}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401696":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"6364675":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"$":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"]":{"docs":{},"df":0,"=":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413549":{"tf":1.4142135623730951}},"df":1}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6412913":{"tf":1},"6413512":{"tf":1},"6413732":{"tf":1},"6413778":{"tf":1},"6414105":{"tf":1}},"df":5,"(":{"docs":{},"df":0,"u":{"docs":{"6412607":{"tf":1}},"df":1},"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{"6414240":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6414105":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"o":{"docs":{"6414105":{"tf":1}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6412334":{"tf":1}},"df":1}}}},"y":{"docs":{"6412913":{"tf":1}},"df":1}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6414060":{"tf":1}},"df":1}}},"'":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6401696":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6412334":{"tf":1}},"df":1}}}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6411169":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1.4142135623730951}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412589":{"tf":1}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6294393":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6294393":{"tf":1}},"df":1}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}},"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6413732":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413720":{"tf":1}},"df":1}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412566":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6405964":{"tf":1},"6406161":{"tf":1},"6412119":{"tf":1.4142135623730951},"6413327":{"tf":1.4142135623730951},"6413512":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413549":{"tf":1},"6413778":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414530":{"tf":1}},"df":11}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"6174688":{"tf":1},"6406161":{"tf":1},"6410184":{"tf":1},"6413778":{"tf":1},"6414530":{"tf":1}},"df":5}}}},"o":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1},"5549729":{"tf":1},"6364675":{"tf":1},"6401946":{"tf":1},"6411636":{"tf":1},"6412720":{"tf":1},"6412753":{"tf":1},"6414558":{"tf":1}},"df":8,"e":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{"6413778":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412566":{"tf":1},"6414240":{"tf":1}},"df":2,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414376":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}},"y":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"m":{"docs":{"814910":{"tf":1},"6411636":{"tf":1}},"df":2}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"4047072":{"tf":2},"6174688":{"tf":1.4142135623730951},"6410184":{"tf":1},"6412753":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414530":{"tf":2}},"df":6,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6411778":{"tf":1},"6413183":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951}},"df":3}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"4047072":{"tf":1},"6412119":{"tf":1.4142135623730951}},"df":2,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1},"6413881":{"tf":1.4142135623730951},"6414578":{"tf":1}},"df":3}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"5351143":{"tf":1},"6396782":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5351143":{"tf":1}},"df":1}}}}},"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413240":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413523":{"tf":1.7320508075688772}},"df":1}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6413244":{"tf":1}},"df":1}}},"l":{"docs":{"6396782":{"tf":1},"6413183":{"tf":1},"6414105":{"tf":1.7320508075688772}},"df":3,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413183":{"tf":1.7320508075688772}},"df":1}}}}}}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"6411169":{"tf":1}},"df":1,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"6413444":{"tf":1}},"df":1}},"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":2}},"df":1,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6414123":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1}},"df":1}}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6412119":{"tf":1},"6412334":{"tf":1}},"df":2},"r":{"docs":{"6411778":{"tf":1},"6412566":{"tf":1}},"df":2}}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6395651":{"tf":1}},"df":1}}}}},",":{"docs":{},"df":0,"b":{"docs":{},"df":0,",":{"docs":{},"df":0,"c":{"docs":{"3802824":{"tf":1}},"df":1}}}},"[":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}},".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412589":{"tf":1.7320508075688772}},"df":1}}}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{"6412589":{"tf":1}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1}},"df":1}}}}},"h":{"1":{"docs":{},"df":0,">":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}},"2":{"docs":{},"df":0,">":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"2":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"2":{"docs":{"6414614":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}},"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414827":{"tf":1}},"df":1}}}}}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"6403728":{"tf":1.7320508075688772},"6412428":{"tf":1},"6412566":{"tf":1},"6413356":{"tf":1},"6413440":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1}},"df":7,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413356":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4272538":{"tf":1}},"df":1}}}},"l":{"docs":{"3047391":{"tf":1.4142135623730951},"6412151":{"tf":1.7320508075688772},"6412428":{"tf":1.7320508075688772},"6413523":{"tf":1}},"df":4,"e":{"docs":{},"df":0,"r":{"docs":{"6409944":{"tf":1},"6412334":{"tf":1},"6412863":{"tf":1}},"df":3}}}},"g":{"docs":{"6414152":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414558":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{"6395651":{"tf":1},"6414152":{"tf":2}},"df":2,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414152":{"tf":2}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412428":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"k":{"docs":{"6412863":{"tf":1}},"df":1}}},"r":{"docs":{"6401946":{"tf":1},"6414240":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":3,"e":{"docs":{},"df":0,"f":{"docs":{"6413720":{"tf":1},"6414060":{"tf":1}},"df":2,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"7":{"6":{"3":{"2":{"2":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"3":{"0":{"2":{"4":{"9":{"5":{"4":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"5":{"4":{"9":{"0":{"4":{"3":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"6":{"2":{"7":{"7":{"9":{"9":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"8":{"8":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{"6412607":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"q":{"docs":{},"df":0,"y":{"docs":{},"df":0,"x":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"f":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"7":{"docs":{"6414530":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"h":{"docs":{},"df":0,"j":{"docs":{},"df":0,"m":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"f":{"6":{"docs":{},"df":0,"c":{"9":{"2":{"docs":{"6412863":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6414578":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"j":{"4":{"docs":{},"df":0,"m":{"docs":{},"df":0,"z":{"9":{"docs":{},"df":0,"g":{"9":{"docs":{},"df":0,"g":{"docs":{"6414473":{"tf":1}},"df":1}},"docs":{},"df":0}},"docs":{},"df":0}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"6411194":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6412720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"2":{"0":{"0":{"9":{"docs":{},"df":0,"/":{"0":{"6":{"docs":{},"df":0,"/":{"1":{"7":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}},"j":{"docs":{"3827055":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"p":{"docs":{"6396782":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"#":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"2":{"1":{"docs":{"5306132":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"6":{"docs":{},"df":0,".":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"7":{"2":{"4":{"9":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412607":{"tf":1},"6413265":{"tf":1.4142135623730951}},"df":2}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"#":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414060":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"4185821":{"tf":1},"5306132":{"tf":1},"6401946":{"tf":1},"6409944":{"tf":1},"6410184":{"tf":1},"6410224":{"tf":1},"6412632":{"tf":1.4142135623730951},"6412997":{"tf":1},"6413327":{"tf":1},"6413444":{"tf":1},"6413523":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413778":{"tf":1},"6414123":{"tf":1},"6414438":{"tf":1}},"df":15,"'":{"docs":{"6412632":{"tf":1}},"df":1},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}}},"l":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1},"4529460":{"tf":1},"5351143":{"tf":1},"6403728":{"tf":1.4142135623730951},"6411574":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6412720":{"tf":1},"6412753":{"tf":1.4142135623730951},"6412993":{"tf":1},"6413018":{"tf":1},"6413240":{"tf":1},"6414240":{"tf":1},"6414253":{"tf":1},"6414438":{"tf":1},"6414578":{"tf":1},"6414613":{"tf":1}},"df":17,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6404725":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,",":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"n":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1.4142135623730951},"4529460":{"tf":2.449489742783178},"6412119":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6414093":{"tf":1}},"df":5,":":{"docs":{},"df":0,"'":{"1":{"0":{"0":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"=":{"docs":{},"df":0,"\"":{"5":{"3":{"docs":{"6294393":{"tf":1}},"df":1},"5":{"docs":{"6294393":{"tf":2.6457513110645907}},"df":1},"docs":{},"df":0},"9":{"0":{"docs":{"6412119":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6404725":{"tf":1},"6412428":{"tf":1},"6412632":{"tf":1}},"df":3}}}},"n":{"docs":{},"df":0,"c":{"docs":{"4529460":{"tf":1}},"df":1}},"y":{"docs":{"6413720":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6395651":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"5":{"docs":{"5306132":{"tf":1},"6412566":{"tf":1.7320508075688772}},"df":2},"docs":{"78932":{"tf":1},"5351143":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1.7320508075688772},"6405964":{"tf":1.7320508075688772},"6411778":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1.7320508075688772},"6413183":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414240":{"tf":1}},"df":12,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"6364675":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413744":{"tf":1}},"df":1}}}}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6294393":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"?":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413720":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"w":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"4":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}},":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"1":{"docs":{},"df":0,".":{"8":{"docs":{},"df":0,".":{"1":{"3":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}},"docs":{},"df":0}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"@":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1}},"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6411964":{"tf":1},"6412993":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"e":{"docs":{"6413265":{"tf":1},"6413549":{"tf":1}},"df":2,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6294393":{"tf":1.7320508075688772},"6412119":{"tf":1}},"df":2}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6414438":{"tf":1}},"df":1}}},"e":{"docs":{"6413523":{"tf":1},"6414438":{"tf":1}},"df":2}},"g":{"docs":{},"df":0,"h":{"docs":{"6410184":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4508230":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6413183":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{"6410184":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"f":{"5":{"docs":{"6413744":{"tf":1}},"df":1},"docs":{},"df":0}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}},"j":{"docs":{"6410184":{"tf":1}},"df":1,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"318630":{"tf":1},"814910":{"tf":1.4142135623730951},"4272538":{"tf":1},"4529460":{"tf":1},"5549729":{"tf":1},"6396782":{"tf":1.4142135623730951},"6403728":{"tf":1},"6405964":{"tf":1},"6411574":{"tf":1},"6412334":{"tf":1},"6412753":{"tf":1},"6412993":{"tf":1},"6412997":{"tf":1.4142135623730951},"6413183":{"tf":1},"6413416":{"tf":1},"6414123":{"tf":1},"6414376":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1.4142135623730951}},"df":19},"y":{"docs":{},"df":0,"'":{"docs":{"6412334":{"tf":1}},"df":1},"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"{":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411194":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{"6412428":{"tf":1.4142135623730951},"6413541":{"tf":1},"6413549":{"tf":1}},"df":3,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"318630":{"tf":1},"3802824":{"tf":1},"3827055":{"tf":1.4142135623730951},"4185821":{"tf":1},"4272538":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":1},"6174688":{"tf":1},"6364675":{"tf":1},"6398787":{"tf":1},"6401696":{"tf":1},"6405964":{"tf":1},"6411574":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412428":{"tf":1.7320508075688772},"6412589":{"tf":1},"6412720":{"tf":1},"6412997":{"tf":1},"6413416":{"tf":1},"6413523":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414107":{"tf":1},"6414123":{"tf":1.7320508075688772},"6414152":{"tf":1},"6414240":{"tf":1.4142135623730951},"6414376":{"tf":1},"6414530":{"tf":1},"6414614":{"tf":1.7320508075688772}},"df":32,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6296451":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414755":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403728":{"tf":1},"6414473":{"tf":1}},"df":2}}}},"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6412632":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"'":{"docs":{"6412428":{"tf":1}},"df":1}}},"r":{"docs":{"6412993":{"tf":1.7320508075688772}},"df":1,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414107":{"tf":1}},"df":1,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{"6414107":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1.7320508075688772}},"df":1}}}}}}},"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414614":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6413549":{"tf":1}},"df":1}}},"s":{"docs":{"3827055":{"tf":1},"6294393":{"tf":1},"6411282":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6414558":{"tf":1}},"df":9,"o":{"docs":{},"df":0,"n":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6403354":{"tf":1}},"df":1}}},"docs":{"6403354":{"tf":1.4142135623730951},"6414107":{"tf":1},"6414530":{"tf":1}},"df":3,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6414107":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6414107":{"tf":1.4142135623730951}},"df":1}}}}}},".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}}}}}}}},"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6413356":{"tf":1}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}},"=":{"1":{"docs":{"6410184":{"tf":1}},"df":1},"docs":{},"df":0}},"e":{"docs":{"6412993":{"tf":1},"6414105":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"318630":{"tf":1},"3047391":{"tf":1},"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412863":{"tf":1},"6413416":{"tf":1},"6414123":{"tf":1},"6414614":{"tf":1}},"df":8,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}},",":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412151":{"tf":1.4142135623730951}},"df":1}}}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"78932":{"tf":1}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413444":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{"6414152":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6395651":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"#":{"docs":{},"df":0,"r":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"2":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}},"3":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{"4272538":{"tf":1},"6404725":{"tf":1.7320508075688772},"6412259":{"tf":1},"6412566":{"tf":1},"6412913":{"tf":1},"6413327":{"tf":1},"6413444":{"tf":1.4142135623730951},"6414578":{"tf":1},"6414614":{"tf":1}},"df":9,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}},":":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6410184":{"tf":1}},"df":1}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413327":{"tf":1}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6403728":{"tf":1},"6412119":{"tf":1},"6412632":{"tf":1},"6412913":{"tf":1},"6414558":{"tf":1},"6414755":{"tf":1}},"df":6,"t":{"docs":{"4185821":{"tf":1},"5306132":{"tf":2.8284271247461903},"6296451":{"tf":1},"6412334":{"tf":2.23606797749979},"6412863":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414613":{"tf":1.4142135623730951}},"df":7,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413018":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":2}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6414782":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1},"6414438":{"tf":1}},"df":2}}}},"c":{"docs":{},"df":0,"h":{"docs":{"4272538":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412993":{"tf":1},"6412997":{"tf":1},"6413240":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":8,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,",":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{"6411637":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6414438":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951},"6414578":{"tf":1}},"df":6,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5549729":{"tf":1},"6411637":{"tf":1},"6414782":{"tf":1}},"df":3}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}},"x":{"docs":{"6414755":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"3047391":{"tf":1},"5306132":{"tf":1},"6411636":{"tf":1},"6412993":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414782":{"tf":1}},"df":7,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413720":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6401696":{"tf":1},"6409944":{"tf":1},"6412334":{"tf":1},"6414613":{"tf":1}},"df":4}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412607":{"tf":1}},"df":1}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412566":{"tf":1},"6413951":{"tf":1}},"df":2}},"r":{"docs":{},"df":0,"i":{"docs":{"3827055":{"tf":1},"6364675":{"tf":1},"6412566":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6409944":{"tf":1}},"df":1}}}},"t":{"docs":{"6414123":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":1},"6413018":{"tf":1.7320508075688772}},"df":2}},"a":{"docs":{},"df":0,"n":{"docs":{"6413944":{"tf":1}},"df":1},"i":{"docs":{},"df":0,"n":{"docs":{"6413778":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6397574":{"tf":1},"6413416":{"tf":1}},"df":2}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"4508230":{"tf":1},"6413549":{"tf":1}},"df":3}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6403728":{"tf":1},"6411636":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6414123":{"tf":1}},"df":6}},"s":{"docs":{},"df":0,"s":{"docs":{"6414123":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411964":{"tf":1.4142135623730951},"6412632":{"tf":1}},"df":2}},"n":{"docs":{},"df":0,"s":{"docs":{"3827055":{"tf":1},"6406161":{"tf":1},"6413778":{"tf":1}},"df":3},"d":{"docs":{"6364675":{"tf":1},"6401946":{"tf":1}},"df":2}}},"r":{"docs":{},"df":0,"a":{"docs":{"6411964":{"tf":1},"6412566":{"tf":1},"6413018":{"tf":1}},"df":3,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}},"j":{"docs":{"6406161":{"tf":1}},"df":1,"s":{"4":{"docs":{"6409972":{"tf":1}},"df":1},"docs":{},"df":0}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"6406161":{"tf":1}},"df":1}}}}}}},"=":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4529460":{"tf":1},"5306132":{"tf":1},"6294393":{"tf":1.7320508075688772},"6414473":{"tf":1}},"df":5}}}}},"m":{"docs":{},"df":0,">":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6414558":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6413018":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6411282":{"tf":1}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6413018":{"tf":1.4142135623730951}},"df":1}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413444":{"tf":1.4142135623730951}},"df":1}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"6412566":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6406161":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}}}}},"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}},"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"5351143":{"tf":1},"6410184":{"tf":1},"6413183":{"tf":1},"6413881":{"tf":2},"6414123":{"tf":1.4142135623730951}},"df":5}},"i":{"docs":{},"df":0,"r":{"docs":{"6413356":{"tf":1},"6413732":{"tf":1},"6413889":{"tf":1},"6414152":{"tf":1}},"df":4}},"r":{"docs":{},"df":0,"i":{"docs":{"6413183":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1}},"df":1}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6411282":{"tf":1},"6413549":{"tf":1},"6413720":{"tf":1}},"df":3}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"3827055":{"tf":1}},"df":1}}},"d":{"docs":{"4185821":{"tf":1},"6411636":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1}},"df":4},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1.7320508075688772}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1},"6412993":{"tf":1},"6414438":{"tf":1}},"df":3}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"6411574":{"tf":1}},"df":1}}}}},"g":{"docs":{"6395651":{"tf":1},"6414438":{"tf":1}},"df":2},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6414473":{"tf":1}},"df":1}}}}},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"6414105":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6414105":{"tf":1}},"df":1}}},"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{"6403728":{"tf":1.7320508075688772},"6411636":{"tf":1}},"df":2}}}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"6413778":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6411282":{"tf":1},"6414614":{"tf":2.6457513110645907}},"df":2}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1}},"df":1}}}}}}}}}},"v":{"docs":{"6364675":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"4529460":{"tf":1.4142135623730951},"6364675":{"tf":1},"6409972":{"tf":1},"6411282":{"tf":1},"6412119":{"tf":1},"6413523":{"tf":1},"6413778":{"tf":1.4142135623730951},"6414107":{"tf":1}},"df":8,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1},"6414782":{"tf":1}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{"6414123":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"i":{"docs":{"6414123":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1},"4460205":{"tf":1},"5306132":{"tf":2.23606797749979},"6403728":{"tf":1},"6411637":{"tf":1},"6412863":{"tf":1},"6414152":{"tf":1.4142135623730951}},"df":7,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}},":":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"1":{"docs":{"4272538":{"tf":1}},"df":1},"2":{"docs":{"4272538":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6411964":{"tf":1}},"df":1}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"4529460":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6409944":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6413356":{"tf":1},"6414123":{"tf":1}},"df":5}},"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}},"v":{"docs":{"6403728":{"tf":1},"6411778":{"tf":1},"6412334":{"tf":2.23606797749979},"6412863":{"tf":1},"6412997":{"tf":1.7320508075688772},"6413523":{"tf":1},"6413720":{"tf":1}},"df":7,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412863":{"tf":1}},"df":1}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"6412119":{"tf":1.7320508075688772}},"df":1}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"6411282":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{"6397574":{"tf":1},"6410184":{"tf":1},"6412632":{"tf":1},"6413744":{"tf":1}},"df":4,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1},"6411964":{"tf":1},"6412151":{"tf":1},"6412334":{"tf":1},"6413018":{"tf":1},"6413444":{"tf":1},"6413523":{"tf":1},"6414123":{"tf":1},"6414614":{"tf":1},"6414755":{"tf":1}},"df":10}},"t":{"docs":{"6412753":{"tf":1},"6414105":{"tf":1}},"df":2},"e":{"docs":{"6294393":{"tf":1},"6397574":{"tf":1},"6403728":{"tf":1},"6413523":{"tf":1}},"df":4,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413036":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{"6403354":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}}},"[":{"0":{"docs":{"6403354":{"tf":1}},"df":1,"]":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}}}},"docs":{},"df":0}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}},"w":{"docs":{},"df":0,"n":{"docs":{"6411964":{"tf":1},"6413444":{"tf":1},"6413881":{"tf":1}},"df":3,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6411964":{"tf":1},"6413744":{"tf":1},"6414152":{"tf":1},"6414376":{"tf":1},"6414558":{"tf":1.7320508075688772},"6414782":{"tf":1.7320508075688772}},"df":6}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951},"6410184":{"tf":1},"6412607":{"tf":1},"6412632":{"tf":1.4142135623730951},"6413523":{"tf":1},"6413732":{"tf":1},"6413744":{"tf":1},"6414093":{"tf":1},"6414152":{"tf":1.4142135623730951}},"df":9}},"t":{"docs":{"4047072":{"tf":1},"6414578":{"tf":1}},"df":2}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1},"6413732":{"tf":1}},"df":2,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"4047072":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413732":{"tf":1}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6398787":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"b":{"docs":{"6414105":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{"6413512":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"1":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"6412119":{"tf":1.4142135623730951}},"df":1}}}}}}},"docs":{},"df":0}}}}}}}}},"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6414060":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6414152":{"tf":1}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6411169":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1},"6414093":{"tf":1}},"df":2}}}}}}},"i":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"4272538":{"tf":1}},"df":1}}}},"\"":{"docs":{},"df":0,">":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6404725":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{"6396782":{"tf":1.4142135623730951},"6413327":{"tf":1}},"df":2}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413265":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4185821":{"tf":1},"6296451":{"tf":1},"6409972":{"tf":1},"6411778":{"tf":1.4142135623730951},"6413720":{"tf":1},"6414152":{"tf":1}},"df":6,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"6411778":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"6414755":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1}},"df":1}},"e":{"docs":{"4529460":{"tf":1},"6412428":{"tf":1}},"df":2},"d":{"docs":{},"df":0,"e":{"docs":{"6413944":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{"6413018":{"tf":1}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"v":{"docs":{"6412334":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1},"6411574":{"tf":1},"6411964":{"tf":1.4142135623730951}},"df":3}}}},"i":{"docs":{},"df":0,"c":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}},"f":{"docs":{"6364675":{"tf":2}},"df":1,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":1.4142135623730951},"6412428":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951}},"df":5}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6398787":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1}},"df":4,"i":{"docs":{},"df":0,"t":{"docs":{"6414558":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1.7320508075688772},"6412566":{"tf":1},"6413036":{"tf":1}},"df":3}}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"6413265":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6413951":{"tf":1.7320508075688772}},"df":2}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6413244":{"tf":1},"6413720":{"tf":1}},"df":3,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1},"6414253":{"tf":1}},"df":2}}}}},"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}},"k":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"6403728":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412863":{"tf":1.4142135623730951},"6413240":{"tf":1},"6414123":{"tf":1}},"df":3}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"6364675":{"tf":1},"6410184":{"tf":1},"6412632":{"tf":1},"6413416":{"tf":1}},"df":4,"g":{"docs":{"6412334":{"tf":1.7320508075688772}},"df":1},".":{"docs":{},"df":0,"j":{"docs":{"6406161":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6412334":{"tf":1}},"df":2},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6411282":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6413744":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"6403354":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413440":{"tf":1.4142135623730951}},"df":1}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"6412993":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"3047391":{"tf":1},"5306132":{"tf":1}},"df":2,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6414613":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{"3047391":{"tf":1},"4047072":{"tf":1},"4185821":{"tf":1.4142135623730951},"4529460":{"tf":1},"5351143":{"tf":2},"6174688":{"tf":2.23606797749979},"6403354":{"tf":2},"6411964":{"tf":1},"6413183":{"tf":1},"6413744":{"tf":1.7320508075688772},"6414123":{"tf":1},"6414376":{"tf":1},"6414438":{"tf":1},"6414530":{"tf":2},"6414613":{"tf":1}},"df":15,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"6410224":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"e":{"docs":{"5549729":{"tf":1},"6414438":{"tf":1}},"df":2,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414438":{"tf":1}},"df":1}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6414152":{"tf":1}},"df":1,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}},"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"6414438":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6411964":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"6413549":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1},"6412334":{"tf":2.449489742783178},"6412993":{"tf":1}},"df":3,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"6414253":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":2.449489742783178}},"df":1,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}},"!":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":2}},"df":1,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":2.23606797749979}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"+":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1}},"df":1,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{"3827055":{"tf":1}},"df":1}}}}}}}},".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,")":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":3},"6413327":{"tf":1},"6414093":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":6,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{"5351143":{"tf":1.4142135623730951},"5549729":{"tf":1}},"df":2,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"5351143":{"tf":1}},"df":1}}}}}}}},"k":{"docs":{"6411282":{"tf":1}},"df":1}},"g":{"docs":{"6412428":{"tf":1.4142135623730951},"6414105":{"tf":1}},"df":2,"i":{"docs":{},"df":0,"c":{"docs":{"6412993":{"tf":1},"6414755":{"tf":1.4142135623730951}},"df":2},"n":{"docs":{"6412428":{"tf":1.7320508075688772},"6413720":{"tf":1},"6414105":{"tf":1}},"df":3,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"2":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"k":{"docs":{"3047391":{"tf":1},"3802824":{"tf":1},"4529460":{"tf":1},"6412334":{"tf":1},"6413183":{"tf":1},"6413416":{"tf":1},"6413744":{"tf":1},"6413889":{"tf":1},"6414107":{"tf":1},"6414438":{"tf":1},"6414613":{"tf":1}},"df":11,"u":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1},"6412566":{"tf":1}},"df":2,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"3827055":{"tf":1},"4272538":{"tf":1},"6414438":{"tf":1}},"df":3}},"a":{"docs":{},"df":0,"d":{"docs":{"3802824":{"tf":1},"6364675":{"tf":1},"6409944":{"tf":1},"6412566":{"tf":1},"6413541":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1},"6414093":{"tf":1.7320508075688772},"6414152":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414558":{"tf":1},"6414613":{"tf":1.4142135623730951}},"df":13,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"6414152":{"tf":1}},"df":1}}},"docs":{},"df":0}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"6413778":{"tf":1}},"df":1,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}},"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":1}},"df":1}}},")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412997":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6414613":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{"6413541":{"tf":1.7320508075688772}},"df":1,"g":{"docs":{"6409944":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"6414558":{"tf":1}},"df":1}}}},"t":{"docs":{"6364675":{"tf":1},"6414123":{"tf":1}},"df":2,"t":{"docs":{},"df":0,"o":{"docs":{"6412632":{"tf":1.4142135623730951}},"df":1}}},"w":{"docs":{"6410184":{"tf":1}},"df":1}},"t":{"docs":{"4272538":{"tf":1},"6412993":{"tf":1},"6413951":{"tf":1.4142135623730951}},"df":3,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":3}}},"b":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"6414105":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1.4142135623730951},"6413240":{"tf":2},"6413265":{"tf":1.4142135623730951},"6413889":{"tf":1.7320508075688772},"6413944":{"tf":1},"6414123":{"tf":1},"6414240":{"tf":1},"6414614":{"tf":2.449489742783178}},"df":8}}}},"m":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":2.8284271247461903},"6412993":{"tf":1}},"df":2}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1.7320508075688772}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6411169":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1},"6410224":{"tf":1},"6413183":{"tf":1},"6413944":{"tf":1}},"df":4}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6412119":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413720":{"tf":1},"6413732":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414240":{"tf":1}},"df":9,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413720":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414105":{"tf":1},"6414240":{"tf":1}},"df":6}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"6414152":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414614":{"tf":1}},"df":4}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412334":{"tf":1.4142135623730951},"6412632":{"tf":1},"6412993":{"tf":2.23606797749979},"6412997":{"tf":2.449489742783178},"6413244":{"tf":1.4142135623730951},"6413720":{"tf":2},"6413951":{"tf":1.4142135623730951},"6414614":{"tf":1}},"df":9}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1},"6296451":{"tf":1},"6413183":{"tf":1.7320508075688772},"6413944":{"tf":1},"6414253":{"tf":1.4142135623730951}},"df":5,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410224":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412119":{"tf":1},"6412993":{"tf":1},"6413541":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413732":{"tf":1},"6413944":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1},"6414240":{"tf":1}},"df":10}}}}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1},"6412993":{"tf":1}},"df":2}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6403728":{"tf":1},"6412632":{"tf":1.4142135623730951},"6413265":{"tf":1},"6414123":{"tf":1},"6414530":{"tf":1.4142135623730951}},"df":6}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}},"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6403728":{"tf":1},"6412632":{"tf":1},"6414530":{"tf":1}},"df":4}}}}}}},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412334":{"tf":1},"6414123":{"tf":1.4142135623730951}},"df":3}}}}},"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412632":{"tf":1},"6412993":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":6}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6412993":{"tf":2.23606797749979}},"df":2}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1},"6364675":{"tf":1},"6412993":{"tf":1}},"df":3}}}}},"p":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"6410224":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412632":{"tf":1},"6412993":{"tf":2.8284271247461903},"6412997":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413720":{"tf":1.7320508075688772},"6413951":{"tf":1},"6414093":{"tf":1},"6414105":{"tf":1}},"df":11,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412997":{"tf":2}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}},"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6403728":{"tf":1},"6412632":{"tf":1.4142135623730951},"6414530":{"tf":1.4142135623730951}},"df":4,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6412632":{"tf":1}},"df":1},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"$":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"}":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"{":{"docs":{},"df":0,"{":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"}":{"docs":{},"df":0,"}":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"6413265":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"d":{"docs":{"6364675":{"tf":1},"6403728":{"tf":2.8284271247461903},"6413265":{"tf":1.4142135623730951},"6414530":{"tf":3.7416573867739413}},"df":4,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1.4142135623730951},"6414123":{"tf":1.4142135623730951}},"df":2,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414530":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"6412632":{"tf":1.7320508075688772}},"df":1}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}},"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"6412632":{"tf":1}},"df":1,"e":{"1":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1},"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1},"6410184":{"tf":1}},"df":2}}}}},"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":2.23606797749979}},"df":1}}}}}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"6410184":{"tf":2.8284271247461903}},"df":1}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"8":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"docs":{},"df":0}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{"4272538":{"tf":1}},"df":1},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}},"3":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6412997":{"tf":2}},"df":1}}}}}}}},"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413732":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":5}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1},"6413944":{"tf":1},"6414240":{"tf":1}},"df":4}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951}},"df":2}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6413240":{"tf":2},"6414123":{"tf":1}},"df":2}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"i":{"docs":{"6294393":{"tf":2.8284271247461903},"6412993":{"tf":2.23606797749979}},"df":2}},"a":{"docs":{"6364675":{"tf":1},"6412119":{"tf":1},"6413720":{"tf":1}},"df":3,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"78932":{"tf":2},"6410224":{"tf":1.4142135623730951},"6413183":{"tf":3.4641016151377544},"6413944":{"tf":1.4142135623730951},"6414253":{"tf":2.449489742783178}},"df":5}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413944":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{"6364675":{"tf":1},"6412993":{"tf":1}},"df":2,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}},"i":{"docs":{"4185821":{"tf":1.4142135623730951},"6411636":{"tf":1},"6412993":{"tf":1},"6413881":{"tf":1},"6414105":{"tf":1}},"df":5,"v":{"docs":{},"df":0,"e":{"docs":{"6414614":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"k":{"docs":{"3802824":{"tf":1.7320508075688772},"6294393":{"tf":1},"6413244":{"tf":1},"6413720":{"tf":1.4142135623730951},"6413951":{"tf":1},"6414558":{"tf":1},"6414782":{"tf":1.4142135623730951}},"df":7,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"6413951":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1}},"df":1}}}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{"6412259":{"tf":1},"6412334":{"tf":1},"6412632":{"tf":1},"6413018":{"tf":1},"6413778":{"tf":1},"6414240":{"tf":1},"6414578":{"tf":1}},"df":7}},">":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1.4142135623730951},"5306132":{"tf":1}},"df":2}}}},"<":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,">":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"5306132":{"tf":1.7320508075688772}},"df":1}},"a":{"docs":{},"df":0,"l":{"docs":{"5306132":{"tf":1}},"df":1},"r":{"docs":{"6414105":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"5306132":{"tf":1}},"df":1}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1}},"df":1}},"i":{"docs":{"6414105":{"tf":1}},"df":1,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6413881":{"tf":1}},"df":1}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6414105":{"tf":1}},"df":1}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,";":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"814910":{"tf":1},"6413444":{"tf":1}},"df":2},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"6413881":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6411778":{"tf":1},"6412151":{"tf":1.7320508075688772},"6412993":{"tf":2.23606797749979},"6413183":{"tf":2.23606797749979},"6413416":{"tf":1},"6414253":{"tf":1},"6414613":{"tf":1.7320508075688772}},"df":7,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}},"\"":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"78932":{"tf":1}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"6412993":{"tf":1},"6414240":{"tf":1},"6414438":{"tf":1}},"df":3}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"4529460":{"tf":3.1622776601683795}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}},"b":{"docs":{"6403354":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"4508230":{"tf":1},"6405964":{"tf":1},"6412566":{"tf":1},"6412720":{"tf":1},"6413744":{"tf":1}},"df":5}}}}},"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6412993":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}},".":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"6414755":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{"6411964":{"tf":1}},"df":1}}},"=":{"1":{"0":{"6":{"7":{"docs":{"6413541":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"5306132":{"tf":2}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6403354":{"tf":1.4142135623730951},"6412993":{"tf":1},"6414123":{"tf":1}},"df":3}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6411574":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"6403728":{"tf":1.4142135623730951},"6412119":{"tf":1},"6412913":{"tf":1},"6413523":{"tf":1},"6413889":{"tf":1}},"df":5}},"r":{"docs":{},"df":0,"g":{"docs":{"6412993":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"6413549":{"tf":1.4142135623730951}},"df":1}}}},"c":{"docs":{},"df":0,"k":{"docs":{"6401946":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"t":{"docs":{"6411636":{"tf":1}},"df":1,"'":{"docs":{"6414755":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6411574":{"tf":1},"6414438":{"tf":1}},"df":2}},"d":{"docs":{"6409972":{"tf":1}},"df":1},"v":{"docs":{"78932":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"78932":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1.4142135623730951},"6412589":{"tf":1.4142135623730951},"6413440":{"tf":2.8284271247461903},"6413881":{"tf":1}},"df":4}}}},"f":{"docs":{},"df":0,"t":{"docs":{"4185821":{"tf":1},"4529460":{"tf":1.4142135623730951},"6411636":{"tf":1.7320508075688772},"6412119":{"tf":1},"6413183":{"tf":1}},"df":5,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411636":{"tf":1.4142135623730951}},"df":1}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"4508230":{"tf":1},"6403354":{"tf":2},"6411778":{"tf":1}},"df":3,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4508230":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6411574":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6412589":{"tf":1},"6412632":{"tf":1.4142135623730951}},"df":2}}}},"k":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"3827055":{"tf":1},"5306132":{"tf":1},"5549729":{"tf":1},"6294393":{"tf":1},"6397574":{"tf":1},"6401946":{"tf":1},"6403728":{"tf":1},"6405964":{"tf":1},"6406161":{"tf":1},"6410184":{"tf":1},"6411636":{"tf":1},"6412151":{"tf":1},"6412428":{"tf":1},"6412566":{"tf":1.4142135623730951},"6412632":{"tf":1},"6412863":{"tf":1},"6413018":{"tf":1},"6413036":{"tf":1},"6413440":{"tf":1},"6413549":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414105":{"tf":1.7320508075688772},"6414123":{"tf":1},"6414614":{"tf":1},"6414755":{"tf":1},"6414782":{"tf":1}},"df":26,"n":{"docs":{"6413549":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"4047072":{"tf":1},"6411636":{"tf":1},"6414152":{"tf":1},"6414755":{"tf":1}},"df":4}},"y":{"docs":{"3047391":{"tf":1.4142135623730951},"5306132":{"tf":3},"6413018":{"tf":1},"6413523":{"tf":1.7320508075688772}},"df":4,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":2.23606797749979}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":2.23606797749979}},"df":1}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"4185821":{"tf":1},"5306132":{"tf":1}},"df":2}}}},"u":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1},"6413523":{"tf":1}},"df":2}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"t":{"docs":{"6413951":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6412119":{"tf":1}},"df":1,"a":{"docs":{"6412753":{"tf":1}},"df":1}}}}},"m":{"docs":{"6410224":{"tf":1.4142135623730951},"6414107":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"5306132":{"tf":1},"6174688":{"tf":1},"6404725":{"tf":1},"6411637":{"tf":1.4142135623730951},"6413416":{"tf":1},"6413720":{"tf":1},"6413778":{"tf":1},"6413951":{"tf":1.4142135623730951}},"df":8,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413889":{"tf":1}},"df":1}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1},"6413240":{"tf":1.4142135623730951}},"df":2}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1},"6411964":{"tf":1},"6414755":{"tf":1}},"df":3}},".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1}},"df":1}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"6397574":{"tf":1},"6404725":{"tf":1.4142135623730951},"6413720":{"tf":2}},"df":3}}}},"!":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"u":{"docs":{"6294393":{"tf":1.4142135623730951},"6411194":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411194":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}},"a":{"docs":{},"df":0,"x":{"docs":{"6414438":{"tf":2}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"1":{"2":{"8":{"docs":{"6413240":{"tf":2}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"5":{"0":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414614":{"tf":1}},"df":1}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"4529460":{"tf":1}},"df":1}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{"6174688":{"tf":1}},"df":1,"u":{"docs":{},"df":0,"p":{"docs":{"6414152":{"tf":1}},"df":1,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6296451":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"6413244":{"tf":2}},"df":1,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6412119":{"tf":1.7320508075688772}},"df":1}}}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"6414755":{"tf":1}},"df":1,"'":{"docs":{"6414755":{"tf":1}},"df":1}}}},"c":{"docs":{},"df":0,"h":{"docs":{"6414123":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}},"y":{"docs":{},"df":0,"b":{"docs":{"6409944":{"tf":1},"6412119":{"tf":1.4142135623730951},"6414123":{"tf":1},"6414755":{"tf":1}},"df":4}},"k":{"docs":{},"df":0,"e":{"docs":{"4047072":{"tf":1},"6174688":{"tf":1},"6294393":{"tf":1},"6403728":{"tf":1},"6411636":{"tf":1},"6412119":{"tf":1},"6412589":{"tf":1},"6413036":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1},"6413951":{"tf":1},"6414123":{"tf":1.4142135623730951},"6414473":{"tf":1},"6414755":{"tf":1}},"df":14}},"i":{"docs":{},"df":0,"n":{"docs":{"5306132":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"6401946":{"tf":1}},"df":1}}}},"p":{"docs":{"5306132":{"tf":1.4142135623730951},"6412720":{"tf":1},"6413244":{"tf":1.4142135623730951},"6413541":{"tf":1.7320508075688772},"6414093":{"tf":1.4142135623730951}},"df":5,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413244":{"tf":1},"6413541":{"tf":1}},"df":2}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6413244":{"tf":1}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"6414093":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"6414093":{"tf":1}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6414093":{"tf":1}},"df":1}}}}}},"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6364675":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6413541":{"tf":1}},"df":1}}}}}}},"c":{"docs":{"6174688":{"tf":1}},"df":1,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414578":{"tf":1}},"df":1}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6414558":{"tf":1}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"4508230":{"tf":1},"6409944":{"tf":1},"6413549":{"tf":1}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{"6364675":{"tf":1.4142135623730951},"6411637":{"tf":1}},"df":2},"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413183":{"tf":1}},"df":1}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"6403354":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1},"6412334":{"tf":1},"6412993":{"tf":1.4142135623730951},"6413183":{"tf":1},"6414123":{"tf":1}},"df":5,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"6296451":{"tf":1},"6413183":{"tf":1.7320508075688772}},"df":2}}}}}}}}},"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{"6403728":{"tf":1},"6414123":{"tf":1}},"df":2,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"5306132":{"tf":1.4142135623730951},"6412632":{"tf":1},"6414152":{"tf":1}},"df":3}}},"e":{"docs":{"4047072":{"tf":1}},"df":1,"l":{"docs":{"6409972":{"tf":1.7320508075688772},"6411778":{"tf":1},"6413951":{"tf":1}},"df":3},"r":{"docs":{"6410184":{"tf":1}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{"6401946":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6401946":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"5306132":{"tf":1},"6395651":{"tf":1},"6411574":{"tf":1.4142135623730951},"6411778":{"tf":1.4142135623730951},"6411964":{"tf":1},"6414613":{"tf":1}},"df":6}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6413244":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2},"u":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"5351143":{"tf":1}},"df":1},"l":{"docs":{},"df":0,"a":{"docs":{"6413778":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"6411964":{"tf":1}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"6411636":{"tf":1}},"df":1}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"5549729":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{"6414438":{"tf":2},"6414530":{"tf":1}},"df":2,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{"4272538":{"tf":2}},"df":1},"docs":{},"df":0}}}}}}}},"u":{"docs":{"6413183":{"tf":1.4142135623730951}},"df":1,"t":{"docs":{"6409944":{"tf":1}},"df":1}},"d":{"docs":{"6412119":{"tf":1},"6412566":{"tf":1}},"df":2}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":2}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"6414240":{"tf":1}},"df":1}}},"s":{"docs":{"6411778":{"tf":1}},"df":1}},"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"6414438":{"tf":1}},"df":1}}}}},"d":{"docs":{},"df":0,"l":{"docs":{"6412334":{"tf":1}},"df":1,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"g":{"docs":{"4047072":{"tf":1}},"df":1},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1,":":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"0":{"docs":{"4272538":{"tf":1}},"df":1},"1":{"docs":{"4272538":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1}},"df":1}}}},":":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"6414240":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6414093":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"6413183":{"tf":1}},"df":1}}},"q":{"docs":{},"df":0,"l":{"docs":{"6410224":{"tf":1}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6413523":{"tf":1}},"df":1}}}},"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6413523":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"6413523":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6413523":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"6410224":{"tf":2}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6413440":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6414107":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1},"6398787":{"tf":1},"6405964":{"tf":1},"6410184":{"tf":1},"6411637":{"tf":1},"6411778":{"tf":1.7320508075688772},"6412119":{"tf":1},"6412632":{"tf":1},"6412863":{"tf":1},"6412997":{"tf":1},"6413240":{"tf":1.4142135623730951},"6413265":{"tf":1},"6413512":{"tf":1},"6413744":{"tf":1},"6414107":{"tf":1},"6414558":{"tf":1}},"df":16,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414123":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6414614":{"tf":1}},"df":1}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"6296451":{"tf":1},"6403354":{"tf":1},"6411636":{"tf":1},"6412334":{"tf":1},"6412428":{"tf":1},"6414123":{"tf":1},"6414782":{"tf":1}},"df":7,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6296451":{"tf":1}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"6413732":{"tf":1},"6413889":{"tf":1},"6414240":{"tf":1}},"df":3,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414240":{"tf":1}},"df":1}}}}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6413720":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"'":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6413944":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"6412632":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412151":{"tf":1}},"df":1,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1}},"df":1}},"(":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"6412151":{"tf":1}},"df":1}}}}}}}}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"6412119":{"tf":1.4142135623730951},"6414123":{"tf":1}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"6414123":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"6294393":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6412119":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412863":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413944":{"tf":1}},"df":1}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413720":{"tf":1}},"df":1}}},"=":{"1":{"docs":{"6412993":{"tf":1}},"df":1},"docs":{},"df":0}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,",":{"0":{"docs":{"6413523":{"tf":1}},"df":1},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413240":{"tf":1}},"df":1}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6412428":{"tf":1}},"df":1}}}},"t":{"docs":{},"df":0,"o":{"docs":{"6411636":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1.7320508075688772},"4529460":{"tf":1.4142135623730951},"6296451":{"tf":1},"6396782":{"tf":1},"6411194":{"tf":1},"6413036":{"tf":1},"6413416":{"tf":1}},"df":7},"r":{"docs":{},"df":0,"a":{"docs":{"318630":{"tf":1},"6413778":{"tf":1},"6413908":{"tf":1}},"df":3}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"78932":{"tf":1},"6412334":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413944":{"tf":1},"6414376":{"tf":1}},"df":6,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"318630":{"tf":1},"6412566":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"6413440":{"tf":1}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"4508230":{"tf":1}},"df":1}}}}}},"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1.7320508075688772},"6409944":{"tf":1},"6412259":{"tf":1},"6413744":{"tf":1},"6413951":{"tf":1},"6414107":{"tf":1},"6414578":{"tf":1},"6414755":{"tf":1}},"df":8,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6403354":{"tf":1}},"df":1}}}},"]":{"docs":{},"df":0,",":{"docs":{},"df":0,"[":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6403354":{"tf":1.4142135623730951}},"df":1}}}}}}}}},":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412589":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"6412259":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"6409944":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,")":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"4185821":{"tf":1}},"df":1}}}}}}}}}}}}}},"t":{"docs":{"6412119":{"tf":1}},"df":1,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3827055":{"tf":1},"6403728":{"tf":1}},"df":2,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"5306132":{"tf":1}},"df":1}}}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":2.23606797749979}},"df":1,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"4272538":{"tf":1}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1},"4529460":{"tf":1},"6412566":{"tf":1},"6413244":{"tf":1}},"df":4}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"3047391":{"tf":1},"6364675":{"tf":1},"6414438":{"tf":1}},"df":3}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"6364675":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1},"6409944":{"tf":1},"6411637":{"tf":1},"6412334":{"tf":1},"6412566":{"tf":1},"6412753":{"tf":1},"6412913":{"tf":1},"6412993":{"tf":1},"6413889":{"tf":1},"6414240":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414558":{"tf":1}},"df":12,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6409944":{"tf":1}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1},"6412589":{"tf":1.7320508075688772}},"df":2,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"3047391":{"tf":1}},"df":1}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6397574":{"tf":1},"6401946":{"tf":1},"6412119":{"tf":1}},"df":3}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6412863":{"tf":1}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6411778":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6414558":{"tf":1}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"814910":{"tf":1},"6294393":{"tf":1},"6411637":{"tf":1.7320508075688772},"6411964":{"tf":1},"6412334":{"tf":2}},"df":5,"a":{"docs":{},"df":0,"l":{"docs":{"6414438":{"tf":1}},"df":1}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6413327":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6294393":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"3802824":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"6411282":{"tf":1}},"df":1}}}}}},"l":{"docs":{"4185821":{"tf":1.4142135623730951},"6414105":{"tf":1.4142135623730951}},"df":2},"k":{"docs":{"6403354":{"tf":1}},"df":1},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"3802824":{"tf":1},"4529460":{"tf":1},"6364675":{"tf":1.4142135623730951},"6412334":{"tf":1},"6412993":{"tf":1},"6413240":{"tf":1},"6413356":{"tf":1},"6413881":{"tf":1},"6414152":{"tf":1},"6414240":{"tf":1},"6414578":{"tf":1},"6414613":{"tf":1}},"df":12,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"6296451":{"tf":1.7320508075688772}},"df":1}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"6404725":{"tf":1.7320508075688772},"6413951":{"tf":1.4142135623730951}},"df":2}},"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"6404725":{"tf":1}},"df":1}}}}}}}}}}}},".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6411964":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6412993":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}},"s":{"docs":{"814910":{"tf":1},"3827055":{"tf":1},"5306132":{"tf":1.7320508075688772},"5351143":{"tf":1},"5549729":{"tf":1},"6174688":{"tf":1.4142135623730951},"6364675":{"tf":1},"6395651":{"tf":1.4142135623730951},"6396782":{"tf":1.7320508075688772},"6397574":{"tf":1.7320508075688772},"6403354":{"tf":1},"6403728":{"tf":1.7320508075688772},"6404725":{"tf":1.4142135623730951},"6405964":{"tf":1},"6409944":{"tf":1},"6411636":{"tf":1},"6411778":{"tf":1.4142135623730951},"6411964":{"tf":1},"6412119":{"tf":1.4142135623730951},"6412334":{"tf":1.4142135623730951},"6412566":{"tf":2},"6412589":{"tf":1},"6412632":{"tf":1.7320508075688772},"6412720":{"tf":1},"6412753":{"tf":1},"6412993":{"tf":1},"6413183":{"tf":1},"6413244":{"tf":1},"6413416":{"tf":1},"6413444":{"tf":1.4142135623730951},"6413523":{"tf":1.7320508075688772},"6413541":{"tf":1},"6413720":{"tf":1},"6413744":{"tf":1},"6413778":{"tf":1.4142135623730951},"6413944":{"tf":1},"6413951":{"tf":1},"6414060":{"tf":1},"6414152":{"tf":1.4142135623730951},"6414240":{"tf":1},"6414253":{"tf":1},"6414376":{"tf":1.4142135623730951},"6414438":{"tf":1.4142135623730951},"6414530":{"tf":1},"6414578":{"tf":1}},"df":45,"e":{"docs":{},"df":0,"r":{"docs":{"4185821":{"tf":1.4142135623730951},"4508230":{"tf":1},"5351143":{"tf":1},"6296451":{"tf":1},"6409944":{"tf":1},"6411778":{"tf":1.4142135623730951},"6412428":{"tf":1.7320508075688772},"6412566":{"tf":1.4142135623730951},"6413036":{"tf":1},"6413183":{"tf":1.4142135623730951},"6413240":{"tf":1.7320508075688772},"6413523":{"tf":1.4142135623730951},"6413720":{"tf":1.4142135623730951},"6413889":{"tf":1},"6414105":{"tf":2.449489742783178},"6414558":{"tf":2}},"df":16,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,",":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6296451":{"tf":1}},"df":1}}}}}}},"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}},"=":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"3047391":{"tf":1}},"df":1}}}},"'":{"docs":{"6395651":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6294393":{"tf":1}},"df":1}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"6412428":{"tf":1},"6414123":{"tf":1}},"df":2}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,":":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}},"l":{"docs":{"5306132":{"tf":2.449489742783178},"6413881":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"6412993":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"5306132":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6411574":{"tf":1},"6412993":{"tf":1},"6413356":{"tf":1}},"df":3}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"6401946":{"tf":1},"6413732":{"tf":1},"6414240":{"tf":1}},"df":3}}}},"o":{"docs":{"4508230":{"tf":1}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"4508230":{"tf":1}},"df":1}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"6409944":{"tf":1}},"df":1}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"6413444":{"tf":1}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"6412334":{"tf":1},"6412632":{"tf":1}},"df":2}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6413523":{"tf":1}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{"3827055":{"tf":1.7320508075688772}},"df":1},"q":{"docs":{},"df":0,"u":{"docs":{"6411778":{"tf":1},"6412993":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{"6412993":{"tf":1}},"df":1,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"6412993":{"tf":1}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"6412428":{"tf":1}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"l":{"docs":{"3802824":{"tf":1},"4047072":{"tf":1},"6404725":{"tf":1},"6412753":{"tf":1},"6414152":{"tf":1},"6414376":{"tf":1},"6414530":{"tf":1}},"df":7,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414530":{"tf":1}},"df":1}}}}},"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6414152":{"tf":1}},"df":1}}},":":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"6174688":{"tf":1}},"df":1}}}}}}},"i":{"docs":{"814910":{"tf":1},"6412334":{"tf":1.7320508075688772}},"df":2,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{"6412334":{"tf":1.4142135623730951}},"df":1}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412334":{"tf":1}},"df":1}}}}}}}}}},"d":{"docs":{"6413549":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"f":{"docs":{"6174688":{"tf":1}},"df":1}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6174688":{"tf":1},"6412119":{"tf":1},"6412566":{"tf":1.4142135623730951},"6414782":{"tf":1}},"df":4,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,">":{"docs":{},"df":0,".":{"docs":{},"df":0,"<":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"6409972":{"tf":1}},"df":1}}}}}}}},"?":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6412566":{"tf":1}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"6413523":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"4272538":{"tf":1},"6411574":{"tf":1},"6412632":{"tf":1}},"df":3},"c":{"docs":{},"df":0,"k":{"docs":{"6412632":{"tf":1}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"3827055":{"tf":1}},"df":1}}}}}},"s":{"docs":{"6412119":{"tf":1}},"df":1}},"_":{"docs":{"5306132":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413951":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"6413444":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,",":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"4529460":{"tf":1}},"df":1}}}}}}}}},"_":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"1":{"0":{"0":{"docs":{"4529460":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"2":{"5":{"0":{"docs":{"4529460":{"tf":1}},"df":1},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}}}},"l":{"docs":{"6403354":{"tf":1}},"df":1},"x":{"docs":{"6403354":{"tf":1}},"df":1},"y":{"docs":{"6403354":{"tf":1}},"df":1}},"x":{"docs":{"6412589":{"tf":1},"6414438":{"tf":1}},"df":2,"m":{"docs":{},"df":0,"l":{"docs":{"6405964":{"tf":1.7320508075688772},"6410184":{"tf":1},"6413908":{"tf":1}},"df":3,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"=":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"4272538":{"tf":1}},"df":1,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"2":{"0":{"0":{"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0},"docs":{},"df":0}}}}}},"docs":{},"df":0}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"4272538":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{"6413908":{"tf":1.4142135623730951}},"df":1,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1},"6413908":{"tf":1}},"df":2}}}}}}},"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413908":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"6413908":{"tf":1}},"df":1}}}}}}}}}}}}},":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{"6410184":{"tf":1}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"6410184":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413720":{"tf":1.4142135623730951},"6414105":{"tf":1}},"df":2}}}},"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1,"t":{"docs":{"6413778":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"6413778":{"tf":1}},"df":1,"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413778":{"tf":1}},"df":1}}}},".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,",":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"=":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"6413778":{"tf":1.4142135623730951}},"df":1}}}},".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,",":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"6413778":{"tf":1}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"6413778":{"tf":1}},"df":1}}}}}}}}}}}}}}},"r":{"docs":{"6404725":{"tf":1}},"df":1,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"6404725":{"tf":1.4142135623730951}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"6413778":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"(":{"3":{"docs":{"6412589":{"tf":1}},"df":1},"4":{"docs":{"6412589":{"tf":1}},"df":1},"docs":{},"df":0}}}}}},"y":{"2":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":1}},"df":1}}}},"docs":{"6414438":{"tf":1.4142135623730951}},"df":1,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6414578":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"6414438":{"tf":2.449489742783178}},"df":1}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"6414123":{"tf":1.4142135623730951}},"df":1}}}}}},"z":{"0":{"docs":{"6413444":{"tf":2.8284271247461903}},"df":1},"docs":{"6413416":{"tf":1}},"df":1,"]":{"docs":{},"df":0,"{":{"2":{"docs":{},"df":0,",":{"3":{"docs":{},"df":0,"}":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"[":{"docs":{},"df":0,",":{"docs":{},"df":0,"]":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"|":{"docs":{},"df":0,"$":{"docs":{},"df":0,")":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"$":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"[":{"docs":{},"df":0,",":{"docs":{},"df":0,"]":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"s":{"docs":{},"df":0,"?":{"docs":{},"df":0,"|":{"docs":{},"df":0,"$":{"docs":{},"df":0,")":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"$":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,">":{"docs":{},"df":0,"<":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{"6413444":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"df":0}},"docs":{},"df":0}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"6414093":{"tf":1}},"df":1}}},".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"'":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"'":{"docs":{},"df":0,",":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"p":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"?":{"docs":{},"df":0,"u":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,")":{"docs":{},"df":0,"+":{"docs":{},"df":0,"'":{"docs":{},"df":0,"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"'":{"docs":{},"df":0,"+":{"docs":{},"df":0,"(":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"%":{"2":{"0":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"6401696":{"tf":1}},"df":1}}}}}}}}}}}}}},"docs":{},"df":0},"docs":{},"df":0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"6412913":{"tf":1}},"df":1}}}}}}}}},"length":5902}},"pipeline":["trimmer","stopWordFilter","stemmer"]}
\ No newline at end of file
diff --git a/package.json b/package.json
index ad2ff27d..015e977d 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "elasticlunr",
"description": "Lightweight full-text search engine in Javascript for browser search and offline search.",
- "version": "0.8.8",
+ "version": "0.8.9",
"author": "Wei Song",
"keywords": ["search", "text retrieval", "offline search", "full text search"],
"homepage": "http://weixsong.github.io",
diff --git a/release/elasticlunr.js b/release/elasticlunr.js
index cc78e1c9..91956718 100644
--- a/release/elasticlunr.js
+++ b/release/elasticlunr.js
@@ -1,6 +1,6 @@
/**
* elasticlunr - http://weixsong.github.io
- * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
+ * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.9
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
@@ -83,7 +83,7 @@ var elasticlunr = function (config) {
return idx;
};
-elasticlunr.version = "0.8.8";
+elasticlunr.version = "0.8.9";
/*!
* elasticlunr.utils
* Copyright (C) 2016 Oliver Nightingale
@@ -749,7 +749,6 @@ elasticlunr.Index.prototype.addDoc = function (doc, emitEvent) {
elasticlunr.Index.prototype.removeDocByRef = function (docRef, emitEvent) {
if (!docRef) return;
if (this.documentStore.isDocStored() === false) {
- elasticlunr.utils.warn('remove doc by ref is not allowed, because currectly not storing documents in DocumentStore');
return;
}
@@ -917,6 +916,14 @@ elasticlunr.Index.prototype.search = function (query, userConfig) {
return results;
};
+/**
+ * search queryTokens in specified field.
+ *
+ * @param {Array} queryTokens The query tokens to query in this field.
+ * @param {String} field Field to query in.
+ * @param {elasticlunr.Configuration} config The user query config, JSON format.
+ * @return {Object}
+ */
/**
* search queryTokens in specified field.
*
@@ -928,7 +935,7 @@ elasticlunr.Index.prototype.search = function (query, userConfig) {
elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, config) {
var booleanType = config[fieldName].bool;
var expand = config[fieldName].expand;
- var scores = {};
+ var scores = null;
var docTokens = {};
queryTokens.forEach(function (token) {
@@ -936,11 +943,41 @@ elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, conf
if (expand == true) {
tokens = this.index[fieldName].expandToken(token);
}
-
+ // Consider every query token in turn. If expanded, each query token
+ // corresponds to a set of tokens, which is all tokens in the
+ // index matching the pattern queryToken* .
+ // For the set of tokens corresponding to a query token, find and score
+ // all matching documents. Store those scores in queryTokenScores,
+ // keyed by docRef.
+ // Then, depending on the value of booleanType, combine the scores
+ // for this query token with previous scores. If booleanType is OR,
+ // then merge the scores by summing into the accumulated total, adding
+ // new document scores are required (effectively a union operator).
+ // If booleanType is AND, accumulate scores only if the document
+ // has previously been scored by another query token (an intersection
+ // operation0.
+ // Furthermore, since when booleanType is AND, additional
+ // query tokens can't add new documents to the result set, use the
+ // current document set to limit the processing of each new query
+ // token for efficiency (i.e., incremental intersection).
+
+ var queryTokenScores = {};
tokens.forEach(function (key) {
var docs = this.index[fieldName].getDocs(key);
var idf = this.idf(key, fieldName);
-
+
+ if (scores && booleanType == 'AND') {
+ // special case, we can rule out documents that have been
+ // already been filtered out because they weren't scored
+ // by previous query token passes.
+ var filteredDocs = {};
+ for (var docRef in scores) {
+ if (docRef in docs) {
+ filteredDocs[docRef] = docs[docRef];
+ }
+ }
+ docs = filteredDocs;
+ }
// only record appeared token for retrieved documents for the
// original token, not for expaned token.
// beause for doing coordNorm for a retrieved document, coordNorm only care how many
@@ -968,24 +1005,58 @@ elasticlunr.Index.prototype.fieldSearch = function (queryTokens, fieldName, conf
var score = tf * idf * fieldLengthNorm * penality;
- if (docRef in scores) {
- scores[docRef] += score;
+ if (docRef in queryTokenScores) {
+ queryTokenScores[docRef] += score;
} else {
- scores[docRef] = score;
+ queryTokenScores[docRef] = score;
}
}
}, this);
+
+ scores = this.mergeScores(scores, queryTokenScores, booleanType);
}, this);
- if (booleanType == 'AND') {
- scores = this.intersect(scores, docTokens, queryTokens.length);
- }
-
scores = this.coordNorm(scores, docTokens, queryTokens.length);
-
return scores;
};
+/**
+ * Merge the scores from one set of tokens into an accumulated score table.
+ * Exact operation depends on the op parameter. If op is 'AND', then only the
+ * intersection of the two score lists is retained. Otherwise, the union of
+ * the two score lists is returned. For internal use only.
+ *
+ * @param {Object} bool accumulated scores. Should be null on first call.
+ * @param {String} scores new scores to merge into accumScores.
+ * @param {Object} op merge operation (should be 'AND' or 'OR').
+ *
+ */
+
+elasticlunr.Index.prototype.mergeScores = function (accumScores, scores, op) {
+ if (!accumScores) {
+ return scores;
+ }
+ if (op == 'AND') {
+ var intersection = {};
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ intersection[docRef] = accumScores[docRef] + scores[docRef];
+ }
+ }
+ return intersection;
+ } else {
+ for (var docRef in scores) {
+ if (docRef in accumScores) {
+ accumScores[docRef] += scores[docRef];
+ } else {
+ accumScores[docRef] = scores[docRef];
+ }
+ }
+ return accumScores;
+ }
+};
+
+
/**
* Record the occuring query token of retrieved doc specified by doc field.
* Only for inner user.
@@ -1005,28 +1076,6 @@ elasticlunr.Index.prototype.fieldSearchStats = function (docTokens, token, docs)
}
};
-/**
- * find documents contain all the query tokens.
- * only for inner use.
- *
- * @param {Object} results first results
- * @param {Object} docs field search results of a token
- * @param {Integer} n query token number
- * @return {Object}
- */
-elasticlunr.Index.prototype.intersect = function (scores, docTokens, n) {
- var res = {};
-
- for (var doc in scores) {
- if (!(doc in docTokens)) continue;
- if (docTokens[doc].length == n) {
- res[doc] = scores[doc];
- }
- }
-
- return res;
-};
-
/**
* coord norm the score of a doc.
* if a doc contain more query tokens, then the score will larger than the doc
diff --git a/release/elasticlunr.min.js b/release/elasticlunr.min.js
index 8ca97310..2b4a24dd 100644
--- a/release/elasticlunr.min.js
+++ b/release/elasticlunr.min.js
@@ -1,10 +1,10 @@
/**
* elasticlunr - http://weixsong.github.io
- * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
+ * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.9
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
* MIT Licensed
* @license
*/
-!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.8.8",t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!=n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)})}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e){if(this.documentStore.isDocStored()===!1)return void t.utils.warn("remove doc by ref is not allowed, because currectly not storing documents in DocumentStore");if(this.documentStore.hasDoc(e)){var n=this.documentStore.getDoc(e);this.removeDoc(n,!1)}}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];var i=null;null!=n&&(i=JSON.stringify(n));var o=new t.Configuration(i,this.getFields()).get(),r=this.pipeline.run(t.tokenizer(e)),s={};for(var u in o){var a=this.fieldSearch(r,u,o),l=o[u].boost;for(var c in a)a[c]=a[c]*l;for(var c in a)c in s?s[c]+=a[c]:s[c]=a[c]}var d=[];for(var c in s)d.push({ref:c,score:s[c]});return d.sort(function(e,t){return t.score-e.score}),d},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r={},s={};return e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e)),n.forEach(function(n){var i=this.index[t].getDocs(n),o=this.idf(n,t);n==e&&this.fieldSearchStats(s,n,i);for(var u in i){var a=this.index[t].getTermFrequency(n,u),l=this.documentStore.getFieldLength(u,t),c=1;0!=l&&(c=1/Math.sqrt(l));var d=1;n!=e&&(d=.15*(1-(n.length-e.length)/n.length));var f=a*o*c*d;u in r?r[u]+=f:r[u]=f}},this)},this),"AND"==i&&(r=this.intersect(r,s,e.length)),r=this.coordNorm(r,s,e.length)},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.intersect=function(e,t,n){var i={};for(var o in e)o in t&&t[o].length==n&&(i[o]=e[o]);return i},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,x=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),I=new RegExp("^"+o+i+"[^aeiouwxy]$"),S=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=x,a=w,l=I,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=S,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0},this.length=0},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t.length=e.length,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1,this.length+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root,length:this.length}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
\ No newline at end of file
+!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.8.9",t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!=n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)})}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];var i=null;null!=n&&(i=JSON.stringify(n));var o=new t.Configuration(i,this.getFields()).get(),r=this.pipeline.run(t.tokenizer(e)),s={};for(var u in o){var a=this.fieldSearch(r,u,o),l=o[u].boost;for(var c in a)a[c]=a[c]*l;for(var c in a)c in s?s[c]+=a[c]:s[c]=a[c]}var d=[];for(var c in s)d.push({ref:c,score:s[c]});return d.sort(function(e,t){return t.score-e.score}),d},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=null,s={};return e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var u={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(r&&"AND"==i){var l={};for(var c in r)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(s,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in u?u[c]+=v:u[c]=v}},this),r=this.mergeScores(r,u,i)},this),r=this.coordNorm(r,s,e.length)},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,x=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),S=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=x,a=w,l=S,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0},this.length=0},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t.length=e.length,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1,this.length+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root,length:this.length}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
\ No newline at end of file