From 89d463e19b8248b850a08a2b6e1ee69f563f947b Mon Sep 17 00:00:00 2001 From: Damir Shamanaev Date: Mon, 18 Mar 2024 17:34:27 +0300 Subject: [PATCH] cf --- sui/404.html | 238 +++ sui/ayu-highlight.css | 78 + sui/book.js | 697 ++++++++ sui/clipboard.min.js | 7 + sui/elasticlunr.min.js | 10 + sui/favicon.png | Bin 0 -> 5679 bytes sui/favicon.svg | 22 + sui/foreword.html | 253 +++ sui/highlight.css | 191 +++ sui/highlight.js | 610 +++++++ sui/history.html | 262 +++ sui/index.html | 247 +++ sui/introduction.html | 247 +++ sui/mark.min.js | 7 + sui/print.html | 3432 ++++++++++++++++++++++++++++++++++++++++ sui/searcher.js | 483 ++++++ sui/searchindex.js | 1 + sui/searchindex.json | 1 + sui/tomorrow-night.css | 102 ++ 19 files changed, 6888 insertions(+) create mode 100644 sui/404.html create mode 100644 sui/ayu-highlight.css create mode 100644 sui/book.js create mode 100644 sui/clipboard.min.js create mode 100644 sui/elasticlunr.min.js create mode 100644 sui/favicon.png create mode 100644 sui/favicon.svg create mode 100644 sui/foreword.html create mode 100644 sui/highlight.css create mode 100644 sui/highlight.js create mode 100644 sui/history.html create mode 100644 sui/index.html create mode 100644 sui/introduction.html create mode 100644 sui/mark.min.js create mode 100644 sui/print.html create mode 100644 sui/searcher.js create mode 100644 sui/searchindex.js create mode 100644 sui/searchindex.json create mode 100644 sui/tomorrow-night.css diff --git a/sui/404.html b/sui/404.html new file mode 100644 index 00000000..6b5bf87c --- /dev/null +++ b/sui/404.html @@ -0,0 +1,238 @@ + + + + + + Page not found - The Move Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Document not found (404)

+

This URL is invalid, sorry. Please use the navigation bar or search to continue.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/sui/ayu-highlight.css b/sui/ayu-highlight.css new file mode 100644 index 00000000..32c94322 --- /dev/null +++ b/sui/ayu-highlight.css @@ -0,0 +1,78 @@ +/* +Based off of the Ayu theme +Original by Dempfi (https://github.com/dempfi/ayu) +*/ + +.hljs { + display: block; + overflow-x: auto; + background: #191f26; + color: #e6e1cf; +} + +.hljs-comment, +.hljs-quote { + color: #5c6773; + font-style: italic; +} + +.hljs-variable, +.hljs-template-variable, +.hljs-attribute, +.hljs-attr, +.hljs-regexp, +.hljs-link, +.hljs-selector-id, +.hljs-selector-class { + color: #ff7733; +} + +.hljs-number, +.hljs-meta, +.hljs-builtin-name, +.hljs-literal, +.hljs-type, +.hljs-params { + color: #ffee99; +} + +.hljs-string, +.hljs-bullet { + color: #b8cc52; +} + +.hljs-title, +.hljs-built_in, +.hljs-section { + color: #ffb454; +} + +.hljs-keyword, +.hljs-selector-tag, +.hljs-symbol { + color: #ff7733; +} + +.hljs-name { + color: #36a3d9; +} + +.hljs-tag { + color: #00568d; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-addition { + color: #91b362; +} + +.hljs-deletion { + color: #d96c75; +} diff --git a/sui/book.js b/sui/book.js new file mode 100644 index 00000000..aa12e7ec --- /dev/null +++ b/sui/book.js @@ -0,0 +1,697 @@ +"use strict"; + +// Fix back button cache problem +window.onunload = function () { }; + +// Global variable, shared between modules +function playground_text(playground, hidden = true) { + let code_block = playground.querySelector("code"); + + if (window.ace && code_block.classList.contains("editable")) { + let editor = window.ace.edit(code_block); + return editor.getValue(); + } else if (hidden) { + return code_block.textContent; + } else { + return code_block.innerText; + } +} + +(function codeSnippets() { + function fetch_with_timeout(url, options, timeout = 6000) { + return Promise.race([ + fetch(url, options), + new Promise((_, reject) => setTimeout(() => reject(new Error('timeout')), timeout)) + ]); + } + + var playgrounds = Array.from(document.querySelectorAll(".playground")); + if (playgrounds.length > 0) { + fetch_with_timeout("https://play.rust-lang.org/meta/crates", { + headers: { + 'Content-Type': "application/json", + }, + method: 'POST', + mode: 'cors', + }) + .then(response => response.json()) + .then(response => { + // get list of crates available in the rust playground + let playground_crates = response.crates.map(item => item["id"]); + playgrounds.forEach(block => handle_crate_list_update(block, playground_crates)); + }); + } + + function handle_crate_list_update(playground_block, playground_crates) { + // update the play buttons after receiving the response + update_play_button(playground_block, playground_crates); + + // and install on change listener to dynamically update ACE editors + if (window.ace) { + let code_block = playground_block.querySelector("code"); + if (code_block.classList.contains("editable")) { + let editor = window.ace.edit(code_block); + editor.addEventListener("change", function (e) { + update_play_button(playground_block, playground_crates); + }); + // add Ctrl-Enter command to execute rust code + editor.commands.addCommand({ + name: "run", + bindKey: { + win: "Ctrl-Enter", + mac: "Ctrl-Enter" + }, + exec: _editor => run_rust_code(playground_block) + }); + } + } + } + + // updates the visibility of play button based on `no_run` class and + // used crates vs ones available on https://play.rust-lang.org + function update_play_button(pre_block, playground_crates) { + var play_button = pre_block.querySelector(".play-button"); + + // skip if code is `no_run` + if (pre_block.querySelector('code').classList.contains("no_run")) { + play_button.classList.add("hidden"); + return; + } + + // get list of `extern crate`'s from snippet + var txt = playground_text(pre_block); + var re = /extern\s+crate\s+([a-zA-Z_0-9]+)\s*;/g; + var snippet_crates = []; + var item; + while (item = re.exec(txt)) { + snippet_crates.push(item[1]); + } + + // check if all used crates are available on play.rust-lang.org + var all_available = snippet_crates.every(function (elem) { + return playground_crates.indexOf(elem) > -1; + }); + + if (all_available) { + play_button.classList.remove("hidden"); + } else { + play_button.classList.add("hidden"); + } + } + + function run_rust_code(code_block) { + var result_block = code_block.querySelector(".result"); + if (!result_block) { + result_block = document.createElement('code'); + result_block.className = 'result hljs language-bash'; + + code_block.append(result_block); + } + + let text = playground_text(code_block); + let classes = code_block.querySelector('code').classList; + let edition = "2015"; + if(classes.contains("edition2018")) { + edition = "2018"; + } else if(classes.contains("edition2021")) { + edition = "2021"; + } + var params = { + version: "stable", + optimize: "0", + code: text, + edition: edition + }; + + if (text.indexOf("#![feature") !== -1) { + params.version = "nightly"; + } + + result_block.innerText = "Running..."; + + fetch_with_timeout("https://play.rust-lang.org/evaluate.json", { + headers: { + 'Content-Type': "application/json", + }, + method: 'POST', + mode: 'cors', + body: JSON.stringify(params) + }) + .then(response => response.json()) + .then(response => { + if (response.result.trim() === '') { + result_block.innerText = "No output"; + result_block.classList.add("result-no-output"); + } else { + result_block.innerText = response.result; + result_block.classList.remove("result-no-output"); + } + }) + .catch(error => result_block.innerText = "Playground Communication: " + error.message); + } + + // Syntax highlighting Configuration + hljs.configure({ + tabReplace: ' ', // 4 spaces + languages: [], // Languages used for auto-detection + }); + + let code_nodes = Array + .from(document.querySelectorAll('code')) + // Don't highlight `inline code` blocks in headers. + .filter(function (node) {return !node.parentElement.classList.contains("header"); }); + + if (window.ace) { + // language-rust class needs to be removed for editable + // blocks or highlightjs will capture events + code_nodes + .filter(function (node) {return node.classList.contains("editable"); }) + .forEach(function (block) { block.classList.remove('language-rust'); }); + + code_nodes + .filter(function (node) {return !node.classList.contains("editable"); }) + .forEach(function (block) { hljs.highlightBlock(block); }); + } else { + code_nodes.forEach(function (block) { hljs.highlightBlock(block); }); + } + + // Adding the hljs class gives code blocks the color css + // even if highlighting doesn't apply + code_nodes.forEach(function (block) { block.classList.add('hljs'); }); + + Array.from(document.querySelectorAll("code.hljs")).forEach(function (block) { + + var lines = Array.from(block.querySelectorAll('.boring')); + // If no lines were hidden, return + if (!lines.length) { return; } + block.classList.add("hide-boring"); + + var buttons = document.createElement('div'); + buttons.className = 'buttons'; + buttons.innerHTML = ""; + + // add expand button + var pre_block = block.parentNode; + pre_block.insertBefore(buttons, pre_block.firstChild); + + pre_block.querySelector('.buttons').addEventListener('click', function (e) { + if (e.target.classList.contains('fa-eye')) { + e.target.classList.remove('fa-eye'); + e.target.classList.add('fa-eye-slash'); + e.target.title = 'Hide lines'; + e.target.setAttribute('aria-label', e.target.title); + + block.classList.remove('hide-boring'); + } else if (e.target.classList.contains('fa-eye-slash')) { + e.target.classList.remove('fa-eye-slash'); + e.target.classList.add('fa-eye'); + e.target.title = 'Show hidden lines'; + e.target.setAttribute('aria-label', e.target.title); + + block.classList.add('hide-boring'); + } + }); + }); + + if (window.playground_copyable) { + Array.from(document.querySelectorAll('pre code')).forEach(function (block) { + var pre_block = block.parentNode; + if (!pre_block.classList.contains('playground')) { + var buttons = pre_block.querySelector(".buttons"); + if (!buttons) { + buttons = document.createElement('div'); + buttons.className = 'buttons'; + pre_block.insertBefore(buttons, pre_block.firstChild); + } + + var clipButton = document.createElement('button'); + clipButton.className = 'fa fa-copy clip-button'; + clipButton.title = 'Copy to clipboard'; + clipButton.setAttribute('aria-label', clipButton.title); + clipButton.innerHTML = ''; + + buttons.insertBefore(clipButton, buttons.firstChild); + } + }); + } + + // Process playground code blocks + Array.from(document.querySelectorAll(".playground")).forEach(function (pre_block) { + // Add play button + var buttons = pre_block.querySelector(".buttons"); + if (!buttons) { + buttons = document.createElement('div'); + buttons.className = 'buttons'; + pre_block.insertBefore(buttons, pre_block.firstChild); + } + + var runCodeButton = document.createElement('button'); + runCodeButton.className = 'fa fa-play play-button'; + runCodeButton.hidden = true; + runCodeButton.title = 'Run this code'; + runCodeButton.setAttribute('aria-label', runCodeButton.title); + + buttons.insertBefore(runCodeButton, buttons.firstChild); + runCodeButton.addEventListener('click', function (e) { + run_rust_code(pre_block); + }); + + if (window.playground_copyable) { + var copyCodeClipboardButton = document.createElement('button'); + copyCodeClipboardButton.className = 'fa fa-copy clip-button'; + copyCodeClipboardButton.innerHTML = ''; + copyCodeClipboardButton.title = 'Copy to clipboard'; + copyCodeClipboardButton.setAttribute('aria-label', copyCodeClipboardButton.title); + + buttons.insertBefore(copyCodeClipboardButton, buttons.firstChild); + } + + let code_block = pre_block.querySelector("code"); + if (window.ace && code_block.classList.contains("editable")) { + var undoChangesButton = document.createElement('button'); + undoChangesButton.className = 'fa fa-history reset-button'; + undoChangesButton.title = 'Undo changes'; + undoChangesButton.setAttribute('aria-label', undoChangesButton.title); + + buttons.insertBefore(undoChangesButton, buttons.firstChild); + + undoChangesButton.addEventListener('click', function () { + let editor = window.ace.edit(code_block); + editor.setValue(editor.originalCode); + editor.clearSelection(); + }); + } + }); +})(); + +(function themes() { + var html = document.querySelector('html'); + var themeToggleButton = document.getElementById('theme-toggle'); + var themePopup = document.getElementById('theme-list'); + var themeColorMetaTag = document.querySelector('meta[name="theme-color"]'); + var stylesheets = { + ayuHighlight: document.querySelector("[href$='ayu-highlight.css']"), + tomorrowNight: document.querySelector("[href$='tomorrow-night.css']"), + highlight: document.querySelector("[href$='highlight.css']"), + }; + + function showThemes() { + themePopup.style.display = 'block'; + themeToggleButton.setAttribute('aria-expanded', true); + themePopup.querySelector("button#" + get_theme()).focus(); + } + + function updateThemeSelected() { + themePopup.querySelectorAll('.theme-selected').forEach(function (el) { + el.classList.remove('theme-selected'); + }); + themePopup.querySelector("button#" + get_theme()).classList.add('theme-selected'); + } + + function hideThemes() { + themePopup.style.display = 'none'; + themeToggleButton.setAttribute('aria-expanded', false); + themeToggleButton.focus(); + } + + function get_theme() { + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch (e) { } + if (theme === null || theme === undefined) { + return default_theme; + } else { + return theme; + } + } + + function set_theme(theme, store = true) { + let ace_theme; + + if (theme == 'coal' || theme == 'navy') { + stylesheets.ayuHighlight.disabled = true; + stylesheets.tomorrowNight.disabled = false; + stylesheets.highlight.disabled = true; + + ace_theme = "ace/theme/tomorrow_night"; + } else if (theme == 'ayu') { + stylesheets.ayuHighlight.disabled = false; + stylesheets.tomorrowNight.disabled = true; + stylesheets.highlight.disabled = true; + ace_theme = "ace/theme/tomorrow_night"; + } else { + stylesheets.ayuHighlight.disabled = true; + stylesheets.tomorrowNight.disabled = true; + stylesheets.highlight.disabled = false; + ace_theme = "ace/theme/dawn"; + } + + setTimeout(function () { + themeColorMetaTag.content = getComputedStyle(document.documentElement).backgroundColor; + }, 1); + + if (window.ace && window.editors) { + window.editors.forEach(function (editor) { + editor.setTheme(ace_theme); + }); + } + + var previousTheme = get_theme(); + + if (store) { + try { localStorage.setItem('mdbook-theme', theme); } catch (e) { } + } + + html.classList.remove(previousTheme); + html.classList.add(theme); + updateThemeSelected(); + } + + // Set theme + var theme = get_theme(); + + set_theme(theme, false); + + themeToggleButton.addEventListener('click', function () { + if (themePopup.style.display === 'block') { + hideThemes(); + } else { + showThemes(); + } + }); + + themePopup.addEventListener('click', function (e) { + var theme; + if (e.target.className === "theme") { + theme = e.target.id; + } else if (e.target.parentElement.className === "theme") { + theme = e.target.parentElement.id; + } else { + return; + } + set_theme(theme); + }); + + themePopup.addEventListener('focusout', function(e) { + // e.relatedTarget is null in Safari and Firefox on macOS (see workaround below) + if (!!e.relatedTarget && !themeToggleButton.contains(e.relatedTarget) && !themePopup.contains(e.relatedTarget)) { + hideThemes(); + } + }); + + // Should not be needed, but it works around an issue on macOS & iOS: https://github.com/rust-lang/mdBook/issues/628 + document.addEventListener('click', function(e) { + if (themePopup.style.display === 'block' && !themeToggleButton.contains(e.target) && !themePopup.contains(e.target)) { + hideThemes(); + } + }); + + document.addEventListener('keydown', function (e) { + if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) { return; } + if (!themePopup.contains(e.target)) { return; } + + switch (e.key) { + case 'Escape': + e.preventDefault(); + hideThemes(); + break; + case 'ArrowUp': + e.preventDefault(); + var li = document.activeElement.parentElement; + if (li && li.previousElementSibling) { + li.previousElementSibling.querySelector('button').focus(); + } + break; + case 'ArrowDown': + e.preventDefault(); + var li = document.activeElement.parentElement; + if (li && li.nextElementSibling) { + li.nextElementSibling.querySelector('button').focus(); + } + break; + case 'Home': + e.preventDefault(); + themePopup.querySelector('li:first-child button').focus(); + break; + case 'End': + e.preventDefault(); + themePopup.querySelector('li:last-child button').focus(); + break; + } + }); +})(); + +(function sidebar() { + var body = document.querySelector("body"); + var sidebar = document.getElementById("sidebar"); + var sidebarLinks = document.querySelectorAll('#sidebar a'); + var sidebarToggleButton = document.getElementById("sidebar-toggle"); + var sidebarResizeHandle = document.getElementById("sidebar-resize-handle"); + var firstContact = null; + + function showSidebar() { + body.classList.remove('sidebar-hidden') + body.classList.add('sidebar-visible'); + Array.from(sidebarLinks).forEach(function (link) { + link.setAttribute('tabIndex', 0); + }); + sidebarToggleButton.setAttribute('aria-expanded', true); + sidebar.setAttribute('aria-hidden', false); + try { localStorage.setItem('mdbook-sidebar', 'visible'); } catch (e) { } + } + + + var sidebarAnchorToggles = document.querySelectorAll('#sidebar a.toggle'); + + function toggleSection(ev) { + ev.currentTarget.parentElement.classList.toggle('expanded'); + } + + Array.from(sidebarAnchorToggles).forEach(function (el) { + el.addEventListener('click', toggleSection); + }); + + function hideSidebar() { + body.classList.remove('sidebar-visible') + body.classList.add('sidebar-hidden'); + Array.from(sidebarLinks).forEach(function (link) { + link.setAttribute('tabIndex', -1); + }); + sidebarToggleButton.setAttribute('aria-expanded', false); + sidebar.setAttribute('aria-hidden', true); + try { localStorage.setItem('mdbook-sidebar', 'hidden'); } catch (e) { } + } + + // Toggle sidebar + sidebarToggleButton.addEventListener('click', function sidebarToggle() { + if (body.classList.contains("sidebar-hidden")) { + var current_width = parseInt( + document.documentElement.style.getPropertyValue('--sidebar-width'), 10); + if (current_width < 150) { + document.documentElement.style.setProperty('--sidebar-width', '150px'); + } + showSidebar(); + } else if (body.classList.contains("sidebar-visible")) { + hideSidebar(); + } else { + if (getComputedStyle(sidebar)['transform'] === 'none') { + hideSidebar(); + } else { + showSidebar(); + } + } + }); + + sidebarResizeHandle.addEventListener('mousedown', initResize, false); + + function initResize(e) { + window.addEventListener('mousemove', resize, false); + window.addEventListener('mouseup', stopResize, false); + body.classList.add('sidebar-resizing'); + } + function resize(e) { + var pos = (e.clientX - sidebar.offsetLeft); + if (pos < 20) { + hideSidebar(); + } else { + if (body.classList.contains("sidebar-hidden")) { + showSidebar(); + } + pos = Math.min(pos, window.innerWidth - 100); + document.documentElement.style.setProperty('--sidebar-width', pos + 'px'); + } + } + //on mouseup remove windows functions mousemove & mouseup + function stopResize(e) { + body.classList.remove('sidebar-resizing'); + window.removeEventListener('mousemove', resize, false); + window.removeEventListener('mouseup', stopResize, false); + } + + document.addEventListener('touchstart', function (e) { + firstContact = { + x: e.touches[0].clientX, + time: Date.now() + }; + }, { passive: true }); + + document.addEventListener('touchmove', function (e) { + if (!firstContact) + return; + + var curX = e.touches[0].clientX; + var xDiff = curX - firstContact.x, + tDiff = Date.now() - firstContact.time; + + if (tDiff < 250 && Math.abs(xDiff) >= 150) { + if (xDiff >= 0 && firstContact.x < Math.min(document.body.clientWidth * 0.25, 300)) + showSidebar(); + else if (xDiff < 0 && curX < 300) + hideSidebar(); + + firstContact = null; + } + }, { passive: true }); +})(); + +(function chapterNavigation() { + document.addEventListener('keydown', function (e) { + if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) { return; } + if (window.search && window.search.hasFocus()) { return; } + var html = document.querySelector('html'); + + function next() { + var nextButton = document.querySelector('.nav-chapters.next'); + if (nextButton) { + window.location.href = nextButton.href; + } + } + function prev() { + var previousButton = document.querySelector('.nav-chapters.previous'); + if (previousButton) { + window.location.href = previousButton.href; + } + } + switch (e.key) { + case 'ArrowRight': + e.preventDefault(); + if (html.dir == 'rtl') { + prev(); + } else { + next(); + } + break; + case 'ArrowLeft': + e.preventDefault(); + if (html.dir == 'rtl') { + next(); + } else { + prev(); + } + break; + } + }); +})(); + +(function clipboard() { + var clipButtons = document.querySelectorAll('.clip-button'); + + function hideTooltip(elem) { + elem.firstChild.innerText = ""; + elem.className = 'fa fa-copy clip-button'; + } + + function showTooltip(elem, msg) { + elem.firstChild.innerText = msg; + elem.className = 'fa fa-copy tooltipped'; + } + + var clipboardSnippets = new ClipboardJS('.clip-button', { + text: function (trigger) { + hideTooltip(trigger); + let playground = trigger.closest("pre"); + return playground_text(playground, false); + } + }); + + Array.from(clipButtons).forEach(function (clipButton) { + clipButton.addEventListener('mouseout', function (e) { + hideTooltip(e.currentTarget); + }); + }); + + clipboardSnippets.on('success', function (e) { + e.clearSelection(); + showTooltip(e.trigger, "Copied!"); + }); + + clipboardSnippets.on('error', function (e) { + showTooltip(e.trigger, "Clipboard error!"); + }); +})(); + +(function scrollToTop () { + var menuTitle = document.querySelector('.menu-title'); + + menuTitle.addEventListener('click', function () { + document.scrollingElement.scrollTo({ top: 0, behavior: 'smooth' }); + }); +})(); + +(function controllMenu() { + var menu = document.getElementById('menu-bar'); + + (function controllPosition() { + var scrollTop = document.scrollingElement.scrollTop; + var prevScrollTop = scrollTop; + var minMenuY = -menu.clientHeight - 50; + // When the script loads, the page can be at any scroll (e.g. if you reforesh it). + menu.style.top = scrollTop + 'px'; + // Same as parseInt(menu.style.top.slice(0, -2), but faster + var topCache = menu.style.top.slice(0, -2); + menu.classList.remove('sticky'); + var stickyCache = false; // Same as menu.classList.contains('sticky'), but faster + document.addEventListener('scroll', function () { + scrollTop = Math.max(document.scrollingElement.scrollTop, 0); + // `null` means that it doesn't need to be updated + var nextSticky = null; + var nextTop = null; + var scrollDown = scrollTop > prevScrollTop; + var menuPosAbsoluteY = topCache - scrollTop; + if (scrollDown) { + nextSticky = false; + if (menuPosAbsoluteY > 0) { + nextTop = prevScrollTop; + } + } else { + if (menuPosAbsoluteY > 0) { + nextSticky = true; + } else if (menuPosAbsoluteY < minMenuY) { + nextTop = prevScrollTop + minMenuY; + } + } + if (nextSticky === true && stickyCache === false) { + menu.classList.add('sticky'); + stickyCache = true; + } else if (nextSticky === false && stickyCache === true) { + menu.classList.remove('sticky'); + stickyCache = false; + } + if (nextTop !== null) { + menu.style.top = nextTop + 'px'; + topCache = nextTop; + } + prevScrollTop = scrollTop; + }, { passive: true }); + })(); + (function controllBorder() { + function updateBorder() { + if (menu.offsetTop === 0) { + menu.classList.remove('bordered'); + } else { + menu.classList.add('bordered'); + } + } + updateBorder(); + document.addEventListener('scroll', updateBorder, { passive: true }); + })(); +})(); diff --git a/sui/clipboard.min.js b/sui/clipboard.min.js new file mode 100644 index 00000000..02c549e3 --- /dev/null +++ b/sui/clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v2.0.4 + * https://zenorocha.github.io/clipboard.js + * + * Licensed MIT © Zeno Rocha + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return function(n){var o={};function r(t){if(o[t])return o[t].exports;var e=o[t]={i:t,l:!1,exports:{}};return n[t].call(e.exports,e,e.exports,r),e.l=!0,e.exports}return r.m=n,r.c=o,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=0)}([function(t,e,n){"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},i=function(){function o(t,e){for(var n=0;no;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[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&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}},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||0===s.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={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o54LX99&YDJBr_J}>&8nH)>5R@84MNz9ITCG*P zX0<44?^;#6_4>Wr#V&J8m1AkprJ&CCG60hiIs8wiCL z#DZiT`@6@!`1|?!W$KnZXnX^2+=d_hxD?}hboJ~h?Z3p^&%c2CYBPHWm3|C7?4S)S z<=8>rwHV}maohw}kN+bB?OodAZp_b^;z<(fft-=472pgWXh~>V9TV@+f@jN9eBDb8 z7XHu2>hath5j`z|b;Ad2K;UB)cLZ_o3=_`cn$3dBvrK8=_c@&)Co@h@Pv4py{4-VG zZ5jW&6>DrRtr<|%Fe?ncBXZ&-%N-M8DAk#!lh2}pj>hTyRLw-Y@j^l@;vBq_lsS75 z)qdTT8D@D}Dii_QlsRP&RSJqu0GI`03S)>yR&aVKQRp}j!xeZZtz;w73{iCK&bLCE z+>)g!H+&K+40SZ~GUg@L=NTM^3f#ws*h)fa+1^TLfkKX0cOC&h^&$#734jCMlkosy zmd-3tD>m+NOhmzi8_WaR-6=gM$YT}*bmNV`pA@5OxA3<=Q1`U?J!Hn_;zv{eIRg zOFf{KJb(ijx*?h43sdXmvg??24dL#E3BQSwKa7K16Vfe7C{X5}#}S=h395Gr8tI#4 zrrXi%UzXQ+xVq%dG=XgJJ;R{?RK?)mMzlW`d>wIS2I$CY#jkO8)qKV{zRyiyxA_TK zpQ2lmzVdp}WSg;LaU?Luyp_y8A4v1Y8KL-9=|}S1(8e%kW&{6^S&9Y3fBcboDg50- z`Qj6Q;g!Y|dsX7SLNWgRDu$7&lu2dOtHL?%0QHIW&DjDT7KgaL<8ddx_`;gAe(ws7 z-bYcVLmTf4KO~Ht8r;G~ib2Ktq~*M&J~r~gyFUF|ZM9V2>rcS^ptfS351 zr^~D87q>{pza=Os8TRei`It?ZT)3}ex4)PPl1_Fehm)dZIwaonoF|^0CiXot?0#U$ zd5Adv*yoKC^y4PFMxCOA8ulM`^RI8#3wBzVU{j!kLT|MECdCNN=aDDAG_rx=3hu6$ zi1)J%CH^R5KRB~a|6bd=WO0y&cZNbYs->zXoc}LP!BQ$^+m^Jzm!h)A`YihVcA;wi z9)s{xe;%b;ebpeVKBKl|>mpk5joFL|HXZ1lp&kaPeVQf5Uxs>C2@2177dFce>so`9xUBtGlx&g~%@+&~Zm z@e1S@Iyo>1YR`3y$<2*6aqWJ=_`%-{&?=mt1OC;1V`%O z&^8C?*X0=-A0g8~BgayHpBjPJ@y^*uIMl0q)cyV>`%Di24jwgadCc9rVl~j*gM{0T zA6q8Os&y!=+Ev&iHf)^A4kIzqR`#Iipif;;qX(qHz*h@6-1BOEG}}%)RqL(K`(wU( z#l|@c@~WaG&qonFH#Xmn)&X{HF^~K${Bvu7O%P{j@wSZ%`@#=Gh|SEJU2tFr+F2(T zcrL`|{;d7=CtrnsD!a=V4*u3FAu6u7vt-@Y{H*ryGs3Cc9o>ee1e~Jw37ZeVJZ4z9Zd6pnbZ!bP z%|#tEI7|PX`)tc=y8Z|1hx2t6>5t@BxO(N2%fGmGJnc@n8R|tJtE&99CWQ1pUr=7m z=ow1W8xJZMjpKK|FCE81i=Fy;W9lwx05p1+WRbNnY-#w;JUJsx{?}3MPQIJPwg8FC z$d0DFq^mT&;v-*W#(x z-c4x23zgd^)`AE}lH}(uS|;!)9oKu(VJvy5+iI=m4;#juwwYH`YjzcVBs$$xA10z{y@6Kl86p_m*8kBhNqam&f=36^8dj+ARQYpWvJvTX|g z6o*}_2y=Dr5qcHHpAjp@1eJ}kWJrV&674HNfzCflqP!Gqm`kE|ELr1UFHE)F`9|Ss zx2IBLY|M1uvna)hF~d3Y4C8=FTFAb_=$R*!c~eBm+a6pSE2tVx&hb#-g2Iss`rIP9_fcL1t-Z ze6D|FAb+TAsvDKg@}y{4addJZvYIdHzQ+YmAmLFHfwa~I)|0&tqQdDUC|||%0(39F zfrg&C3I-_NCGCKWw-j==dqor;ka|kgY1|V8>5>2cM1fF{-sOt5W z{Eh1on(hz1l~!@<9-@1gIz2oHJN>S_ZI)7f?TYFm^wG|E2GjS5!Z{C)$Sle>#18MQ z+_t%oPijKw)uHoTsN1XbG#jln9|uWn(rFrn_Y9VzSPR~7BfE`dQj5*MsiH_Wm%(IU zL%FUDj8?#}%!4pOzck@IR)0I2y=`d!Akki`Y{Rph{`Z<$Q9l5D`&wNj=2dK%*$L&54NIbgN=U^o3BtI_6evC!BD z?bbZ-D}OVqX8fpVwk1DYyRv0t@1{Af5eQLy5|}z(aIFfuA8}m&bDBj`;>jIw1FqaG z^KI)+KtMzFp~vf+&cac7Pye)I2EhJD{x8BevfmnOP;fIv^3W@0B>%Qqf4GR*Ih%BOR=&zaPoU8z6w_x9PvK;)>#KEj~a~X4Dv!a{ee` zV0)d>M46CLep<5_RqAb4Qhc(b@g11dkpj`sArRP;h5S3=yfoYm2#;J-7(-RiP#?O4 zbg%gIx9;@IzmAoe*-9Tp&Fr)}HjzNjX#jdsuOIPsjm zo0I99MoF-G!yPA%Jck#tBV;caGv1YQib1!l)c=`76%XAmV4l_hp&&KyG z+kU33`F{q&hQZUx)ra{H*aH|uHy1nKoa9DgfupniH??CgW;L(#*9<0TG1B*X;g!R{ zFkH^9eJxU(@~Oz&r^j1cRBemNAPBJXB=4dpWHW#Z*}-dm^GW{Tp}so&?J2uPv)Zy- zUU4V=bP|T3Ri0f|H%gWtGoE=~eV8}1{yQ`|UC0BiQ>(J>Gl15KrR#X{`anyV8~dJX zC92B+V0Bj%N%1ue!<7pfA0|@W{pg^<{WUmSHu88rE6c@lUnP^xxiTf zzi!h%l#Pp{Ck!RIekpB9SokK)OzogpDOA;(==E2}jNw-j##lySot{-1`eA7#Pc?s# zqi3M@C#OxG1*@D~F^q&tY_E(1BRt;fU3#WL8C>z<`Ku#+xLJ84aDSCL0#7bq!jxpW zz)TQM(kjd>4BbL39ZDi|FZMa}2ffP<(RQI(XsNOOK%Ul6gN~2aBeb=)UlE#@TU_S` zaL&ArLdNGRwX!nhY9htiE{^Mx`p{va8nHj|FEJ;2#sE0-{-66 z7TG`O9aPjU&;AO~ut})k^7^tTpqejGV`xz3fh#)c3iA=g)}|tQuN5Xj3;}t>rK_{% zwr?Jfuk9*m<@9EOq? zC~SHvu*vE3q!9)BVQ1R=;_Gb$R0Du`sizUw%^Hr^rT$~LRgzDi`&$!uY(sm){^0({ zpBD`ekM$vvNi88E2IJXs9~@(({8wec=QErQ%t}i6d|s_XCJ{5;SmMN*LF$N>Fxdj2 z&znWpNwbJ$Zw>vfu5fEMR|sp6DuBGq_%hq2G;=Yj!|p#isk8WbuD{;;hBQltyj*FM zr0$<5k zwWt5ZJ)0rzW4?BpPF4Pv(B4+W-a9z^dR+Hb=8~cZ~q&eZkbYsEQnGId%v2raT11iS>D&<#Db z9dk%6P$rs>A0G{<8&!O=5>`V<`PlAqV;d+0iVpVFBdZdv$xwbB}zcmDY!XN#! z)oU{{s`)@SGxFyyUzIHIF#oF-C zdVsun511^=T35BSjB%RVCO)R#LTF#{keUnxsJBknytTSZ_HgCS#!#}cFUoNZn(BGm5(Vf`; zn!+nt)Gd^b{er3mjVMY&Qn|?&difi0fdIfUIQC$&qYI2ZqBYi@7p*79kpYtPU`P~B z`r7e!bdsPQGM)sI(m8po`hcrz zlRf$`Q@+iO2-l!suX2WAw1p}Q5Gg$&uj139v*-bjdgqdhTfzWDI#QWlLsT<(`@$x{ zrq25LV=RQuVUe=1xyOg$4y(^jkfr~dpQ=B86}$vKBhPPo;dYUizZtlKBT}DhJqvl5 z*wd*uB=jIstOa1AN5G`x=JftS#ctecT_jpSA!nF{`!bL7B zr7;#NX8gSM&>Zr)hSeg3HAf!6p&eUTSXiFB#^NfZxClok&YLkTsW3RqM=;_EDP^Mn zw&J(8wt#LTOt!oj(X~wlr$x|XVMKSXa(etHtMC^O&3p*~E1vL&U3WiZNjbxB zPRi5++1NZ6OC7~7d5P@WWxsrV7d3U`(#+}c>hrXlw8?VFLCJo70{9YyYBIY7$=e4n z_FTPA74839$pPh*_!lO@h^YmMhrLW(-co+j%%Umn^vlz|BFd@o!JEUfej6D`tYh88 z!xOp88&kL_omR|hhQy%VV570%z31uE7nsb&=9lx0f~QVs}&QZli(7C+4WInF(c~1G?Ay}@=Js6#Ta&S*M8tzG+=nyvS4C!u0HG7 zKX=aXY38nuJz&^FN?mu3@F1#E%R_S9N%lmfUjlL$z@X6N1%x{Wxw=n$=IRLiRFDx) zC-B0x)S*v13dEu{-17fX(EmoH?UHAPVV9_q-f;^!OLHAu5MU}DO#@UF!Y1N>0Q+#1 A;{X5v literal 0 HcmV?d00001 diff --git a/sui/favicon.svg b/sui/favicon.svg new file mode 100644 index 00000000..90e0ea58 --- /dev/null +++ b/sui/favicon.svg @@ -0,0 +1,22 @@ + + + + + diff --git a/sui/foreword.html b/sui/foreword.html new file mode 100644 index 00000000..41579957 --- /dev/null +++ b/sui/foreword.html @@ -0,0 +1,253 @@ + + + + + + Foreword - The Move Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Foreword

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/sui/highlight.css b/sui/highlight.css new file mode 100644 index 00000000..4431cad6 --- /dev/null +++ b/sui/highlight.css @@ -0,0 +1,191 @@ +/* + * An increased contrast highlighting scheme loosely based on the + * "Base16 Atelier Dune Light" theme by Bram de Haan + * (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) + * Original Base16 color scheme by Chris Kempson + * (https://github.com/chriskempson/base16) + */ + +/* Comment */ +.hljs-comment, +.hljs-quote { + color: #A0A1A7; + font-style: italic; +} + +/* Red */ +.hljs-variable, +.hljs-template-variable, +.hljs-attribute, +.hljs-tag, +.hljs-name, +.hljs-regexp, +.hljs-link, +.hljs-name, +.hljs-selector-id, +.hljs-selector-class { + color: #d70025; +} + +/* Orange */ +.hljs-number, +.hljs-meta, +.hljs-builtin-name, +.hljs-literal, +.hljs-type, +.hljs-params { + color: #C18401; +} + +/* Green */ +.hljs-string, +.hljs-symbol, +.hljs-bullet { + color: #008200; +} + +/* Blue */ +.hljs-title, +.hljs-built_in, +.hljs-section { + color: #4078F2; +} + +/* Purple */ +.hljs-keyword, +.hljs-selector-tag { + color: #A626A4; +} + +.hljs { + display: block; + overflow-x: auto; + background: #fBfBfB; + color: #000; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-addition { + color: #22863a; + background-color: #f0fff4; +} + +.hljs-deletion { + color: #b31d28; + background-color: #ffeef0; +} + +.hljs.language-undefined { + font-weight: 400; + line-height: inherit; + font-size: inherit; +} + + + +/* Atom One Light by Daniel Gamage */ + + +pre code.hljs { + display: block; + overflow-x: auto; + padding: 1em +} +code.hljs { + padding: 3px 5px +} +/* + +Atom One Light by Daniel Gamage +Original One Light Syntax theme from https://github.com/atom/one-light-syntax + +base: #fafafa +mono-1: #383a42 +mono-2: #686b77 +mono-3: #a0a1a7 +hue-1: #0184bb +hue-2: #4078f2 +hue-3: #a626a4 +hue-4: #50a14f +hue-5: #e45649 +hue-5-2: #c91243 +hue-6: #986801 +hue-6-2: #c18401 + +*/ +.hljs { + color: #383a42; + background: #fafafa +} +.hljs-comment, +.hljs-quote { + color: #a0a1a7; + font-style: italic +} +.hljs-doctag, +.hljs-keyword, +.hljs-formula { + color: #a626a4 +} +.hljs-section, +.hljs-name, +.hljs-selector-tag, +.hljs-deletion, +.hljs-subst { + color: #e45649 +} +.hljs-literal { + color: #986801 +} + +.hljs-built-in, +.hljs-type { + color: #0184bb +} + + +.hljs-string, +.hljs-regexp, +.hljs-addition, +.hljs-attribute, +.hljs-meta .hljs-string { + color: #50a14f +} +.hljs-attr, +.hljs-variable, +.hljs-template-variable, +.hljs-selector-class, +.hljs-selector-attr, +.hljs-selector-pseudo, +.hljs-number { + color: #986801 +} +.hljs-symbol, +.hljs-bullet, +.hljs-link, +.hljs-meta, +.hljs-selector-id, +.hljs-title { + color: #4078f2 +} +.hljs-built_in, +.hljs-title.class_, +.hljs-class .hljs-title { + color: #c18401 +} +.hljs-emphasis { + font-style: italic +} +.hljs-strong { + font-weight: bold +} +.hljs-link { + text-decoration: underline +} diff --git a/sui/highlight.js b/sui/highlight.js new file mode 100644 index 00000000..1a41d2e9 --- /dev/null +++ b/sui/highlight.js @@ -0,0 +1,610 @@ +/*! + Highlight.js v11.9.0 (git: b7ec4bfafc) + (c) 2006-2023 undefined and other contributors + License: BSD-3-Clause + */ + var hljs=function(){"use strict";function e(t){ + return t instanceof Map?t.clear=t.delete=t.set=()=>{ + throw Error("map is read-only")}:t instanceof Set&&(t.add=t.clear=t.delete=()=>{ + throw Error("set is read-only") + }),Object.freeze(t),Object.getOwnPropertyNames(t).forEach((n=>{ + const i=t[n],s=typeof i;"object"!==s&&"function"!==s||Object.isFrozen(i)||e(i) + })),t}class t{constructor(e){ + void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1} + ignoreMatch(){this.isMatchIgnored=!0}}function n(e){ + return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'") + }function i(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t] + ;return t.forEach((e=>{for(const t in e)n[t]=e[t]})),n}const s=e=>!!e.scope + ;class o{constructor(e,t){ + this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){ + this.buffer+=n(e)}openNode(e){if(!s(e))return;const t=((e,{prefix:t})=>{ + if(e.startsWith("language:"))return e.replace("language:","language-") + ;if(e.includes(".")){const n=e.split(".") + ;return[`${t}${n.shift()}`,...n.map(((e,t)=>`${e}${"_".repeat(t+1)}`))].join(" ") + }return`${t}${e}`})(e.scope,{prefix:this.classPrefix});this.span(t)} + closeNode(e){s(e)&&(this.buffer+="")}value(){return this.buffer}span(e){ + this.buffer+=``}}const r=(e={})=>{const t={children:[]} + ;return Object.assign(t,e),t};class a{constructor(){ + this.rootNode=r(),this.stack=[this.rootNode]}get top(){ + return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){ + this.top.children.push(e)}openNode(e){const t=r({scope:e}) + ;this.add(t),this.stack.push(t)}closeNode(){ + if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){ + for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)} + walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){ + return"string"==typeof t?e.addText(t):t.children&&(e.openNode(t), + t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){ + "string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{ + a._collapse(e)})))}}class c extends a{constructor(e){super(),this.options=e} + addText(e){""!==e&&this.add(e)}startScope(e){this.openNode(e)}endScope(){ + this.closeNode()}__addSublanguage(e,t){const n=e.root + ;t&&(n.scope="language:"+t),this.add(n)}toHTML(){ + return new o(this,this.options).value()}finalize(){ + return this.closeAllNodes(),!0}}function l(e){ + return e?"string"==typeof e?e:e.source:null}function g(e){return h("(?=",e,")")} + function u(e){return h("(?:",e,")*")}function d(e){return h("(?:",e,")?")} + function h(...e){return e.map((e=>l(e))).join("")}function f(...e){const t=(e=>{ + const t=e[e.length-1] + ;return"object"==typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{} + })(e);return"("+(t.capture?"":"?:")+e.map((e=>l(e))).join("|")+")"} + function p(e){return RegExp(e.toString()+"|").exec("").length-1} + const b=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./ + ;function m(e,{joinWith:t}){let n=0;return e.map((e=>{n+=1;const t=n + ;let i=l(e),s="";for(;i.length>0;){const e=b.exec(i);if(!e){s+=i;break} + s+=i.substring(0,e.index), + i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?s+="\\"+(Number(e[1])+t):(s+=e[0], + "("===e[0]&&n++)}return s})).map((e=>`(${e})`)).join(t)} + const E="[a-zA-Z]\\w*",x="[a-zA-Z_]\\w*",w="\\b\\d+(\\.\\d+)?",y="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",_="\\b(0b[01]+)",O={ + begin:"\\\\[\\s\\S]",relevance:0},v={scope:"string",begin:"'",end:"'", + illegal:"\\n",contains:[O]},k={scope:"string",begin:'"',end:'"',illegal:"\\n", + contains:[O]},N=(e,t,n={})=>{const s=i({scope:"comment",begin:e,end:t, + contains:[]},n);s.contains.push({scope:"doctag", + begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)", + end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0}) + ;const o=f("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/) + ;return s.contains.push({begin:h(/[ ]+/,"(",o,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),s + },S=N("//","$"),M=N("/\\*","\\*/"),R=N("#","$");var j=Object.freeze({ + __proto__:null,APOS_STRING_MODE:v,BACKSLASH_ESCAPE:O,BINARY_NUMBER_MODE:{ + scope:"number",begin:_,relevance:0},BINARY_NUMBER_RE:_,COMMENT:N, + C_BLOCK_COMMENT_MODE:M,C_LINE_COMMENT_MODE:S,C_NUMBER_MODE:{scope:"number", + begin:y,relevance:0},C_NUMBER_RE:y,END_SAME_AS_BEGIN:e=>Object.assign(e,{ + "on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{ + t.data._beginMatch!==e[1]&&t.ignoreMatch()}}),HASH_COMMENT_MODE:R,IDENT_RE:E, + MATCH_NOTHING_RE:/\b\B/,METHOD_GUARD:{begin:"\\.\\s*"+x,relevance:0}, + NUMBER_MODE:{scope:"number",begin:w,relevance:0},NUMBER_RE:w, + PHRASAL_WORDS_MODE:{ + begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/ + },QUOTE_STRING_MODE:k,REGEXP_MODE:{scope:"regexp",begin:/\/(?=[^/\n]*\/)/, + end:/\/[gimuy]*/,contains:[O,{begin:/\[/,end:/\]/,relevance:0,contains:[O]}]}, + RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~", + SHEBANG:(e={})=>{const t=/^#![ ]*\// + ;return e.binary&&(e.begin=h(t,/.*\b/,e.binary,/\b.*/)),i({scope:"meta",begin:t, + end:/$/,relevance:0,"on:begin":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)}, + TITLE_MODE:{scope:"title",begin:E,relevance:0},UNDERSCORE_IDENT_RE:x, + UNDERSCORE_TITLE_MODE:{scope:"title",begin:x,relevance:0}});function A(e,t){ + "."===e.input[e.index-1]&&t.ignoreMatch()}function I(e,t){ + void 0!==e.className&&(e.scope=e.className,delete e.className)}function T(e,t){ + t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)", + e.__beforeBegin=A,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords, + void 0===e.relevance&&(e.relevance=0))}function L(e,t){ + Array.isArray(e.illegal)&&(e.illegal=f(...e.illegal))}function B(e,t){ + if(e.match){ + if(e.begin||e.end)throw Error("begin & end are not supported with match") + ;e.begin=e.match,delete e.match}}function P(e,t){ + void 0===e.relevance&&(e.relevance=1)}const D=(e,t)=>{if(!e.beforeMatch)return + ;if(e.starts)throw Error("beforeMatch cannot be used with starts") + ;const n=Object.assign({},e);Object.keys(e).forEach((t=>{delete e[t] + })),e.keywords=n.keywords,e.begin=h(n.beforeMatch,g(n.begin)),e.starts={ + relevance:0,contains:[Object.assign(n,{endsParent:!0})] + },e.relevance=0,delete n.beforeMatch + },H=["of","and","for","in","not","or","if","then","parent","list","value"],C="keyword" + ;function $(e,t,n=C){const i=Object.create(null) + ;return"string"==typeof e?s(n,e.split(" ")):Array.isArray(e)?s(n,e):Object.keys(e).forEach((n=>{ + Object.assign(i,$(e[n],t,n))})),i;function s(e,n){ + t&&(n=n.map((e=>e.toLowerCase()))),n.forEach((t=>{const n=t.split("|") + ;i[n[0]]=[e,U(n[0],n[1])]}))}}function U(e,t){ + return t?Number(t):(e=>H.includes(e.toLowerCase()))(e)?0:1}const z={},W=e=>{ + console.error(e)},X=(e,...t)=>{console.log("WARN: "+e,...t)},G=(e,t)=>{ + z[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),z[`${e}/${t}`]=!0) + },K=Error();function F(e,t,{key:n}){let i=0;const s=e[n],o={},r={} + ;for(let e=1;e<=t.length;e++)r[e+i]=s[e],o[e+i]=!0,i+=p(t[e-1]) + ;e[n]=r,e[n]._emit=o,e[n]._multi=!0}function Z(e){(e=>{ + e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope, + delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={ + _wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope + }),(e=>{if(Array.isArray(e.begin)){ + if(e.skip||e.excludeBegin||e.returnBegin)throw W("skip, excludeBegin, returnBegin not compatible with beginScope: {}"), + K + ;if("object"!=typeof e.beginScope||null===e.beginScope)throw W("beginScope must be object"), + K;F(e,e.begin,{key:"beginScope"}),e.begin=m(e.begin,{joinWith:""})}})(e),(e=>{ + if(Array.isArray(e.end)){ + if(e.skip||e.excludeEnd||e.returnEnd)throw W("skip, excludeEnd, returnEnd not compatible with endScope: {}"), + K + ;if("object"!=typeof e.endScope||null===e.endScope)throw W("endScope must be object"), + K;F(e,e.end,{key:"endScope"}),e.end=m(e.end,{joinWith:""})}})(e)}function V(e){ + function t(t,n){ + return RegExp(l(t),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(n?"g":"")) + }class n{constructor(){ + this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0} + addRule(e,t){ + t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]), + this.matchAt+=p(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null) + ;const e=this.regexes.map((e=>e[1]));this.matcherRe=t(m(e,{joinWith:"|" + }),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex + ;const t=this.matcherRe.exec(e);if(!t)return null + ;const n=t.findIndex(((e,t)=>t>0&&void 0!==e)),i=this.matchIndexes[n] + ;return t.splice(0,n),Object.assign(t,i)}}class s{constructor(){ + this.rules=[],this.multiRegexes=[], + this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){ + if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n + ;return this.rules.slice(e).forEach((([e,n])=>t.addRule(e,n))), + t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){ + return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){ + this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){ + const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex + ;let n=t.exec(e) + ;if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{ + const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)} + return n&&(this.regexIndex+=n.position+1, + this.regexIndex===this.count&&this.considerAll()),n}} + if(e.compilerExtensions||(e.compilerExtensions=[]), + e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.") + ;return e.classNameAliases=i(e.classNameAliases||{}),function n(o,r){const a=o + ;if(o.isCompiled)return a + ;[I,B,Z,D].forEach((e=>e(o,r))),e.compilerExtensions.forEach((e=>e(o,r))), + o.__beforeBegin=null,[T,L,P].forEach((e=>e(o,r))),o.isCompiled=!0;let c=null + ;return"object"==typeof o.keywords&&o.keywords.$pattern&&(o.keywords=Object.assign({},o.keywords), + c=o.keywords.$pattern, + delete o.keywords.$pattern),c=c||/\w+/,o.keywords&&(o.keywords=$(o.keywords,e.case_insensitive)), + a.keywordPatternRe=t(c,!0), + r&&(o.begin||(o.begin=/\B|\b/),a.beginRe=t(a.begin),o.end||o.endsWithParent||(o.end=/\B|\b/), + o.end&&(a.endRe=t(a.end)), + a.terminatorEnd=l(a.end)||"",o.endsWithParent&&r.terminatorEnd&&(a.terminatorEnd+=(o.end?"|":"")+r.terminatorEnd)), + o.illegal&&(a.illegalRe=t(o.illegal)), + o.contains||(o.contains=[]),o.contains=[].concat(...o.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((t=>i(e,{ + variants:null},t)))),e.cachedVariants?e.cachedVariants:q(e)?i(e,{ + starts:e.starts?i(e.starts):null + }):Object.isFrozen(e)?i(e):e))("self"===e?o:e)))),o.contains.forEach((e=>{n(e,a) + })),o.starts&&n(o.starts,r),a.matcher=(e=>{const t=new s + ;return e.contains.forEach((e=>t.addRule(e.begin,{rule:e,type:"begin" + }))),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end" + }),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t})(a),a}(e)}function q(e){ + return!!e&&(e.endsWithParent||q(e.starts))}class J extends Error{ + constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}} + const Y=n,Q=i,ee=Symbol("nomatch"),te=n=>{ + const i=Object.create(null),s=Object.create(null),o=[];let r=!0 + ;const a="Could not find the language '{}', did you forget to load/include a language module?",l={ + disableAutodetect:!0,name:"Plain text",contains:[]};let p={ + ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i, + languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-", + cssSelector:"pre code",languages:null,__emitter:c};function b(e){ + return p.noHighlightRe.test(e)}function m(e,t,n){let i="",s="" + ;"object"==typeof t?(i=e, + n=t.ignoreIllegals,s=t.language):(G("10.7.0","highlight(lang, code, ...args) has been deprecated."), + G("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"), + s=e,i=t),void 0===n&&(n=!0);const o={code:i,language:s};N("before:highlight",o) + ;const r=o.result?o.result:E(o.language,o.code,n) + ;return r.code=o.code,N("after:highlight",r),r}function E(e,n,s,o){ + const c=Object.create(null);function l(){if(!N.keywords)return void M.addText(R) + ;let e=0;N.keywordPatternRe.lastIndex=0;let t=N.keywordPatternRe.exec(R),n="" + ;for(;t;){n+=R.substring(e,t.index) + ;const s=_.case_insensitive?t[0].toLowerCase():t[0],o=(i=s,N.keywords[i]);if(o){ + const[e,i]=o + ;if(M.addText(n),n="",c[s]=(c[s]||0)+1,c[s]<=7&&(j+=i),e.startsWith("_"))n+=t[0];else{ + const n=_.classNameAliases[e]||e;u(t[0],n)}}else n+=t[0] + ;e=N.keywordPatternRe.lastIndex,t=N.keywordPatternRe.exec(R)}var i + ;n+=R.substring(e),M.addText(n)}function g(){null!=N.subLanguage?(()=>{ + if(""===R)return;let e=null;if("string"==typeof N.subLanguage){ + if(!i[N.subLanguage])return void M.addText(R) + ;e=E(N.subLanguage,R,!0,S[N.subLanguage]),S[N.subLanguage]=e._top + }else e=x(R,N.subLanguage.length?N.subLanguage:null) + ;N.relevance>0&&(j+=e.relevance),M.__addSublanguage(e._emitter,e.language) + })():l(),R=""}function u(e,t){ + ""!==e&&(M.startScope(t),M.addText(e),M.endScope())}function d(e,t){let n=1 + ;const i=t.length-1;for(;n<=i;){if(!e._emit[n]){n++;continue} + const i=_.classNameAliases[e[n]]||e[n],s=t[n];i?u(s,i):(R=s,l(),R=""),n++}} + function h(e,t){ + return e.scope&&"string"==typeof e.scope&&M.openNode(_.classNameAliases[e.scope]||e.scope), + e.beginScope&&(e.beginScope._wrap?(u(R,_.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap), + R=""):e.beginScope._multi&&(d(e.beginScope,t),R="")),N=Object.create(e,{parent:{ + value:N}}),N}function f(e,n,i){let s=((e,t)=>{const n=e&&e.exec(t) + ;return n&&0===n.index})(e.endRe,i);if(s){if(e["on:end"]){const i=new t(e) + ;e["on:end"](n,i),i.isMatchIgnored&&(s=!1)}if(s){ + for(;e.endsParent&&e.parent;)e=e.parent;return e}} + if(e.endsWithParent)return f(e.parent,n,i)}function b(e){ + return 0===N.matcher.regexIndex?(R+=e[0],1):(T=!0,0)}function m(e){ + const t=e[0],i=n.substring(e.index),s=f(N,e,i);if(!s)return ee;const o=N + ;N.endScope&&N.endScope._wrap?(g(), + u(t,N.endScope._wrap)):N.endScope&&N.endScope._multi?(g(), + d(N.endScope,e)):o.skip?R+=t:(o.returnEnd||o.excludeEnd||(R+=t), + g(),o.excludeEnd&&(R=t));do{ + N.scope&&M.closeNode(),N.skip||N.subLanguage||(j+=N.relevance),N=N.parent + }while(N!==s.parent);return s.starts&&h(s.starts,e),o.returnEnd?0:t.length} + let w={};function y(i,o){const a=o&&o[0];if(R+=i,null==a)return g(),0 + ;if("begin"===w.type&&"end"===o.type&&w.index===o.index&&""===a){ + if(R+=n.slice(o.index,o.index+1),!r){const t=Error(`0 width match regex (${e})`) + ;throw t.languageName=e,t.badRule=w.rule,t}return 1} + if(w=o,"begin"===o.type)return(e=>{ + const n=e[0],i=e.rule,s=new t(i),o=[i.__beforeBegin,i["on:begin"]] + ;for(const t of o)if(t&&(t(e,s),s.isMatchIgnored))return b(n) + ;return i.skip?R+=n:(i.excludeBegin&&(R+=n), + g(),i.returnBegin||i.excludeBegin||(R=n)),h(i,e),i.returnBegin?0:n.length})(o) + ;if("illegal"===o.type&&!s){ + const e=Error('Illegal lexeme "'+a+'" for mode "'+(N.scope||"")+'"') + ;throw e.mode=N,e}if("end"===o.type){const e=m(o);if(e!==ee)return e} + if("illegal"===o.type&&""===a)return 1 + ;if(I>1e5&&I>3*o.index)throw Error("potential infinite loop, way more iterations than matches") + ;return R+=a,a.length}const _=O(e) + ;if(!_)throw W(a.replace("{}",e)),Error('Unknown language: "'+e+'"') + ;const v=V(_);let k="",N=o||v;const S={},M=new p.__emitter(p);(()=>{const e=[] + ;for(let t=N;t!==_;t=t.parent)t.scope&&e.unshift(t.scope) + ;e.forEach((e=>M.openNode(e)))})();let R="",j=0,A=0,I=0,T=!1;try{ + if(_.__emitTokens)_.__emitTokens(n,M);else{for(N.matcher.considerAll();;){ + I++,T?T=!1:N.matcher.considerAll(),N.matcher.lastIndex=A + ;const e=N.matcher.exec(n);if(!e)break;const t=y(n.substring(A,e.index),e) + ;A=e.index+t}y(n.substring(A))}return M.finalize(),k=M.toHTML(),{language:e, + value:k,relevance:j,illegal:!1,_emitter:M,_top:N}}catch(t){ + if(t.message&&t.message.includes("Illegal"))return{language:e,value:Y(n), + illegal:!0,relevance:0,_illegalBy:{message:t.message,index:A, + context:n.slice(A-100,A+100),mode:t.mode,resultSoFar:k},_emitter:M};if(r)return{ + language:e,value:Y(n),illegal:!1,relevance:0,errorRaised:t,_emitter:M,_top:N} + ;throw t}}function x(e,t){t=t||p.languages||Object.keys(i);const n=(e=>{ + const t={value:Y(e),illegal:!1,relevance:0,_top:l,_emitter:new p.__emitter(p)} + ;return t._emitter.addText(e),t})(e),s=t.filter(O).filter(k).map((t=>E(t,e,!1))) + ;s.unshift(n);const o=s.sort(((e,t)=>{ + if(e.relevance!==t.relevance)return t.relevance-e.relevance + ;if(e.language&&t.language){if(O(e.language).supersetOf===t.language)return 1 + ;if(O(t.language).supersetOf===e.language)return-1}return 0})),[r,a]=o,c=r + ;return c.secondBest=a,c}function w(e){let t=null;const n=(e=>{ + let t=e.className+" ";t+=e.parentNode?e.parentNode.className:"" + ;const n=p.languageDetectRe.exec(t);if(n){const t=O(n[1]) + ;return t||(X(a.replace("{}",n[1])), + X("Falling back to no-highlight mode for this block.",e)),t?n[1]:"no-highlight"} + return t.split(/\s+/).find((e=>b(e)||O(e)))})(e);if(b(n))return + ;if(N("before:highlightElement",{el:e,language:n + }),e.dataset.highlighted)return void console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",e) + ;if(e.children.length>0&&(p.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."), + console.warn("https://github.com/highlightjs/highlight.js/wiki/security"), + console.warn("The element with unescaped HTML:"), + console.warn(e)),p.throwUnescapedHTML))throw new J("One of your code blocks includes unescaped HTML.",e.innerHTML) + ;t=e;const i=t.textContent,o=n?m(i,{language:n,ignoreIllegals:!0}):x(i) + ;e.innerHTML=o.value,e.dataset.highlighted="yes",((e,t,n)=>{const i=t&&s[t]||n + ;e.classList.add("hljs"),e.classList.add("language-"+i) + })(e,n,o.language),e.result={language:o.language,re:o.relevance, + relevance:o.relevance},o.secondBest&&(e.secondBest={ + language:o.secondBest.language,relevance:o.secondBest.relevance + }),N("after:highlightElement",{el:e,result:o,text:i})}let y=!1;function _(){ + "loading"!==document.readyState?document.querySelectorAll(p.cssSelector).forEach(w):y=!0 + }function O(e){return e=(e||"").toLowerCase(),i[e]||i[s[e]]} + function v(e,{languageName:t}){"string"==typeof e&&(e=[e]),e.forEach((e=>{ + s[e.toLowerCase()]=t}))}function k(e){const t=O(e) + ;return t&&!t.disableAutodetect}function N(e,t){const n=e;o.forEach((e=>{ + e[n]&&e[n](t)}))} + "undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{ + y&&_()}),!1),Object.assign(n,{highlight:m,highlightAuto:x,highlightAll:_, + highlightElement:w, + highlightBlock:e=>(G("10.7.0","highlightBlock will be removed entirely in v12.0"), + G("10.7.0","Please use highlightElement now."),w(e)),configure:e=>{p=Q(p,e)}, + initHighlighting:()=>{ + _(),G("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")}, + initHighlightingOnLoad:()=>{ + _(),G("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.") + },registerLanguage:(e,t)=>{let s=null;try{s=t(n)}catch(t){ + if(W("Language definition for '{}' could not be registered.".replace("{}",e)), + !r)throw t;W(t),s=l} + s.name||(s.name=e),i[e]=s,s.rawDefinition=t.bind(null,n),s.aliases&&v(s.aliases,{ + languageName:e})},unregisterLanguage:e=>{delete i[e] + ;for(const t of Object.keys(s))s[t]===e&&delete s[t]}, + listLanguages:()=>Object.keys(i),getLanguage:O,registerAliases:v, + autoDetection:k,inherit:Q,addPlugin:e=>{(e=>{ + e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{ + e["before:highlightBlock"](Object.assign({block:t.el},t)) + }),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{ + e["after:highlightBlock"](Object.assign({block:t.el},t))})})(e),o.push(e)}, + removePlugin:e=>{const t=o.indexOf(e);-1!==t&&o.splice(t,1)}}),n.debugMode=()=>{ + r=!1},n.safeMode=()=>{r=!0},n.versionString="11.9.0",n.regex={concat:h, + lookahead:g,either:f,optional:d,anyNumberOfTimes:u} + ;for(const t in j)"object"==typeof j[t]&&e(j[t]);return Object.assign(n,j),n + },ne=te({});return ne.newInstance=()=>te({}),ne}() + ;"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);/*! `bash` grammar compiled for Highlight.js 11.9.0 */ + (()=>{var e=(()=>{"use strict";return e=>{const s=e.regex,t={},n={begin:/\$\{/, + end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]};Object.assign(t,{ + className:"variable",variants:[{ + begin:s.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},n]});const a={ + className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE] + },i=e.inherit(e.COMMENT(),{match:[/(^|\s)/,/#.*$/],scope:{2:"comment"}}),c={ + begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/, + end:/(\w+)/,className:"string"})]}},o={className:"string",begin:/"/,end:/"/, + contains:[e.BACKSLASH_ESCAPE,t,a]};a.contains.push(o);const r={begin:/\$?\(\(/, + end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t] + },l=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10 + }),m={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0, + contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{ + name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/, + keyword:["if","then","else","elif","fi","for","while","until","in","do","done","case","esac","function","select"], + literal:["true","false"], + built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"] + },contains:[l,e.SHEBANG(),m,r,i,c,{match:/(\/[a-z._-]+)+/},o,{match:/\\"/},{ + className:"string",begin:/'/,end:/'/},{match:/\\'/},t]}}})() + ;hljs.registerLanguage("bash",e)})();/*! `ini` grammar compiled for Highlight.js 11.9.0 */ + (()=>{var e=(()=>{"use strict";return e=>{const n=e.regex,a={className:"number", + relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:e.NUMBER_RE}] + },s=e.COMMENT();s.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const i={ + className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/ + }]},t={className:"literal",begin:/\bon|off|true|false|yes|no\b/},r={ + className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''", + end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"' + },{begin:"'",end:"'"}]},l={begin:/\[/,end:/\]/,contains:[s,t,i,r,a,"self"], + relevance:0},c=n.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{ + name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/, + contains:[s,{className:"section",begin:/\[+/,end:/\]+/},{ + begin:n.concat(c,"(\\s*\\.\\s*",c,")*",n.lookahead(/\s*=\s*[^#\s]/)), + className:"attr",starts:{end:/$/,contains:[s,l,t,i,r,a]}}]}}})() + ;hljs.registerLanguage("ini",e)})();/*! `yaml` grammar compiled for Highlight.js 11.9.0 */ + (()=>{var e=(()=>{"use strict";return e=>{ + const n="true false yes no null",a="[\\w#;/?:@&=+$,.~*'()[\\]]+",s={ + className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/ + },{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable", + variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},i=e.inherit(s,{ + variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),l={ + end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,relevance:0},t={begin:/\{/, + end:/\}/,contains:[l],illegal:"\\n",relevance:0},g={begin:"\\[",end:"\\]", + contains:[l],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{ + begin:/\w[\w :()\./-]*:(?=[ \t]|$)/},{begin:/"\w[\w :()\./-]*":(?=[ \t]|$)/},{ + begin:/'\w[\w :()\./-]*':(?=[ \t]|$)/}]},{className:"meta",begin:"^---\\s*$", + relevance:10},{className:"string", + begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{ + begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0, + relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type", + begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a + },{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta", + begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)", + relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{ + className:"number", + begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b" + },{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},t,g,s],r=[...b] + ;return r.pop(),r.push(i),l.contains=r,{name:"YAML",case_insensitive:!0, + aliases:["yml"],contains:b}}})();hljs.registerLanguage("yaml",e)})(); + +// writing a custom language definition for highlight.js +hljs.registerLanguage('move', function(hljs) { + + var BUILTINS = { + storage_operations: 'borrow_global_mut borrow_global exists move_to acquires', + }; + + var NUMBERS = { + className: 'number', + variants: [ + { begin: hljs.C_NUMBER_RE + '(u(8|16|32|64|128|256))?' }, + { begin: '\\b0x[0-9a-fA-F]+' } + ], + relevance: 0 + }; + + var STRINGS = { + className: 'string', + variants: [ + { + begin: /\bb"/, + beginExclude: true, + // afterBegin: '"', + end: /"/ + } + ] + }; + + // let IDENTIFIER = { + // scope: 'title.class', + // match: /[a-z][a-z0-9_]*/, + // }; + + let ENTITY = { + scope: 'title.class', + match: /[A-Z][a-z0-9_]*/, + }; + + + let LINE_COMMENT = { + // block comment + scope: 'comment', + begin: '//', + end: '$', + }; + + let BLOCK_COMMENT = hljs.COMMENT('/\\*', '\\*/', { contains: [ 'self' ] }); + + let TYPES = { + scope: 'type', + match: 'bool|u8|u16|u32|u64|u128|u256|address|vector|signer' + }; + + let KEYWORDS = [ + ...'public native friend entry macro'.split(' '), + ...'let mut abort'.split(' '), + ...'if else while loop break continue'.split(' '), + ]; + + return { + aliases: ['mv'], + keywords: { + + keyword: KEYWORDS, + literal: 'true false', + // type: TYPES, + built_in: BUILTINS, + }, + contains: [ + LINE_COMMENT, + BLOCK_COMMENT, + { + // module definition + scope: 'module', + begin: /\bmodule\b/, + end: /\{/, + keywords: 'module', + contains: [ + BLOCK_COMMENT, + { + scope: 'attr', + match: /[a-z0-9][a-z0-9]*(?=::)/, + relevance: 10, + }, + { + scope: 'title.class', + match: /[a-z_]+/, + relevance: 0, + } + ] + }, + { + // const declaration + scope: 'const', + beginKeywords: 'const', + end: /(?=;)/, + contains: [ + BLOCK_COMMENT, + STRINGS, + NUMBERS, + TYPES, + { + scope: 'variable.constant', + match: /[A-Z][a-zA-Z0-9_]+/, + }, + ] + }, + { + // import statement + scope: 'import', + begin: /\buse\b/, + end: /;/, + keywords: 'use', + contains: [ + BLOCK_COMMENT, + ENTITY, + { + scope: 'keyword', + match: '(fun|as)' + }, + { + scope: 'literal', + match: '0x[0-9a-fA-F]+', + } + // parse address + module members + Self + ] + }, + + { + // struct definition + scope: 'struct', + begin: 'struct', + keywords: 'struct', + end: /(?=})/, + relevance: 10, + contains: [ + BLOCK_COMMENT, + LINE_COMMENT, + TYPES, + { + scope: 'keyword', + match: /has|phantom/, + }, + { + scope: 'param', + match: /[a-zA-Z][a-zA-Z0-9_]+\s*(?=:)/, + }, + { + scope: 'title.class', + match: /[a-zA-Z][a-zA-Z0-9_]+/, + relevance: 0, + } + ] + }, + { + // attributes + scope: 'attr', + begin: /#\[/, + end: /\]/, + $pattern: '\\[\\s*\\b[a-z_]+\\s*\\]', + }, + { + // function signature + scope: 'function-signature', + beginKeywords: 'fun', + end: /(?={)/, + contains: [ + BLOCK_COMMENT, + { + scope: 'title.function', + match: /\b[a-z][a-z_0-9]*(?=[<(])/, + relevance: 0, + }, + { + scope: 'generics', + begin: /(?<=<)/, + end: /(?=>)/, + contains: [ + { + scope: 'title.class', + match: /\bcopy|drop|store|key\b/ + } + ] + }, + { + scope: 'parens', + begin: /\(/, + end: /(?=\))/, + contains: [ + TYPES, + ENTITY, + { + scope: 'keyword.mut', + match: /\bmut\b/, + } + ] + }, + ENTITY + ] + }, + // { + // scope: 'address-script-block', + // begin: /\baddress|script\b\s*{/, + // end: /\{/, + // relevance: 10, + // keywords: ['address', 'script'], + // contains: [ + // IDENTIFIER + // ] + // }, + NUMBERS, + ENTITY, + TYPES, + { + // address literal + scope: 'literal', + match: /@0x[A-Fa-f0-9]+/ + }, + { + // literals + scope: 'string', + begin: /b"/, + beginScope: 'none', + end: /"/, + }, + { + scope: 'keyword', + match: /\bpublic\(friend\)/ + }, + { + // function call + scope: 'title.function.invoke', + match: /\b[a-z_][a-z_0-9]*(?=\()/, + }, + { + // assert built-in + scope: 'built-in', + match: /\bassert|borrow_global|borrow_global_mut|move_to|move_from|exists\b/, + }, + ] + }; +}); diff --git a/sui/history.html b/sui/history.html new file mode 100644 index 00000000..fdba8925 --- /dev/null +++ b/sui/history.html @@ -0,0 +1,262 @@ + + + + + + History - The Move Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

History

+ +
    +
  • 2019 - Libra is announced
  • +
  • 2019 - Move a Language with Programmable Resources
  • +
  • 2022 - The Diem Association is closed, Move is open sourced
  • +
  • 2023 - ...
  • +
  • 2024 - Move 2024 is released
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/sui/index.html b/sui/index.html new file mode 100644 index 00000000..82465b22 --- /dev/null +++ b/sui/index.html @@ -0,0 +1,247 @@ + + + + + + Introduction - The Move Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Introduction

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/sui/introduction.html b/sui/introduction.html new file mode 100644 index 00000000..82465b22 --- /dev/null +++ b/sui/introduction.html @@ -0,0 +1,247 @@ + + + + + + Introduction - The Move Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Introduction

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/sui/mark.min.js b/sui/mark.min.js new file mode 100644 index 00000000..16362318 --- /dev/null +++ b/sui/mark.min.js @@ -0,0 +1,7 @@ +/*!*************************************************** +* mark.js v8.11.1 +* https://markjs.io/ +* Copyright (c) 2014–2018, Julian Kühnel +* Released under the MIT license https://git.io/vwTVl +*****************************************************/ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Mark=t()}(this,function(){"use strict";var e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},n=function(){function e(e,t){for(var n=0;n1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;t(this,e),this.ctx=n,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return n(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t="about:blank",n=e.getAttribute("src").trim();return e.contentWindow.location.href===t&&n!==t&&n}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),o=function(){function e(n){t(this,e),this.opt=r({},{diacritics:!0,synonyms:{},accuracy:"partially",caseSensitive:!1,ignoreJoiners:!1,ignorePunctuation:[],wildcards:"disabled"},n)}return n(e,[{key:"create",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e),new RegExp(e,"gm"+(this.opt.caseSensitive?"":"i"))}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynonyms(a)+"|"+this.processSynonyms(s)+")"+r))}return e}},{key:"processSynonyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}}]),e}(),a=function(){function a(e){t(this,a),this.ctx=e,this.ie=!1;var n=window.navigator.userAgent;(n.indexOf("MSIE")>-1||n.indexOf("Trident")>-1)&&(this.ie=!0)}return n(a,[{key:"log",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":e(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+t)}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return i.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapGroups",value:function(e,t,n,r){return r((e=this.wrapRangeInTextNode(e,t,t+n)).previousSibling),e}},{key:"separateGroups",value:function(e,t,n,r,i){for(var o=t.length,a=1;a-1&&r(t[a],e)&&(e=this.wrapGroups(e,s,t[a].length,i))}return e}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];){if(o.opt.separateGroups)t=o.separateGroups(t,i,a,n,r);else{if(!n(i[a],t))continue;var s=i.index;if(0!==a)for(var c=1;c + + + + + The Move Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Introduction

+ +

Foreword

+ +

History

+ +
    +
  • 2019 - Libra is announced
  • +
  • 2019 - Move a Language with Programmable Resources
  • +
  • 2022 - The Diem Association is closed, Move is open sourced
  • +
  • 2023 - ...
  • +
  • 2024 - Move 2024 is released
  • +
+

Before we begin

+

This chapter covers the prerequisites for the Move language: how to set up your IDE, how to install the compiler and what is Move 2024. If you are already familiar with these topics or have a CLI installed, you can skip this chapter and proceed to the next one.

+

Install Sui

+

Move is a compiled language, so you need to install a compiler to be able to write and run Move programs. The compiler is included into the Sui binary, which can be installed or downloaded using one of the methods below.

+

Download Binary

+

You can download the latest Sui binary from the releases page. The binary is available for macOS, Linux and Windows. For education purposes and development, we recommend using the mainnet version.

+

Install using Homebrew (MacOS)

+

You can install Sui using the Homebrew package manager.

+
brew install sui
+
+

Build using Cargo (MacOS, Linux)

+

You can install and build Sui locally by using the Cargo package manager (requires Rust)

+
cargo install --git https://github.com/MystenLabs/sui.git --bin sui --branch mainnet
+
+

Troubleshooting

+

For troubleshooting the installation process, please refer to the Install Sui Guide.

+

Set up your IDE

+

There are two most popular IDEs for Move development: VSCode and IntelliJ IDEA. Both of them provide basic features like syntax highlighting and error messages, though they differ in their additional features. Whatever IDE you choose, you'll need to use the terminal to run the Move CLI.

+
+

IntelliJ Plugin does not support Move 2024 edition fully, some syntax won't get highlighted and not supported.

+
+

VSCode

+ +

IntelliJ IDEA

+ +

Emacs

+ +

Github Codespaces

+

Web based IDE from Github, can be run right in the browser and provides almost a full-featured VSCode experience.

+ +

Move 2024

+

Move 2024 is the new version of the Move language that is maintained by Mysten Labs. All of the examples in this book are written in Move 2024. If you're used to the pre-2024 version of Move, please, refer to the Move 2024 Migration Guide to learn about the differences between the two versions.

+ +

Your first Move

+

In this section you'll get to experience the Move language and the Move compiler first-hand. You'll learn how to create a package, write a simple module, test it and generate documentation. You can also use this section as a quick CLI reference for your own projects.

+

This guide mentions topics which you will learn later in this book. If you are not familiar with some of the concepts, don't worry, you'll learn them later. Try to focus on the task at hand and don't get distracted by the details.

+
+

It is important that you have a working Move environment. If you haven't set it up yet, please refer to the Install Sui section.

+
+

This section is divided into the following parts (in order):

+ +

Hello World

+ + +

It's time to write your first Move program. We'll start with the classic "Hello World" program which returns a String.

+

Initialize a project

+

First, you need to initialize a new project. Assuming you have Sui installed, run the following command:

+
$ sui move new hello_world
+
+

Sui CLI has a move subcommand which is used to work with Move packages. The new subcommand creates a new package with the given name in a new directory. In our case, the package name is hello_world, and it is located in the hello_world directory.

+

To make sure that the package was created successfully, we can check the contents of the current directory, and see that there is a new hello_world path.

+
$ ls | grep hello_world
+hello_world
+
+ +

If the output looks like this, then everything is fine, and we can proceed. The folder structure of the package is the folowing:

+
hello_world
+├── Move.toml
+├── src/
+│   └── hello_world.move
+└── tests/
+    └── hello_world_tests.move
+
+

The address I'm using in this book is always 0x0 and the name for it is "book". You can use any address you want, but make sure to change it in the examples. To make the examples work as is, please, add the following address to the [addresses] section in the Move.toml:

+
# Move.toml
+[addresses]
+std = "0x1"
+book = "0x0"
+
+

Create a module

+

Let's create a new module called hello_world. To do so, create a new file in the sources folder called hello_world.move. So that the structure looks like this:

+
sources/
+    hello_world.move
+Move.toml
+
+

And then add the following code to the hello_world.move file:

+
// sources/hello_world.move
+module book::hello_world {
+    use std::string::{Self, String};
+
+    public fun hello_world(): String {
+        string::utf8(b"Hello, World!")
+    }
+}
+
+

While it's not a hard restriction, it's is considered a good practice to name the module the same as the file. So, in our case, the module name is hello_world and the file name is hello_world.move.

+

The module name and function names should be in snake_case - all lowercase letters with underscores between words. You can read more about coding conventions in the Coding Conventions section.

+

Dive into the code

+

Let's take a closer look at the code we just wrote:

+
module book::hello_world {
+}
+
+

The first line of code declares a module called hello_world stored at the address book. The contents of the module go inside the curly braces {}. The last line closes the module declaration with a closing curly brace }. We will go through the module declaration in more detail in the Modules section.

+

Then we import two members of the std::string module (which is part of the std package). The string module contains the String type, and the Self keyword imports the module itself, so we can use its functions.

+
    use std::string::{Self, String};
+
+

Then we define a hello_world function using the keyword fun which takes no arguments and returns a String type. The public keyword marks the visibility of the function - "public" functions can be accessed by other modules. The function body is inside the curly braces {}.

+
+

In the Function section we will learn more about functions.

+
+
    public fun hello_world(): String {
+        string::utf8(b"Hello, World!")
+    }
+
+

The function body consists of a single function call to the string::utf8 function and returns a String type. The expression is a bytestring literal b"Hello World!".

+

Compile the package

+

To compile the package, run the following command:

+
$ sui move build
+
+

If you see this (or - for other binaries - similar) output, then everything is fine, and the code compiled successfully:

+
> UPDATING GIT DEPENDENCY https://github.com/move-language/move.git
+> INCLUDING DEPENDENCY MoveStdlib
+> BUILDING Book
+
+

Congratulations! You've just compiled your first Move program. Now, let's add a test and some logging so we see that it works.

+

Adding Tests

+ +

To run a Move program there needs to be an environment which stores packages and executes transactions. The best way to test a Move program is to write some tests and run them locally. Move has built-in testing functionality, and the tests are written in Move as well. In this section, we will learn how to write tests for our hello_world module.

+

First, let's try to run tests. All of the Move binaries support the test command, and this is the command we will use to run tests:

+
$ sui move test
+
+

If you see similar output, then everything is fine, and the test command has run successfully:

+
INCLUDING DEPENDENCY MoveStdlib
+BUILDING Book Samples
+Running Move unit tests
+Test result: OK. Total tests: 0; passed: 0; failed: 0
+
+

As you can see, the test command has run successfully, but it didn't find any tests. Let's add some tests to our module.

+

Your first test

+

When the test command runs, it looks for all tests in all files in the directory. Tests can be either placed separate modules or in the same module as the code they test. First, let's add a test function to the hello_world module:

+
module book::hello_world {
+    use std::string::{Self, String};
+
+    public fun hello_world(): String {
+        string::utf8(b"Hello, World!")
+    }
+
+    #[test]
+    fun test_is_hello_world() {
+        let expected = string::utf8(b"Hello, World!");
+        assert!(hello_world() == expected, 0)
+    }
+}
+
+

The test function is a function with a #[test] attribute. Normally it takes no arguments (but it can take arguments in some cases - you'll learn more about it closer to the end of this book) and returns nothing. Tests placed in the same module as the code they test are called "unit tests". They can access all functions and types in the module. We'll go through them in more detail in the Test section.

+
    #[test]
+    fun test_is_hello_world() {
+        let expected = string::utf8(b"Hello, World!");
+        assert!(hello_world() == expected, 0)
+    }
+
+

Inside the test function, we define the expected outcome by creating a String with the expected value and assign it to the expected variable. Then we use the special built-in assert!() which takes two arguments: a conditional expression and an error code. If the expression evaluates to false, then the test fails with the given error code. The equality operator == compares the actual and expected values and returns true if they are equal. We'll learn more about expressions in the Expression and Scope section.

+

Now let's run the test command again:

+
$ sui move test
+
+

You should see this output, which means that the test has run successfully:

+
...
+Test result: OK. Total tests: 1; passed: 1; failed: 0
+
+

Failed experiment

+

Try replacing the equality operator == inside the assert! with the inequality operator != and run the test command again.

+
    assert!(hello_world() != expected, 0)
+
+

You should see this output, which means that the test has failed:

+
Running Move unit tests
+[ FAIL    ] 0x0::hello_world::test_is_hello_world
+
+Test failures:
+
+Failures in 0x0::hello_world:
+
+┌── test_is_hello_world ──────
+│ error[E11001]: test failure
+│    ┌─ ./sources/your-first-move/hello_world.move:14:9
+│    │
+│ 12 │     fun test_is_hello_world() {
+│    │         ------------------- In this function in 0x0::hello_world
+│ 13 │         let expected = string::utf8(b"Hello, World!");
+│ 14 │         assert!(hello_world() != expected, 0)
+│    │         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Test was not expected to error, but it aborted with code 0 originating in the module 00000000000000000000000000000000::hello_world rooted here
+│
+│
+└──────────────────
+
+Test result: FAILED. Total tests: 1; passed: 0; failed: 1
+
+

Tests are used to verify the execution of the code. If the code is correct, the test should pass, otherwise it should fail. In this case, the test failed because we intentionally made a mistake in the test code. However, normally you should write tests that check the correctness of the code, not the other way around!

+

In the next section, we will learn how to debug Move programs and print intermediate values to the console.

+

Debugging

+ +

Now that we have a package with a module and a test, let's take a slight detour and learn how to debug Move programs. Move Compiler has a built-in debugging tool that allows you to print intermediate values to the console. This is especially useful when you are writing tests and want to see what's going on inside the program.

+

New import

+

To use the debug module, we need to import it in our module. Imports are usually grouped together for readability and they are placed at the top of the module. Let's add the import statement to the hello_world module:

+
module book::hello_world {
+    use std::string::{Self, String};
+    use std::debug; // the added import!
+
+

Having imported the std::debug module, we can now use its functions. Let's add a debug::print function call to the hello_world function. To achieve that we need to change the function body. Instead of returning the value right away we will assign it to a variable, print it to the console and then return it:

+
    public fun hello_world(): String {
+        let result = string::utf8(b"Hello, World!");
+        debug::print(&result);
+        result
+    }
+
+

First, run the build command:

+
$ sui move build
+
+

The output does not contain anything unusual, because our code was never executed. But running build is an important part of the routine - this way we make sure that the changes we added can compile. Let's run the test command now:

+
$ sui move test
+
+

The output of the test command now contains the "Hello, World!" string:

+
INCLUDING DEPENDENCY MoveNursery
+INCLUDING DEPENDENCY MoveStdlib
+BUILDING Book Samples
+Running Move unit tests
+[debug] "Hello, World!"
+[ PASS    ] 0x0::hello_world::test_is_hello_world
+Test result: OK. Total tests: 1; passed: 1; failed: 0
+
+

Now every time the hello_world function is run in tests, you'll see the "Hello, World!" string in the output.

+

Correct usage

+

Debug should only be used in local environment and never published on-chain. Usually, during the publish, the debug module is either removed from the package or the publishing fails with an error. There's no way to use this functionality on-chain.

+

Hint

+

There's one trick that allows you to save some time while debugging. Instead of adding a module-level import, use a fully qualified function name. This way you don't need to add an import statement to the module, but you can still use the debug::print function:

+
    std::debug::print(&my_variable);
+
+

Be mindful that the value passed into debug should be a reference (the & symbol in front of the variable name). If you pass a value, the compiler will emit an error.

+

Generating Documentation

+ +

Move CLI has a built-in tool for generating documentation for Move modules. The tool is included into the binary and available out of the box. In this section we will learn how to generate documentation for our hello_world module.

+

Adding documentation comments

+

To generate documentation for a module, we need to add documentation comments to the module and its functions. Documentation comments are written in Markdown and start with /// (three slashes). For example, let's add a documentation comment to the hello_world module:

+
/// This module contains a function that returns a string "Hello, World!".
+module book::hello_world {
+
+

Doc comments placed above the module are linked to the module itself, while doc comments placed above the function are linked to the function.

+
    /// As the name says: returns a string "Hello, World!".
+    public fun hello_world(): String {
+        string::utf8(b"Hello, World!")
+    }
+
+

If a documented member has an attribute, such as #[test] in the example below, the doc comment must be placed after the attribute:

+
+

While it is possible to document #[test] functions, doc comments for tests will not be included in the generated documentation.

+
+
    #[test]
+    /// This is a test for the `hello_world` function.
+    fun test_is_hello_world() {
+        let expected = string::utf8(b"Hello, World!");
+        let actual = hello_world();
+
+        assert!(actual == expected, 0)
+    }
+
+

Generating documentation

+

To generate documentation for a module, we need to run the sui move build command with a --doc flag. Let's run the command:

+
$ sui move build --doc
+...
+...
+BUILDING Book Samples
+
+
+

Alternatively, you can use move test --doc - this can be useful if you want to test and generate documentation at the same time. For example, as a part of your CI/CD pipeline.

+
+

Once the build is complete, the documentation will be available in the build/docs directory. Each modile will have its own .md file. The documentation for the hello_world module will be available in the build/docs/hello_world.md file.

+
+Click to see an example of the `hello_world.md` contents +
<a name="0x0_hello_world"></a>
+
+# Module `0x0::hello_world`
+This module contains a function that returns a string "Hello, World!".
+-  [Function `hello_world`](#0x0_hello_world_hello_world)
+<pre><code><b>use</b> <a href="">0x1::debug</a>;
+<b>use</b> <a href="">0x1::string</a>;
+</code></pre>
+<a name="0x0_hello_world_hello_world"></a>
+
+## Function `hello_world`
+As the name says: returns a string "Hello, World!".
+<pre><code><b>fun</b> <a href="hello_world.md#0x0_hello_world">hello_world</a>(): <a href="_String">string::String</a>
+</code></pre>
+<details>
+<summary>Implementation</summary>
+<pre><code><b>fun</b> <a href="hello_world.md#0x0_hello_world">hello_world</a>(): String {
+    <b>let</b> result = <a href="_utf8">string::utf8</a>(b"Hello, World!");
+    <a href="_print">debug::print</a>(&result);
+    result
+}
+</code></pre>
+</details>
+
+
+

Concepts

+

In this chapter you will learn about the basic concepts of Sui and Move. You will learn what is a package, how to interact with it, what is an account and a transaction, and how data is stored on Sui. While this chapter is not a complete reference, and you should refer to the Sui Documentation for that, it will give you a good understanding of the basic concepts required to write Move programs on Sui.

+

Packages

+ +

Move is a language for writing smart contracts - programs that stored and run on the blockchain. A single program is organized into a package. A package is published on the blockchain and is identified by an address. A published package can be interacted with by sending transactions calling its functions. It can also act as a dependency for other packages.

+
+

To create a new package, use the sui move new command. +To learn more about the command, run sui move new --help.

+
+

Package consists of modules - separate scopes that contain functions, types, and other items.

+
package 0x...
+    module a
+        struct A1
+        fun hello_world()
+    module b
+        struct B1
+        fun hello_package()
+
+

Package Structure

+

Locally, a package is a directory with a Move.toml file and a sources directory. The Move.toml file - called the "package manifest" - contains metadata about the package, and the sources directory contains the source code for the modules. Packages usually looks like this:

+
sources/
+    my_module.move
+    another_module.move
+    ...
+tests/
+    ...
+examples/
+    using_my_module.move
+Move.toml
+
+

The tests directory is optional and contains tests for the package. Code placed into the tests directory is not published on-chain and is only availably in tests. The examples directory can be used for code examples, and is also not published on-chain.

+

Published Package

+

During development, package doesn't have an address and it needs to be set to 0x0. Once a package is published, it gets a single unique address on the blockchain containing its modules' bytecode. A published package becomes immutable and can be interacted with by sending transactions.

+
0x...
+    my_module: <bytecode>
+    another_module: <bytecode>
+
+ + +

Package Manifest

+

The Move.toml is a manifest file that describes the package and its dependencies. It is written in TOML format and contains multiple sections, the most important of which are [package], [dependencies] and [addresses].

+
[package]
+name = "my_project"
+version = "0.0.0"
+edition = "2024"
+
+[dependencies]
+Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }
+
+[addresses]
+std =  "0x1"
+alice = "0xA11CE"
+
+[dev-addresses]
+alice = "0xB0B"
+
+

Sections

+

Package

+

The [package] section is used to describe the package. None of the fields in this section are published on chain, but they are used in tooling and release management; they also specify the Move edition for the compiler.

+
    +
  • name - the name of the package when it is imported;
  • +
  • version - the version of the package, can be used in release management;
  • +
  • edition - the edition of the Move language; currently, the only valid value is 2024.
  • +
+ +

Dependencies

+

The [dependencies] section is used to specify the dependencies of the project. Each dependency is specified as a key-value pair, where the key is the name of the dependency, and the value is the dependency specification. The dependency specification can be a git repository URL or a path to the local directory.

+
# git repository
+Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }
+
+# local directory
+MyPackage = { local = "../my-package" }
+
+

Packages also import addresses from other packages. For example, the Sui dependency adds the std and sui addresses to the project. These addresses can be used in the code as aliases for the addresses.

+

Resolving version conflicts with override

+

Sometimes dependencies have conflicting versions of the same package. For example, if you have two dependencies that use different versions of the Sui package, you can override the dependency in the [dependencies] section. To do so, add the override field to the dependency. The version of the dependency specified in the [dependencies] section will be used instead of the one specified in the dependency itself.

+
[dependencies]
+Sui = { override = true, git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }
+
+

Dev-dependencies

+

It is possible to add [dev-dependencies] section to the manifest. It is used to override dependencies in the dev and test modes. For example, if you want to use a different version of the Sui package in the dev mode, you can add a custom dependency specification to the [dev-dependencies] section.

+

Addresses

+

The [addresses] section is used to add aliases for the addresses. Any address can be specified in this section, and then used in the code as an alias. For example, if you add alice = "0xA11CE" to this section, you can use alice as 0xA11CE in the code.

+

Dev-addresses

+

The [dev-addresses] section is the same as [addresses], but only works for the test and dev modes. Important to note that it is impossible to introduce new aliases in this section, only override the existing ones. So in the example above, if you add alice = "0xB0B" to this section, the alice address will be 0xB0B in the test and dev modes, and 0xA11CE in the regular build.

+

TOML styles

+

The TOML format supports two styles for tables: inline and multiline. The examples above are using the inline style, but it is also possible to use the multiline style. You wouldn't want to use it for the [package] section, but it can be useful for the dependencies.

+
# Inline style
+[dependencies]
+Sui = { override = true, git = "", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }
+MyPackage = { local = "../my-package" }
+
+
# Multiline style
+[dependencies.Sui]
+override = true
+git = "https://github.com/MystenLabs/sui.git"
+subdir = "crates/sui-framework/packages/sui-framework"
+rev = "framework/testnet"
+
+[dependencies.MyPackage]
+local = "../my-package"
+
+ + +

Addresses

+ +

Address is a unique identifier of a location on the blockchain. It is used to identify packages, accounts, and objects. Address has a fixed size of 32 bytes and is usually represented as a hexadecimal string prefixed with 0x. Addresses are case insensitive.

+
0xe51ff5cd221a81c3d6e22b9e670ddf99004d71de4f769b0312b68c7c4872e2f1
+
+

The address above is an example of a valid address. It is 64 characters long (32 bytes) and is prefixed with 0x.

+

Sui also has reserved addresses that are used to identify standard packages and objects. Reserved addresses are typically simple values that are easy to remember and type. For example, the address of the Standard Library is 0x1. Addresses, shorter than 32 bytes, are padded with zeros to the left.

+
0x1 = 0x0000000000000000000000000000000000000000000000000000000000000001
+
+

Here are some examples of reserved addresses:

+
    +
  • 0x1 - address of the Sui Standard Library (alias std)
  • +
  • 0x2 - address of the Sui Framework (alias sui)
  • +
  • 0x5 - address of the Sui System object
  • +
  • 0x6 - address of the system Clock object
  • +
  • 0x403 - address of the DenyList system object
  • +
+

Further reading

+ +

Module

+ +

Module is the basic unit of organization in a package. A module is a separate scope that contains functions, types, and other items. A package consists of one or more modules.

+

Interacting with a Package

+

Accounts interact with the blockchain by sending transactions. Transactions can call functions in a package, and can also deploy new packages. On Sui, a single transaction can contain multiple operations, we call them "commands". A command can be a call to a function, a deployment of a new package, upgrade of an existing one, or a combination of these. Commands can return values, which can be used in subsequent commands.

+ +

Account

+ +

An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an address.

+

Transaction

+

Transaction is a fundamental concept in the blockchain world. It is a way to interact with a blockchain. Transactions are used to change the state of the blockchain, and they are the only way to do so. In Move, transactions are used to call functions in a package, deploy new packages, and upgrade existing ones.

+ +

Transaction Structure

+

Transactions consist of:

+
    +
  • a sender - the account that signs the transaction
  • +
  • a list (or a chain) of commands - the operations to be executed
  • +
  • command inputs - the arguments for the commands
  • +
  • a gas object - the object used to pay for the transaction
  • +
  • gas price and budget - the cost of the transaction
  • +
+

Object Model

+ +

Sui does not have global storage. Instead, storage is split into a pool of objects. Some of the objects are owned by accounts and available only to them, and some are shared and can be accessed by anyone on the network. There's also a special kind of shared immutable objects, also called frozen, which can't be modified, and act as public chain-wide constants.

+

Each object has a unique 32-byte identifier - UID, it is used to access and reference the object.

+ +

Sui object consists of:

+
    +
  • UID - 32-byte unique identifier (address)
  • +
  • Type - Move type with the key ability
  • +
  • Owner - can be shared, account_address, object_owner or immutable
  • +
  • Digest - hash of the object's content
  • +
  • Version - acts as a nonce
  • +
  • Content - the actual data represented as BCS
  • +
+ +

Your First Sui App

+ +

In this chapter we illustrate the concepts of Sui by building a simple application. Unlike the Hello World example which aims to illustrate Move Compiler, this application is focused on Sui specifics. It is also more complex - it uses objects, and we will publish and use it on Sui.

+

The goal of this mini-project is to demonstrate the process of building, testing, and publishing a Sui application. The result is a simple but complete application that you can use as a starting point for your projects or as a playground to experiment with Sui as you learn.

+

The chapter is split into the following parts (in order):

+ +

Additionally, there's a section with ideas for further development of the application which you may get back to as you progress through the book.

+

Hello Sui!

+

Just like we did with the Hello World example, we will start by initializing a new package using the Sui CLI, then we will implement a simple application that creates a "Postcard" - a digital postcard that can be sent to a friend.

+

Create a new Sui package

+

Sui packages are no different to regular Move packages, and can be initialized using the sui CLI. The following command will create a new package called postcard:

+
$ sui new postcard
+
+

This will create a new directory called postcard with the following structure:

+
postcard
+├── Move.toml
+├── src/
+│   └── postcard.move
+└── tests/
+    └── postcard_tests.move
+
+

The package manifest - Move.toml - already contains all required dependencies for Sui, and the src/postcard.move file is pre-created with a simple module layout.

+
+

In case the Move.toml file does not feature the edition field, please, add it manually. The edition field under the [package] section should be set to 2024.beta.

+

Like this: edition = "2024.beta"

+
+

Implement the Postcard application

+

The Postcard application will be a simple module that defines an object, and a set of functions to create, modify and send the postcard to any address.

+

Let's start by inserting the code. Replace the contents of the src/postcard.move file with the following:

+
module postcard::postcard {
+    use std::string::String;
+    use sui::object::UID;
+    use sui::transfer;
+    use sui::tx_context::TxContext;
+
+    use fun sui::object::new as TxContext.new;
+
+    /// The Postcard object.
+    public struct Postcard has key {
+        /// The unique identifier of the Object.
+        /// Created using the `object::new()` function.
+        id: UID,
+        /// The message to be printed on the gift card.
+        message: String,
+    }
+
+    /// Create a new Postcard with a message.
+    public fun new(message: String, ctx: &mut TxContext): Postcard {
+        Postcard {
+            id: ctx.new(),
+            message,
+        }
+    }
+
+    /// Send the Postcard to the specified address.
+    public fun send_to(card: Postcard, to: address) {
+        transfer::transfer(card, to)
+    }
+
+    /// Keep the Postcard for yourself.
+    public fun keep(card: Postcard, ctx: &TxContext) {
+        transfer::transfer(card, ctx.sender())
+    }
+
+    /// Update the message on the Postcard.
+    public fun update(card: &mut Postcard, message: String) {
+        card.message = message
+    }
+}
+
+

To make sure that everything is working as expected, run this command:

+
$ sui move build
+
+

You should see this output, indicating that the package was built successfully. There shouldn't be any errors following the BUILDING postcard line:

+
> $ sui move build
+UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
+INCLUDING DEPENDENCY Sui
+INCLUDING DEPENDENCY MoveStdlib
+BUILDING postcard
+
+

If you do see errors, please, double check the code and the steps you've taken to create the package. It's very likely a typo in one of the commands.

+

Next steps

+

In the next section we will take a closer look at the structure of the postcard.move file and explain the code we've just inserted. We will also discuss the imports and the object definition in more detail.

+

Using Objects

+

Let's take a look at the code we've inserted into the postcard.move file. We will discuss the structure of the module and the code in more detail, and explain the way the Postcard object is created, used and stored.

+

Module

+

First line of the file is the module declaration. The address of the module is package - a name defined in the Move.toml file. The module name is also postcard. The module body is enclosed in curly braces {}.

+
module postcard::postcard {
+
+

Imports

+

In the top of the module we import types and other modules from the Standard Library (std) and from the Sui Framework (sui). The Sui Framework is required to define and create objects as it contains the UID and TxContext types - two essential types for objects.

+

We also import the sui::transfer module - this module contains storage and transfer functions.

+
    use std::string::String;
+    use sui::object::UID;
+    use sui::transfer;
+    use sui::tx_context::TxContext;
+
+

Postcard is an Object

+

A public struct Postcard, that goes after imports, is an object. A struct with the key ability is an object on Sui. As such, its first field must be id of type UID (that we imported from the Sui Framework). The id field is the unique identifier and an address of the object.

+ +
    /// The Postcard object.
+    public struct Postcard has key {
+        /// The unique identifier of the Object.
+        /// Created using the `object::new()` function.
+        id: UID,
+        /// The message to be printed on the gift card.
+        message: String,
+    }
+
+

Creating an Object

+

Sui has no global storage, and the objects are stored independently of their package. This is why we defined a single Postcard and not a collection "Postcards". Objects have to be created and stored in the storage before they can be used.

+

The new function is a public function that creates a new instance of the Postcard object and returns it to the caller. It takes two arguments: the message of type String, which is the message on the postcard, and the ctx of type TxContext, a standard type that is automatically inserted by the Sui runtime.

+
    /// Create a new Postcard with a message.
+    public fun new(message: String, ctx: &mut TxContext): Postcard {
+        Postcard {
+            id: ctx.new(),
+            message,
+        }
+    }
+
+

When initializing an instance of Postcard we pass the fields of the struct as arguments, the id is generated from the TxContext argument via the ctx.new() call. And the message is taken as-is from the message argument.

+

Sending a Postcard

+

Objects can't be ignored, so when the function new is called, the returned Postcard needs to be stored. And here's when the sui::transfer module comes into play. The sui::transfer::transfer function is used to store the object at the specified address.

+
    /// Send the Postcard to the specified address.
+    public fun send_to(card: Postcard, to: address) {
+        transfer::transfer(card, to)
+    }
+
+

The function takes the Postcard as the first argument and a value of the address type as the second argument. Both are passed into the transfer function to send — and hence, store — the object to the specified address.

+

Keeping the Object

+

A very common scenario is transfering the object to the caller. This can be done by calling the send_to function with the sender address. It can be read from the ctx argument, which is a TxContext type.

+
    /// Keep the Postcard for yourself.
+    public fun keep(card: Postcard, ctx: &TxContext) {
+        transfer::transfer(card, ctx.sender())
+    }
+
+

Updating the Object

+

The update function is another public function that takes a mutable reference to the Postcard and a String argument. It updates the message field of the Postcard. Because the Postcard is passed by a reference, the owner is not changed, and the object is not moved.

+
    /// Update the message on the Postcard.
+    public fun update(card: &mut Postcard, message: String) {
+        card.message = message
+    }
+
+

Next steps

+

In the next section we will write a simple test for the Postcard module to see how it works. Later we will publish the package on Sui DevNet and learn how to use the Sui CLI to interact with the package.

+
+ + + + +

Getting Ready

+

Now that we know what a package, account and storage are, let's get to the basics and learn to write some code.

+

This section covers:

+
    +
  • types
  • +
  • functions
  • +
  • structs
  • +
  • constants
  • +
  • control flow
  • +
  • tests
  • +
+ +

Module

+ +

Module is the base unit of code organization in Move. Modules are used to group and isolate code, and all of the members of the module are private to the module by default. In this section you will learn how to define a module, how to declare its members and how to access them from other modules.

+

Module declaration

+

Modules are declared using the module keyword followed by the package address, module name and the module body inside the curly braces {}. The module name should be in snake_case - all lowercase letters with underscores between words. Modules names must be unique in the package.

+

Usually, a single file in the sources/ folder contains a single module. The file name should match the module name - for example, a donut_shop module should be stored in the donut_shop.move file. You can read more about coding conventions in the Coding Conventions section.

+
module book::my_module {
+    // module body
+}
+
+

Structs, functions and constants, imports and friend declarations are all part of the module:

+ +

Address / Named address

+

Module address can be specified as both: an address literal (does not require the @ prefix) or a named address specified in the Package Manifest. In the example below, both are identical because there's a book = "0x0" record in the [addresses] section of the Move.toml.

+
module book::my_module {
+    // module body
+}
+
+module 0x0::address_literal_example {
+    // module body
+}
+
+

Module members

+

Module members are declared inside the module body. To illustrate that, let's define a simple module with a struct, a function and a constant:

+
module book::my_module_with_members {
+    // import
+    use book::my_module;
+
+    // friend declaration
+    friend book::constants;
+
+    // a constant
+    const CONST: u8 = 0;
+
+    // a struct
+    public struct Struct {}
+
+    // method alias
+    public use fun function as Struct.struct_fun;
+
+    // function
+    fun function(_: &Struct) { /* function body */ }
+}
+
+

Address block

+

Before the introduction of the address::module_name syntax, modules were organized into address {} blocks. This way of code organization is still available today, but is not used widely. Modern practices imply having a single module per file, so the address {} block is rather a redundant construct.

+
+

Module addresses can be omitted if modules are organized into address {} blocks.

+
+
address book { // address block
+
+module another_module {
+    // module body
+}
+
+module yet_another_module {
+    // module body
+}
+}
+
+

The modules defined in this code sample will be accessible as:

+
    +
  • book::another_module
  • +
  • book::yet_another_module
  • +
+

Comments

+ +

Comments are a way to add notes or document your code. They are ignored by the compiler and don't result in the Move bytecode. You can use comments to explain what your code does, to add notes to yourself or other developers, to temporarily remove a part of your code, or to generate documentation. There are three types of comments in Move: line comment, block comment, and doc comment.

+

Line comment

+
#[allow(unused_function)]
+module book::comments_line {
+    fun some_function() {
+        // this is a comment line
+    }
+}
+
+

You can use double slash // to comment out the rest of the line. Everything after // will be ignored by the compiler.

+
#[allow(unused_function, unused_variable)]
+module book::comments_line_2 {
+    // let's add a note to everything!
+    fun some_function_with_numbers() {
+        let a = 10;
+        // let b = 10 this line is commented and won't be executed
+        let b = 5; // here comment is placed after code
+        a + b; // result is 15, not 10!
+    }
+}
+
+

Block comment

+

Block comments are used to comment out a block of code. They start with /* and end with */. Everything between /* and */ will be ignored by the compiler. You can use block comments to comment out a single line or multiple lines. You can even use them to comment out a part of a line.

+
#[allow(unused_function)]
+module book::comments_block {
+    fun /* you can comment everywhere */ go_wild() {
+        /* here
+           there
+           everywhere */ let a = 10;
+        let b = /* even here */ 10; /* and again */
+        a + b;
+    }
+    /* you can use it to remove certain expressions or definitions
+    fun empty_commented_out() {
+
+    }
+    */
+}
+
+

This example is a bit extreme, but it shows how you can use block comments to comment out a part of a line.

+

Doc comment

+

Documentation comments are special comments that are used to generate documentation for your code. They are similar to block comments, but they start with three slashes /// and are placed before the definition of the item they document.

+
#[allow(unused_function, unused_const, unused_variable, unused_field)]
+/// Module has documentation!
+module book::comments_doc {
+
+    /// This is a 0x0 address constant!
+    const AN_ADDRESS: address = @0x0;
+
+    /// This is a struct!
+    public struct AStruct {
+        /// This is a field of a struct!
+        a_field: u8,
+    }
+
+    /// This function does something!
+    /// And it's documented!
+    fun do_something() {}
+}
+
+ +

Primitive Types

+ +

For simple values, Move has a number of built-in primitive types. They're the base that makes up all other types. The primitive types are:

+ +

However, before we get to the types, let's first look at how to declare and assign variables in Move.

+

Variables and assignment

+

Variables are declared using the let keyword. They are immutable by default, but can be made mutable using the let mut keyword. The syntax for the let mut statement is:

+
let <variable_name>[: <type>]  = <expression>;
+let mut <variable_name>[: <type>] = <expression>;
+
+

Where:

+
    +
  • <variable_name> - the name of the variable
  • +
  • <type> - the type of the variable, optional
  • +
  • <expression> - the value to be assigned to the variable
  • +
+
let x: bool = true;
+let mut y: u8 = 42;
+
+

A mutable variable can be reassigned using the = operator.

+
y = 43;
+
+

Variables can also be shadowed by re-declaring.

+
let x: u8 = 42;
+let x: u8 = 43;
+
+

Booleans

+

The bool type represents a boolean value - yes or no, true or false. It has two possible values: true and false which are keywords in Move. For booleans, there's no need to explicitly specify the type - the compiler can infer it from the value.

+
let x = true;
+let y = false;
+
+

Booleans are often used to store flags and to control the flow of the program. Please, refer to the Control Flow section for more information.

+

Integer Types

+

Move supports unsigned integers of various sizes: from 8-bit to 256-bit. The integer types are:

+
    +
  • u8 - 8-bit
  • +
  • u16 - 16-bit
  • +
  • u32 - 32-bit
  • +
  • u64 - 64-bit
  • +
  • u128 - 128-bit
  • +
  • u256 - 256-bit
  • +
+
let x: u8 = 42;
+let y: u16 = 42;
+// ...
+let z: u256 = 42;
+
+

Unlike booleans, integer types need to be inferred. In most of the cases, the compiler will infer the type from the value, usually defaulting to u64. However, sometimes the compiler is unable to infer the type and will require an explicit type annotation. It can either be provided during assignment or by using a type suffix.

+
// Both are equivalent
+let x: u8 = 42;
+let x = 42u8;
+
+

Operations

+

Move supports the standard arithmetic operations for integers: addition, subtraction, multiplication, division, and remainder. The syntax for these operations is:

+
+ + + + + +
SyntaxOperationAborts If
+additionResult is too large for the integer type
-subtractionResult is less than zero
*multiplicationResult is too large for the integer type
%modular divisionThe divisor is 0
/truncating divisionThe divisor is 0
+
+

The type of the operands must match, otherwise, the compiler will raise an error. The result of the operation will be of the same type as the operands. To perform operations on different types, the operands need to be cast to the same type.

+ + +

Casting with as

+

Move supports explicit casting between integer types. The syntax for it is:

+
(<expression> as <type>)
+
+

Note, that it requires parentheses around the expression to prevent ambiguity.

+
let x: u8 = 42;
+let y: u16 = (x as u16);
+
+

A more complex example, preventing overflow:

+
let x: u8 = 255;
+let y: u8 = 255;
+let z: u16 = (x as u16) + ((y as u16) * 2);
+
+

Overflow

+

Move does not support overflow / underflow, an operation that results in a value outside the range of the type will raise a runtime error. This is a safety feature to prevent unexpected behavior.

+
let x = 255u8;
+let y = 1u8;
+
+// This will raise an error
+let z = x + y;
+
+

Address Type

+ +

To represent addresses, Move uses a special type called address. It is a 32 byte value that can be used to represent any address on the blockchain. Addresses are used in two syntax forms: hexadecimal addresses prefixed with 0x and named addresses.

+
// address literal
+let value: address = @0x1;
+
+// named address registered in Move.toml
+let value = @std;
+let other = @sui;
+
+

An address literal starts with the @ symbol followed by a hexadecimal number or an identifier. The hexadecimal number is interpreted as a 32 byte value. The identifier is looked up in the Move.toml file and replaced with the corresponding address by the compiler. If the identifier is not found in the Move.toml file, the compiler will throw an error.

+

Conversion

+

Sui Framework offers a set of helper functions to work with addresses. Given that the address type is a 32 byte value, it can be converted to a u256 type and vice versa. It can also be converted to and from a vector<u8> type.

+

Example: Convert an address to a u256 type and back.

+
use sui::address;
+
+let addr_as_u256: u256 = address::to_u256(@0x1);
+let addr = address::from_u256(addr_as_u256);
+
+

Example: Convert an address to a vector<u8> type and back.

+
use sui::address;
+
+let addr_as_u8: vector<u8> = address::to_bytes(@0x1);
+let addr = address::from_bytes(addr_as_u8);
+
+

Example: Convert an address into a string.

+
use sui::address;
+use std::string;
+
+let addr_as_string: String = address::to_string(@0x1);
+
+

Expression

+

In programming languages expression is a unit of code which returns a value, in Move, almost everything is an expression, - with the sole exception of let statement which is a declaration. In this section, we cover the types of expressions and introduce the concept of scope.

+
+

Expressions are sequenced with semicolons ;. If there's "no expression" after the semicolon, the compiler will insert an empty expression ().

+
+

Empty Expression

+

The very base of the expression is the empty expression. It is a valid expression that does nothing and returns nothing. An empty expression is written as empty parentheses (). It's rarely the case when you need to use an empty expression. The compiler automatically inserts empty expressions where needed, for example in an empty Scope. Though, it may be helpful to know that it exists. Parentheses are also used to group expressions to control the order of evaluation.

+
// variable `a` has no value;
+let a = ();
+
+// similarly, we could write:
+let a;
+
+

Literals

+

In the Primitive Types section, we introduced the basic types of Move. And to illustrate them, we used literals. A literal is a notation for representing a fixed value in the source code. Literals are used to initialize variables and to pass arguments to functions. Move has the following literals:

+
    +
  • true and false for boolean values
  • +
  • 0, 1, 123123 or other numeric for integer values
  • +
  • 0x0, 0x1, 0x123 or other hexadecimal for integer values
  • +
  • b"bytes_vector" for byte vector values
  • +
  • x"0A" HEX literal for byte values
  • +
+
let b = true;     // true is a literal
+let n = 1000;     // 1000 is a literal
+let h = 0x0A;     // 0x0A is a literal
+let v = b"hello"; // b'hello' is a byte vector literal
+let x = x"0A";    // x'0A' is a byte vector literal
+let c = vector[1, 2, 3]; // vector[] is a vector literal
+
+

Operators

+

Ariphmetic, logical, and bitwise operators are used to perform operations on values. The result of an operation is a value, so operators are also expressions.

+
let sum = 1 + 2;   // 1 + 2 is an expression
+let sum = (1 + 2); // the same expression with parentheses
+let is_true = true && false; // true && false is an expression
+let is_true = (true && false); // the same expression with parentheses
+
+

Blocks

+

A block is a sequence of statements and expressions, and it returns the value of the last expression in the block. A block is written as a pair of curly braces {}. A block is an expression, so it can be used anywhere an expression is expected.

+
// block with an empty expression, however, the compiler will
+// insert an empty expression automatically: `let none = { () }`
+let none = {};
+
+// block with let statements and an expression.
+let sum = {
+    let a = 1;
+    let b = 2;
+    a + b // last expression is the value of the block
+};
+
+let none = {
+    let a = 1;
+    let b = 2;
+    a + b; // not returned - semicolon.
+    // compiler automatically inserts an empty expression `()`
+};
+
+

Function Calls

+

We go into detail about functions in the Functions section. However, we already used function calls in the previous sections, so it's worth mentioning them here. A function call is an expression that calls a function and returns the value of the last expression in the function body.

+
fun add(a: u8, b: u8): u8 {
+    a + b
+}
+
+#[test]
+fun some_other() {
+    let sum = add(1, 2); // add(1, 2) is an expression with type u8
+}
+
+

Control Flow Expressions

+

Control flow expressions are used to control the flow of the program. They are also expressions, so they return a value. We cover control flow expressions in the Control Flow section. Here's a very brief overview:

+
// if is an expression, so it returns a value; if there are 2 branches,
+// the types of the branches must match.
+if (bool_expr) expr1 else expr2;
+
+// while is an expression, but it returns `()`.
+while (bool_expr) expr;
+
+// loop is an expression, but returns `()` as well.
+loop expr;
+
+

Custom Types with Struct

+

Move type system shines when it comes to defining custom types. User defined types can be custom tailored to the specific needs of the application. Not just on the data level, but also in its behavior. In this section we introduce the struct definition and how to use it.

+

Struct

+

To define a custom type, you can use the struct keyword followed by the name of the type. After the name, you can define the fields of the struct. Each field is defined with the field_name: field_type syntax. Field definitions must be separated by commas. The fields can be of any type, including other structs.

+
+

Note: Move does not support recursive structs, meaning a struct cannot contain itself as a field.

+
+
/// A struct representing an artist.
+public struct Artist {
+    /// The name of the artist.
+    name: String,
+}
+
+/// A struct representing a music record.
+public struct Record {
+    /// The title of the record.
+    title: String,
+    /// The artist of the record. Uses the `Artist` type.
+    artist: Artist,
+    /// The year the record was released.
+    year: u16,
+    /// Whether the record is a debut album.
+    is_debut: bool,
+    /// The edition of the record.
+    edition: Option<u16>,
+}
+
+

In the example above, we define a Record struct with five fields. The title field is of type String, the artist field is of type Artist, the year field is of type u16, the is_debut field is of type bool, and the edition field is of type Option<u16>. The edition field is of type Option<u16> to represent that the edition is optional.

+

Structs are private by default, meaning they cannot be imported and used outside of the module they are defined in. Their fields are also private and can't be accessed from outside the module. See visibility for more information on different visibility modifiers.

+
+

A struct by default is internal to the module it is defined in.

+
+

Create and use an instance

+

We described how struct definition works. Now let's see how to initialize a struct and use it. A struct can be initialized using the struct_name { field1: value1, field2: value2, ... } syntax. The fields can be initialized in any order, and all of the fields must be set.

+
// Create an instance of the `Artist` struct.
+let artist = Artist {
+    name: string::utf8(b"The Beatles"),
+};
+
+

In the example above, we create an instance of the Artist struct and set the name field to a string "The Beatles".

+

To access the fields of a struct, you can use the . operator followed by the field name.

+
// Access the `name` field of the `Artist` struct.
+let artist_name = artist.name;
+
+// Access a field of the `Artist` struct.
+assert!(artist.name == string::utf8(b"The Beatles"), 0);
+
+// Mutate the `name` field of the `Artist` struct.
+artist.name = string::utf8(b"Led Zeppelin");
+
+// Check that the `name` field has been mutated.
+assert!(artist.name == string::utf8(b"Led Zeppelin"), 1);
+
+

Only module defining the struct can access its fields (both mutably and immutably). So the above code should be in the same module as the Artist struct.

+

Unpacking a struct

+

Structs are non-discardable by default, meaning that the initiated struct value must be used: either stored or unpacked. Unpacking a struct means deconstructing it into its fields. This is done using the let keyword followed by the struct name and the field names.

+
// Unpack the `Artist` struct and create a new variable `name`
+// with the value of the `name` field.
+let Artist { name } = artist;
+
+

In the example above we unpack the Artist struct and create a new variable name with the value of the name field. Because the variable is not used, the compiler will raise a warning. To suppress the warning, you can use the underscore _ to indicate that the variable is intentionally unused.

+
// Unpack the `Artist` struct and create a new variable `name`
+// with the value of the `name` field. The variable is intentionally unused.
+let Artist { name: _ } = artist;
+
+

Abilities: Drop

+ + +

Move has a unique type system which allows defining type abilities. In the previous section, we introduced the struct definition and how to use it. However, the instances of the Artist and Record structs had to be unpacked for the code to compile. This is default behavior of a struct without abilities. In this section, we introduce the first ability - drop.

+

Abilities syntax

+

Abilities are set in the struct definition using the has keyword followed by a list of abilities. The abilities are separated by commas. Move supports 4 abilities: copy, drop, key, and store. In this section, we cover the first two abilities: copy and drop. The last two abilities are covered in the programmability chapter, when we introduce Objects and storage operations.

+
/// This struct has the `copy` and `drop` abilities.
+struct VeryAble has copy, drop {
+    // field: Type1,
+    // field2: Type2,
+    // ...
+}
+
+

No abilities

+

A struct without abilities cannot be discarded, or copied, or stored in the storage. We call such a struct a Hot Potato. It is a joke, but it is also a good way to remember that a struct without abilities is like a hot potato - it needs to be passed around and handled properly. Hot Potato is one of the most powerful patterns in Move, we go in detail about it in the TODO: authorization patterns chapter.

+

Drop ability

+

The drop ability - the simplest of them - allows the instance of a struct to be ignored or discarded. In many programming languages this behavior is considered default. However, in Move, a struct without the drop ability is not allowed to be ignored. This is a safety feature of the Move language, which ensures that all assets are properly handled. An attempt to ignore a struct without the drop ability will result in a compilation error.

+
module book::drop_ability {
+
+    /// This struct has the `drop` ability.
+    struct IgnoreMe has drop {
+        a: u8,
+        b: u8,
+    }
+
+    /// This struct does not have the `drop` ability.
+    struct NoDrop {}
+
+    #[test]
+    // Create an instance of the `IgnoreMe` struct and ignore it.
+    // Even though we constructed the instance, we don't need to unpack it.
+    fun test_ignore() {
+        let no_drop = NoDrop {};
+        let _ = IgnoreMe { a: 1, b: 2 }; // no need to unpack
+
+        // The value must be unpacked for the code to compile.
+        let NoDrop {} = no_drop; // OK
+    }
+}
+
+

The drop ability is often used on custom collection types to eliminate the need for special handling of the collection when it is no longer needed. For example, a vector type has the drop ability, which allows the vector to be ignored when it is no longer needed. However, the biggest feature of Move's type system is the ability to not have drop. This ensures that the assets are properly handled and not ignored.

+

A struct with a single drop ability is called a Witness. We explain the concept of a Witness in the Witness and Abstract Implementation section.

+

Importing Modules

+ + +

Move achieves high modularity and code reuse by allowing module imports. Modules within the same package can import each other, and a new package can depend on already existing packages and use their modules too. This section will cover the basics of importing modules and how to use them in your own code.

+

Importing a Module

+

Modules defined in the same package can import each other. The use keyword is followed by the module path, which consists of the package address (or alias) and the module name separated by ::.

+

File: sources/module_one.move

+
// File: sources/module_one.move
+module book::module_one {
+    /// Struct defined in the same module.
+    public struct Character has drop {}
+
+    /// Simple function that creates a new `Character` instance.
+    public fun new(): Character { Character {} }
+}
+
+

File: sources/module_two.move

+
module book::module_two {
+    use book::module_one; // importing module_one from the same package
+
+    /// Calls the `new` function from the `module_one` module.
+    public fun create_and_ignore() {
+        let _ = module_one::new();
+    }
+}
+
+

Importing Members

+

You can also import specific members from a module. This is useful when you only need a single function or a single type from a module. The syntax is the same as for importing a module, but you add the member name after the module path.

+
module book::more_imports {
+    use book::module_one::new;       // imports the `new` function from the `module_one` module
+    use book::module_one::Character; // importing the `Character` struct from the `module_one` module
+
+    /// Calls the `new` function from the `module_one` module.
+    public fun create_character(): Character {
+        new()
+    }
+}
+
+

Grouping Imports

+

Imports can be grouped into a single use statement using the curly braces {}. This is useful when you need to import multiple members from the same module. Move allows grouping imports from the same module and from the same package.

+
module book::grouped_imports {
+    // imports the `new` function and the `Character` struct from
+    /// the `module_one` module
+    use book::module_one::{new, Character};
+
+    /// Calls the `new` function from the `module_one` module.
+    public fun create_character(): Character {
+        new()
+    }
+}
+
+

Single function imports are less common in Move, since the function names can overlap and cause confusion. A recommended practice is to import the entire module and use the module path to access the function. Types have unique names and should be imported individually.

+

To import members and the module itself in the group import, you can use the Self keyword. The Self keyword refers to the module itself and can be used to import the module and its members.

+
module book::self_imports {
+    // imports the `Character` struct, and the `module_one` module
+    use book::module_one::{Self, Character};
+
+    /// Calls the `new` function from the `module_one` module.
+    public fun create_character(): Character {
+        module_one::new()
+    }
+}
+
+

Resolving Name Conflicts

+

When importing multiple members from different modules, it is possible to have name conflicts. For example, if you import two modules that both have a function with the same name, you will need to use the module path to access the function. It is also possible to have modules with the same name in different packages. To resolve the conflict and avoid ambiguity, Move offers the as keyword to rename the imported member.

+
module book::conflict_resolution {
+    // `as` can be placed after any import, including group imports
+    use book::module_one::{Self as mod, Character as Char};
+
+    /// Calls the `new` function from the `module_one` module.
+    public fun create(): Char {
+        mod::new_two()
+    }
+}
+
+

Adding an External Dependency

+

Every new package generated via the sui binary features a Move.toml file with a single dependency on the Sui Framework package. The Sui Framework depends on the Standard Library package. And both of these packages are available in default configuration. Package dependencies are defined in the Package Manifest as follows:

+
[dependencies]
+Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }
+Local = { local = "../my_other_package" }
+
+

The dependencies section contains a list of package dependencies. The key is the name of the package, and the value is either a git import table or a local path. The git import contains the URL of the package, the subdirectory where the package is located, and the revision of the package. The local path is a relative path to the package directory.

+

If a dependency is added to the Move.toml file, the compiler will automatically fetch (and later refetch) the dependencies when building the package.

+

Importing a Module from Another Package

+

Normally, packages define their addresses in the [addresses] section, so you can use the alias instead of the address. For example, instead of 0x2::coin module, you would use sui::coin. The sui alias is defined in the Sui Framework package. Similarly, the std alias is defined in the Standard Library package and can be used to access the standard library modules.

+

To import a module from another package, you use the use keyword followed by the module path. The module path consists of the package address (or alias) and the module name separated by ::.

+
module book::imports {
+    use std::string; // std = 0x1, string is a module in the standard library
+    use sui::coin;   // sui = 0x2, coin is a module in the Sui Framework
+}
+
+

Standard Library

+ +

The Move Standard Library provides functionality for native types and operations. It is a standard collection of modules which does utilize the storage model, and operates on native types. It is the only dependency of the Sui Framework, and is imported together with it.

+

Most Common Modules

+

In this book we go into detail about most of the modules in the standard library, however, it is also helpful to give an overview of the features, so that you can get a sense of what is available and which module implements that.

+
+ + + + + + + + + + + +
ModuleDescriptionChapter
std::debugContains debugging functionsDebugging
std::type_nameAllows runtime type reflectionGenerics
std::stringProvides basic string operationsStrings
std::asciiProvides basic ASCII operationsStrings
std::optionImplements an Option<T>Option
std::vectorNative operations on the vector typeVector
std::hashHashing functions: sha2_256 and sha3_256Cryptography and Hashing
std::bcsContains the bcs::to_bytes() functionBCS
std::addressContains a single address::length functionAddress
std::bit_vectorProvides operations on bit vectors-
std::fixed_point32Provides the FixedPoint32 type-
+
+

Importing std without Sui Framework

+

The Move Standard Library can be imported to the package directly. However, std alone is not enough to build a meaningful application, as it does not provide any storage capabilities, and can't interact with the on-chain state.

+
MoveStdlib = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/move-stdlib", rev = "framework/mainnet" }
+
+

Vector

+

Vectors are a native way to store collections of elements in Move. They are similar to arrays in other programming languages, but with a few differences. In this section, we introduce the vector type and its operations.

+

Vector syntax

+

The vector type is defined using the vector keyword followed by the type of the elements in angle brackets. The type of the elements can be any valid Move type, including other vectors. Move has a vector literal syntax that allows you to create vectors using the vector keyword followed by square brackets containing the elements (or no elements for an empty vector).

+
/// An empty vector of bool elements.
+let empty: vector<bool> = vector[];
+
+/// A vector of u8 elements.
+let v: vector<u8> = vector[10, 20, 30];
+
+/// A vector of vector<u8> elements.
+let vv: vector<vector<u8>> = vector[
+    vector[10, 20],
+    vector[30, 40]
+];
+
+

The vector type is a built-in type in Move, and does not need to be imported from a module. However, vector operations are defined in the std::vector module, and you need to import the module to use them.

+

Vector operations

+

The standard library provides methods to manipulate vectors. The following are some of the most commonly used operations:

+
    +
  • push_back: Adds an element to the end of the vector.
  • +
  • pop_back: Removes the last element from the vector.
  • +
  • length: Returns the number of elements in the vector.
  • +
  • is_empty: Returns true if the vector is empty.
  • +
  • remove: Removes an element at a given index.
  • +
+
module book::play_vec {
+
+    #[test]
+    fun vector_methods_test() {
+        let mut v = vector[10u8, 20, 30];
+
+        assert!(v.length() == 3, 0);
+        assert!(!v.is_empty(), 1);
+
+        v.push_back(40);
+        let last_value = v.pop_back();
+
+        assert!(last_value == 40, 2);
+    }
+}
+
+

Destroying a Vector of non-droppable types

+

A vector of non-droppable types cannot be discarded. If you define a vector of types without drop ability, the vector value cannot be ignored. However, if the vector is empty, compiler requires an explicit call to destroy_empty function.

+
module book::non_droppable_vec {
+    struct NoDrop {}
+
+    #[test]
+    fun test_destroy_empty() {
+        let v = vector<NoDrop>[];
+        // while we know that `v` is empty, we still need to call
+        // the explicit `destroy_empty` function to discard the vector.
+        v.destroy_empty();
+    }
+}
+
+

Option

+

Option is a type that represents an optional value which may or may not exist. The concept of Option in Move is borrowed from Rust, and it is a very useful primitive in Move. Option is defined in the Standard Library, and is defined as follows:

+
/// Abstraction of a value that may or may not be present.
+struct Option<Element> has copy, drop, store {
+    vec: vector<Element>
+}
+
+

The Option is a generic type which takes a type parameter Element. It has a single field vec which is a vector of Element. Vector can have length 0 or 1, and this is used to represent the presence or absence of a value.

+

Option type has two variants: Some and None. Some variant contains a value and None variant represents the absence of a value. The Option type is used to represent the absence of a value in a type-safe way, and it is used to avoid the need for empty or undefined values.

+

In Practice

+

To showcase why Option type is necessary, let's look at an example. Consider an application which takes a user input and stores it in a variable. Some fields are required, and some are optional. For example, a user's middle name is optional. While we could use an empty string to represent the absence of a middle name, it would require extra checks to differentiate between an empty string and a missing middle name. Instead, we can use the Option type to represent the middle name.

+
module book::user_registry {
+    use std::string::String;
+    use std::option::Option;
+
+    /// A struct representing a user record.
+    struct User has copy, drop {
+        first_name: String,
+        middle_name: Option<String>,
+        last_name: String,
+    }
+
+    /// Create a new `User` struct with the given fields.
+    public fun register(
+        first_name: String,
+        middle_name: Option<String>,
+        last_name: String,
+    ): User {
+        User { first_name, middle_name, last_name }
+    }
+}
+
+

In the example above, the middle_name field is of type Option<String>. This means that the middle_name field can either contain a String value or be empty. This makes it clear that the middle name is optional, and it avoids the need for extra checks to differentiate between an empty string and a missing middle name.

+

Using Option

+

To use the Option type, you need to import the std::option module and use the Option type. You can then create an Option value using the some or none methods.

+
use std::option;
+
+// `option::some` creates an `Option` value with a value.
+let opt_name = option::some(b"Alice");
+
+// `option.is_some()` returns true if option contains a value.
+assert!(opt_name.is_some(), 1);
+
+// internal value can be `borrow`ed and `borrow_mut`ed.
+assert!(option.borrow() == &b"Alice", 0);
+
+// `option.extract` takes the value out of the option.
+let inner = opt_name.extract();
+
+// `option.is_none()` returns true if option is None.
+assert!(opt_name.is_none(), 2);
+
+

String

+

While Move does not have a built-in to represent strings, it does have a string module in the Standard Library that provides a String type. The string module represents UTF-8 encoded strings, and another module, ascii, provides an ASCII-only String type.

+

Sui execution environment also allows Strings as transaction arguments, so in many cases, String does not to be constructed in the Transaction Block.

+

Strings are bytes

+

No matter which type of string you use, it is important to know that strings are just bytes. The wrappers provided by the string and ascii modules are just that: wrappers. They do provide extra checks and functionality than a vector of bytes, but under the hood, they are just vectors of bytes.

+
module book::string_bytes {
+    /// Anyone can implement a custom string-like type by wrapping a vector.
+    struct MyString {
+        bytes: vector<u8>,
+    }
+
+    /// Implement a `from_bytes` function to convert a vector of bytes to a string.
+    public fun from_bytes(bytes: vector<u8>): MyString {
+        MyString { bytes }
+    }
+
+    /// Implement a `bytes` function to convert a string to a vector of bytes.
+    public fun bytes(self: &MyString): &vector<u8> {
+        &self.bytes
+    }
+}
+
+

Both standard types provide conversions from and to vectors of bytes.

+

Working with UTF-8 Strings

+

While there are two types of strings in the standard library, the string module should be considered the default. It has native implementations of many common operations, and hence is more efficient than the ascii module. To create a string or perform operations on it, you must import the string module:

+
module book::strings {
+    use std::string::{Self, String};
+
+    #[test]
+    fun using_strings() {
+        // strings are normally created using the `utf8` function
+        let mut hello = string::utf8(b"Hello");
+        let world = string::utf8(b", World!");
+
+        // strings can be concatenated using the `append_utf8` function
+        let hello_world = hello.append_utf8(*world.bytes());
+
+        // just like any other type, strings can be compared
+        assert!(hello_world == string::utf8(b"Hello, World!"), 0x0);
+    }
+}
+
+

Safe UTF-8 Operations

+

The default utf8 method is potentially unsafe, as it does not check that the bytes passed to it are valid UTF-8. If you are not sure that the bytes you are passing are valid UTF-8, you should use the try_utf8 method instead. It returns an Option<String>, which is None if the bytes are not valid UTF-8:

+
+

The try_* pattern is used throughout the standard library to indicate that a function may fail. For more information, see the Error Handling section.

+
+
module book::safe_strings {
+    use std::string::{Self, String};
+
+    #[test]
+    fun safe_strings() {
+        // this is a valid UTF-8 string
+        let hello = string::try_utf8(b"Hello");
+
+        assert!(hello.is_some(), 0); // abort if the value is not valid UTF-8
+
+        // this is not a valid UTF-8 string
+        let invalid = string::try_utf8(b"\xFF");
+
+        assert!(invalid.is_none(), 0); // abort if the value is valid UTF-8
+    }
+}
+
+

ASCII Strings

+

TODO: ASCII strings

+

Summary

+

TODO: summary

+

Control Flow

+ +

Control flow statements are used to control the flow of execution in a program. They are used to make decisions, to repeat a block of code, and to exit a block of code early. Move has the following control flow statements (explained in detail below):

+ +

Conditional Statements

+

The if expression is used to make decisions in a program. It evaluates a boolean expression and executes a block of code if the expression is true. Paired with else, it can execute a different block of code if the expression is false.

+

The syntax for the if expression is:

+
if (<bool_expression>) <expression>;
+if (<bool_expression>) <expression> else <expression>;
+
+

Just like any other expression, if requires a semicolon, if there are other expressions following it. The else keyword is optional, except for the case when the resulting value is assigned to a variable. We will cover this below.

+
module book::if_condition {
+    #[test]
+    fun test_if() {
+        let x = 5;
+
+        // `x > 0` is a boolean expression.
+        if (x > 0) {
+            std::debug::print(&b"X is bigger than 0".to_string())
+        };
+    }
+}
+
+

Let's see how we can use if and else to assign a value to a variable:

+
module book::if_else {
+    #[test]
+    fun test_if_else() {
+        let x = 5;
+        let y = if (x > 0) {
+            1
+        } else {
+            0
+        };
+
+        assert!(y == 1, 0);
+    }
+}
+
+

Here we assign the value of the if expression to the variable y. If x is greater than 0, y will be assigned the value 1, otherwise 0. The else block is necessary, because both branches must return a value of the same type. If we omit the else block, the compiler will throw an error.

+ +

Conditional expressions are one of the most important control flow statements in Move. They can use either user provided input or some already stored data to make decisions. In particular, they are used in the assert! macro to check if a condition is true, and if not, to abort execution. We will get to it very soon!

+

Repeating Statements with Loops

+

Loops are used to execute a block of code multiple times. Move has two built-in types of loops: loop and while. In many cases they can be used interchangeably, but usually while is used when the number of iterations is known in advance, and loop is used when the number of iterations is not known in advance or there are multiple exit points.

+

Loops are helpful when dealing with collections, such as vectors, or when we want to repeat a block of code until a certain condition is met. However, it is important to be careful with loops, as they can lead to infinite loops, which can lead to gas exhaustion and the transaction being aborted.

+

The while loop

+

The while statement is used to execute a block of code as long as a boolean expression is true. Just like we've seen with if, the boolean expression is evaluated before each iteration of the loop. Just like conditional statements, the while loop is an expression and requires a semicolon if there are other expressions following it.

+

The syntax for the while loop is:

+
while (<bool_expression>) <expression>;
+
+

Here is an example of a while loop with a very simple condition:

+
module book::while_loop {
+
+    // This function iterates over the `x` variable until it reaches 10, the
+    // return value is the number of iterations it took to reach 10.
+    //
+    // If `x` is 0, then the function will return 10.
+    // If `x` is 5, then the function will return 5.
+    fun while_loop(x: u8): u8 {
+        let mut y = 0;
+
+        // This will loop until `x` is 10.
+        // And will never run if `x` is 10 or more.
+        while (x < 10) {
+            y = y + 1;
+        };
+
+        y
+    }
+
+    #[test]
+    fun test_while() {
+        assert!(while_loop(0) == 10, 0); // 10 times
+        assert!(while_loop(5) == 5, 0);  // 5 times
+        assert!(while_loop(10) == 0, 0); // loop never executed
+    }
+}
+
+

Infinite loop

+

Now let's imagine a scenario where the boolean expression is always true. For example, if we literally passed true to the while condition. As you might expect, this would create an infinite loop, and this is almost what the loop statement works like.

+
module book::infinite_while {
+    #[test]
+    fun test_infinite_while() {
+        let mut x = 0;
+
+        // This will loop forever.
+        while (true) {
+            x = x + 1;
+        };
+
+        // This line will never be executed.
+        assert!(x == 5, 0);
+    }
+}
+
+

An infinite while, or while without a condition, is a loop. The syntax for it is simple:

+
loop <expression>;
+
+

Let's rewrite the previous example using loop instead of while:

+
module book::infinite_loop {
+    #[test]
+    fun test_infinite_loop() {
+        let mut x = 0;
+
+        // This will loop forever.
+        loop {
+            x = x + 1;
+        };
+
+        // This line will never be executed.
+        assert!(x == 5, 0);
+    }
+}
+
+ +

Infinite loops on their own are not very useful in Move, since every operation in Move costs gas, and an infinite loop will lead to gas exhaustion. However, they can be used in combination with break and continue statements to create more complex loops.

+

Exiting a Loop Early

+

As we already mentioned, infinite loops are rather useless on their own. And that's where we introduce the break and continue statements. They are used to exit a loop early, and to skip the rest of the current iteration, respectively.

+

Syntax for the break statement is:

+
break;
+
+

The break statement is used to stop the execution of a loop and exit it early. It is often used in combination with a conditional statement to exit the loop when a certain condition is met. To illustrate this point, let's turn the infinite loop from the previous example into something that looks and behaves more like a while loop:

+
module book::break_loop {
+    #[test]
+    fun test_break_loop() {
+        let mut x = 0;
+
+        // This will loop until `x` is 5.
+        loop {
+            x = x + 1;
+
+            // If `x` is 5, then exit the loop.
+            if (x == 5) {
+                break; // Exit the loop.
+            }
+        };
+
+        assert!(x == 5, 0);
+    }
+}
+
+

Almost identical to the while loop, right? The break statement is used to exit the loop when x is 5. If we remove the break statement, the loop will run forever, just like the previous example.

+

Skipping an Iteration

+

The continue statement is used to skip the rest of the current iteration and start the next one. Similarly to break, it is used in combination with a conditional statement to skip the rest of the iteration when a certain condition is met.

+

Syntax for the continue statement is

+
continue;
+
+

The example below skips odd numbers and prints only even numbers from 0 to 10:

+
module book::continue_loop {
+    #[test]
+    fun test_continue_loop() {
+        let mut x = 0;
+
+        // This will loop until `x` is 10.
+        loop {
+            x = x + 1;
+
+            // If `x` is odd, then skip the rest of the iteration.
+            if (x % 2 == 1) {
+                continue; // Skip the rest of the iteration.
+            }
+
+            std::debug::print(&x);
+
+            // If `x` is 10, then exit the loop.
+            if (x == 10) {
+                break; // Exit the loop.
+            }
+        };
+
+        assert!(x == 10, 0); // 10
+    }
+}
+
+

break and continue statements can be used in both while and loop loops.

+

Return

+

The return statement is used to exit a function early and return a value. It is often used in combination with a conditional statement to exit the function when a certain condition is met. The syntax for the return statement is:

+
return <expression>;
+
+

Here is an example of a function that returns a value when a certain condition is met:

+
module book::return_statement {
+    // This function returns `true` if `x` is greater than 0 and not 5,
+    // otherwise it returns `false`.
+    fun is_positive(x: u8): bool {
+        if (x == 5) {
+            return false;
+        }
+
+        if (x > 0) {
+            return true;
+        };
+
+        false
+    }
+
+    #[test]
+    fun test_return() {
+        assert!(is_positive(5), false);
+        assert!(is_positive(0), false);
+    }
+}
+
+

Unlike in other languages, the return statement is not required for the last expression in a function. The last expression in a function block is automatically returned. However, the return statement is useful when we want to exit a function early if a certain condition is met.

+

Constants

+ +

Constants are immutable values that are defined at the module level. They often serve as a way to give names to values that are used throughout a module. For example, if there's a default price for a product, you might define a constant for it. Constants are internal to the module and can not be accessed from other modules.

+
module book::shop_price {
+    use sui::coin::{Self, Coin};
+    use sui::sui::SUI;
+
+    /// The price of an item in the shop.
+    const ITEM_PRICE: u64 = 100;
+
+    /// An item sold in the shop.
+    struct Item { /* ... */ }
+
+    /// Purchase an item from the shop.
+    public fun purchase(coin: Coin<SUI>): Item {
+        assert!(coin.value() == ITEM_PRICE, 0);
+
+        Item { /* ... */ }
+    }
+}
+
+

Naming Convention

+

Constants are named using UPPER_SNAKE_CASE. This is a convention that is used throughout the Move codebase. It's a way to make constants stand out from other identifiers in the code. Move compiler will error if the first letter of a constant is not an uppercase letter.

+

Constants are Immutable

+

Constants can't be changed and assigned new values. They are part of the package bytecode, and inherently immutable.

+
module book::immutable_constants {
+    const ITEM_PRICE: u64 = 100;
+
+    // emits an error
+    fun change_price() {
+        ITEM_PRICE = 200;
+    }
+}
+
+

Assert and Abort

+ +

Abort

+

The abort keyword is used to abort the execution of a transaction. It is used in combination with an abort code, which will be returned to the caller of the transaction. The abort code is an integer of type u64 and can be any value.

+
let user_has_access = true;
+
+// abort with a predefined constant if `user_has_access` is false
+if (!user_has_access) {
+    abort 0
+};
+
+// there's an alternative syntax using parenthesis`
+if (user_has_access) {
+   abort(0)
+};
+
+/* ... */
+
+

assert!

+

The assert! macro is a built-in macro that can be used to assert a condition. If the condition is false, the transaction will abort with the given abort code. The assert! macro is a convenient way to abort a transaction if a condition is not met. The macro shortens the code otherwise written with an if expression + abort.

+
// aborts if `user_has_access` is false with abort code 0
+assert!(user_has_access, 0);
+
+// expands into:
+if (!user_has_access) {
+    abort 0
+};
+
+

Error constants

+

To make error codes more descriptive, it is a good practice to define error constants. Error constants are defined as const declarations and are usually prefixed with E followed by a camel case name. Error constatns are no different from other constants and don't have special handling. So their addition is purely a practice for better code readability.

+
/// Error code for when the user has no access.
+const ENoAccess: u64 = 0;
+/// Trying to access a field that does not exist.
+const ENoField: u64 = 1;
+
+// asserts are way more readable now
+assert!(user_has_access, ENoAccess);
+assert!(field_exists, ENoField);
+
+

Further reading

+

We suggest reading the Better Error Handling guide to learn about best practices for error handling in Move.

+

Function

+

Functions are the building blocks of Move programs. They are called from user transactions and from other functions and group executable code into reusable units. Functions can take arguments and return a value. They are declared with the fun keyword at the module level. Just like any other module member, by default they're private and can only be accessed from within the module.

+
module book::math {
+    /// Function takes two arguments of type `u64` and returns their sum.
+    /// The `public` visibility modifier makes the function accessible from
+    /// outside the module.
+    public fun add(a: u64, b: u64): u64 {
+        a + b
+    }
+
+    #[test]
+    fun test_add() {
+        let sum = add(1, 2);
+        assert!(sum == 3, 0);
+    }
+}
+
+

In this example, we define a function add that takes two arguments of type u64 and returns their sum. The function is called from the test_add function, which is a test function located in the same module. In the test we compare the result of the add function with the expected value and abort the execution if the result is different.

+

Function declaration

+
+

There's a convention to call functions in Move with the snake_case naming convention. This means that the function name should be all lowercase with words separated by underscores. For example, do_something, add, get_balance, is_authorized, and so on.

+
+

A function is declared with the fun keyword followed by the function name (a valid Move identifier), a list of arguments in parentheses, and a return type. The function body is a block of code that contains a sequence of statements and expressions. The last expression in the function body is the return value of the function.

+
fun return_nothing() {
+    // empty expression, function returns `()`
+}
+
+

Accessing functions

+

Just like any other module member, functions can be imported and accessed via a path. The path consists of the module path and the function name separated by ::. For example, if you have a function called add in the math module in the book package, the path to it will be book::math::add, or, if the module is imported, math::add.

+
module book::use_math {
+    use book::math;
+
+    fun call_add() {
+        // function is called via the path
+        let sum = math::add(1, 2);
+    }
+}
+
+

Multiple return values

+

Move functions can return multiple values, which is useful when you need to return more than one value from a function. The return type of the function is a tuple of types. The return value is a tuple of expressions.

+
fun get_name_and_age(): (vector<u8>, u8) {
+    (b"John", 25)
+}
+
+

Result of a function call with tuple return has to be unpacked into variables via let (tuple) syntax:

+
// declare name and age as immutable
+let (name, age) = get_name_and_age();
+
+

If any of the declared values need to be declared as mutable, the mut keyword is placed before the variable name:

+
// declare name as mutable, age as immutable
+let (mut name, age) = get_name_and_age();
+
+

If some of the arguments are not used, they can be ignored with the _ symbol:

+
// ignore the name, declare age as mutable
+let (_, mut age) = get_name_and_age();
+
+

Struct Methods

+

Move Compiler supports receiver syntax, which allows defining methods which can be called on instances of a struct. This is similar to the method syntax in other programming languages. It is a convenient way to define functions which operate on the fields of a struct.

+

Method syntax

+

If the first argument of a function is a struct internal to the module, then the function can be called using the . operator. If the function uses a struct from another module, then method won't be associated with the struct by default. In this case, the function can be called using the standard function call syntax.

+

When a module is imported, the methods are automatically associated with the struct.

+
module book::hero {
+    /// A struct representing a hero.
+    struct Hero has drop {
+        health: u8,
+        mana: u8,
+    }
+
+    /// Create a new Hero.
+    public fun new(): Hero { Hero { health: 100, mana: 100 } }
+
+    /// A method which casts a spell, consuming mana.
+    public fun heal_spell(hero: &mut Hero) {
+        hero.health = hero.health + 10;
+        hero.mana = hero.mana - 10;
+    }
+
+    /// A method which returns the health of the hero.
+    public fun health(hero: &Hero): u8 { hero.health }
+
+    /// A method which returns the mana of the hero.
+    public fun mana(hero: &Hero): u8 { hero.mana }
+
+    #[test]
+    // Test the methods of the `Hero` struct.
+    fun test_methods() {
+        let mut hero = new();
+        hero.heal_spell();
+
+        assert!(hero.health() == 110, 1);
+        assert!(hero.mana() == 90, 2);
+    }
+}
+
+

Method Aliases

+

For modules that define multiple structs and their methods, it is possible to define method aliases to avoid name conflicts, or to provide a better-named method for a struct.

+

The syntax for aliases is:

+
// for local method association
+use fun <function_path> as <Type>.<method_name>;
+
+// exported alias
+public use fun <function_path> as <Type>.<method_name>;
+
+
+

Public aliases are only allowed for structs defined in the same module. If a struct is defined in another module, an alias can still be created but cannot be made public.

+
+

In the example below, we changed the hero module and added another type - Villain. Both Hero and Villain have similar field names and methods. And to avoid name conflicts, we prefixed methods with hero_ and villain_ respectively. However, we can create aliases for these methods so that they can be called on the instances of the structs without the prefix.

+
module book::hero_and_villain {
+    /// A struct representing a hero.
+    struct Hero has drop {
+        health: u8,
+    }
+
+    /// A struct representing a villain.
+    struct Villain has drop {
+        health: u8,
+    }
+
+    /// Create a new Hero.
+    public fun new_hero(): Hero { Hero { health: 100 } }
+
+    /// Create a new Villain.
+    public fun new_villain(): Villain { Villain { health: 100 } }
+
+    // Alias for the `hero_health` method. Will be imported automatically when
+    // the module is imported.
+    public use fun hero_health as Hero.health;
+
+    public fun hero_health(hero: &Hero): u8 { hero.health }
+
+    // Alias for the `villain_health` method. Will be imported automatically
+    // when the module is imported.
+    public use fun villain_health as Villain.health;
+
+    public fun villain_health(villain: &Villain): u8 { villain.health }
+
+    #[test]
+    // Test the methods of the `Hero` and `Villain` structs.
+    fun test_associated_methods() {
+        let mut hero = new_hero();
+        assert!(hero.health() == 100, 1);
+
+        let mut villain = new_villain();
+        assert!(villain.health() == 100, 3);
+    }
+}
+
+

As you can see, in the test function, we called the health method on the instances of Hero and Villain without the prefix. The compiler will automatically associate the methods with the structs.

+

Aliasing an external module's method

+

It is also possible to associate a function defined in another module with a struct from the current module. Following the same approach, we can create an alias for the method defined in another module. Let's use the bcs::to_bytes method from the Standard Library and associate it with the Hero struct. It will allow serializing the Hero struct to a vector of bytes.

+
module book::hero_to_bytes {
+    use std::bcs;
+
+    // Alias for the `bcs::to_bytes` method. Imported aliases should be defined
+    // in the top of the module.
+    public use fun bcs::to_bytes as Hero.to_bytes;
+
+    /// A struct representing a hero.
+    struct Hero has drop {
+        health: u8,
+        mana: u8,
+    }
+
+    /// Create a new Hero.
+    public fun new(): Hero { Hero { health: 100, mana: 100 } }
+
+    // Alias for the `bcs::to_string` method.
+    public use fun bcs::to_bytes as Hero.to_bytes;
+
+    #[test]
+    // Test the methods of the `Hero` struct.
+    fun test_hero_serialize() {
+        let mut hero = new();
+        let serialized = hero.to_bytes();
+        assert!(serialized.length() == 3, 1);
+    }
+}
+
+

Visibility Modifiers

+

Every module member has a visibility. By default, all module members are private - meaning they are only accessible within the module they are defined in. However, you can add a visibility modifier to make a module member public - visible outside the module, or friend - visible in "friend" modules within the same package, or entry - can be called from a transaction but can't be called from other modules.

+

Internal Visibility

+

A function or a struct defined in a module which has no visibility modifier is private.

+
module book::internal_visbility {
+    // This function can be called from other functions in the same module
+    fun internal() { /* ... */ }
+
+    // Same module -> can call internal()
+    fun call_internal() {
+        internal();
+    }
+}
+
+

Move compiler won't allow this code to compile:

+ +
module book::try_calling_internal {
+    use book::internal_visbility;
+
+    // Different module -> can't call internal()
+    fun try_calling_internal() {
+        internal_visbility::internal();
+    }
+}
+
+

Public Visibility

+

TODO: public visibility

+

Friend Visibility

+

TODO: friend visibility

+

Package Visibility

+

TODO: 2024 public(package)

+

Ownership and Scope

+

Every variable in Move has a scope and an owner. The scope is the range of code where the variable is valid, and the owner is the scope that this variable belongs to. Once the owner scope ends, the variable is dropped. This is a fundamental concept in Move, and it is important to understand how it works.

+ +

Ownership

+

A variable defined in a function scope is owned by this scope. The runtime goes through the function scope and executes every expression and statement. Once the function scope end, the variables defined in it are dropped or deallocated.

+
module book::ownership {
+    public fun owner() {
+        let a = 1; // a is owned by the `owner` function
+    } // a is dropped here
+
+    #[test]
+    fun test_owner() {
+        owner();
+        // a is not valid here
+    }
+}
+
+

In the example above, the variable a is owned by the owner function, and the variable b is owned by the other function. When each of these functions are called, the variables are defined, and when the function ends, the variables are discarded.

+

Returning a Value

+

If we changed the owner function to return the variable a, then the ownership of a would be transferred to the caller of the function.

+
module book::ownership {
+    public fun owner(): u8 {
+        let a = 1; // a defined here
+        a // scope ends, a is returned
+    }
+
+    #[test]
+    fun test_owner() {
+        let a = owner();
+        // a is valid here
+    } // a is dropped here
+}
+
+

Passing by Value

+

Additionally, if we passed the variable a to another function, the ownership of a would be transferred to this function. When performing this operation, we move the value from one scope to another. This is also called move semantics.

+
module book::ownership {
+    public fun owner(): u8 {
+        let a = 10;
+        a
+    } // a is returned
+
+    public fun take_ownership(v: u8) {
+        // v is owned by `take_ownership`
+    } // v is dropped here
+
+    #[test]
+    fun test_owner() {
+        let a = owner();
+        take_ownership(a);
+        // a is not valid here
+    }
+}
+
+

Scopes with Blocks

+

Function has a main scope, and it can also have sub-scopes via the use of blocks. A block is a sequence of statements and expressions, and it has its own scope. Variables defined in a block are owned by this block, and when the block ends, the variables are dropped.

+
module book::ownership {
+    public fun owner() {
+        let a = 1; // a is owned by the `owner` function's scope
+        {
+            let b = 2; // b is owned by the block
+            {
+                let c = 3; // c is owned by the block
+            }; // c is dropped here
+        }; // b is dropped here
+        // a = b; // error: b is not valid here
+        // a = c; // error: c is not valid here
+    } // a is dropped here
+}
+
+

However, shall we use the return value of a block, the ownership of the variable is transferred to the caller of the block.

+
module book::ownership {
+    public fun owner(): u8 {
+        let a = 1; // a is owned by the `owner` function's scope
+        let b = {
+            let c = 2; // c is owned by the block
+            c // c is returned
+        }; // c is dropped here
+        a + b // both a and b are valid here
+    }
+}
+
+

Copyable Types

+

Some types in Move are copyable, which means that they can be copied without transferring the ownership. This is useful for types that are small and cheap to copy, such as integers and booleans. Move compiler will automatically copy these types when they are passed to a function or returned from a function, or when they're moved to a scope and then accessed in their original scope.

+

Abilities: Copy

+

In Move, the copy ability on a type indicates that the instance or the value of the type can be copied. While this behavior may feel very natural when working with numbers or other simple types, it is not the default for custom types in Move. This is because Move is designed to express digital assets and resources, and inability to copy is a key element of the resource model.

+

However, Move type system allows you to define custom types with the copy ability.

+
public struct Copyable has copy {}
+
+

In the example above, we define a custom type Copyable with the copy ability. This means that instances of Copyable can be copied, both implicitly and explicitly.

+
let a = Copyable {};
+let b = a;   // `a` is copied to `b`
+let c = *&b; // explicit copy via dereference operator
+
+

In the example above, a is copied to b implicitly, and then explicitly copied to c using the dereference operator. If Copyable did not have the copy ability, the code would not compile, and the Move compiler would raise an error.

+

Copying and Drop

+

The copy ability is closely related to drop ability. If a type has the copy ability, very likely that it should have drop too. This is because the drop ability is required to clean up the resources when the instance is no longer needed. If a type has only copy, then managing its instances gets more complicated, as the values cannot be ignored.

+
public struct Value has copy, drop {}
+
+

All of the primitive types in Move behave as if they have the copy and drop abilities. This means that they can be copied and dropped, and the Move compiler will handle the memory management for them.

+

References

+ +

In the previous section we explained the ownership and scope in Move. We showed how the value is moved to a new scope, and how it changes the owner. In this section, we will explain how to borrow a reference to a value to avoid moving it, and how Move's borrow checker ensures that the references are used correctly.

+

Reference

+

References are a way to borrow a value without changing its owner. Immutable references allow the function to read the value without changing it or moving it. And mutable references allow the function to read and modify the value without moving it. To illustrate this, let's consider a simple example - an application for a metro (subway) pass. We will look at 4 different scenarios:

+
    +
  1. Card can be purchased at the kiosk for a fixed price
  2. +
  3. Card can be shown to inspectors to prove that the passenger has a valid pass
  4. +
  5. Card can be used at the turnstile to enter the metro, and spend a ride
  6. +
  7. Card can be recycled once it's empty
  8. +
+
module book::references {
+
+    /// Error code for when the card is empty.
+    const ENoUses: u64 = 0;
+
+    /// Number of uses for a metro pass card.
+    const USES: u8 = 3;
+
+    /// A metro pass card
+    struct Card { uses: u8 }
+
+    /// Purchase a metro pass card.
+    public fun purchase(/* pass a Coin */): Card {
+        Card { uses: USES }
+    }
+
+    /// Show the metro pass card to the inspector.
+    public fun show(card: &Card): bool {
+        card.uses > 0
+    }
+
+    /// Use the metro pass card at the turnstile to enter the metro.
+    public fun enter_metro(card: &mut Card) {
+        assert!(card.uses > 0, ENoUses);
+        card.uses = card.uses - 1;
+    }
+
+    /// Recycle the metro pass card.
+    public fun recycle(card: Card) {
+        assert!(card.uses == 0, ENoUses);
+        let Card { uses: _ } = card;
+    }
+
+    #[test]
+    fun test_card() {
+        // declaring variable as mutable because we modify it
+        let mut card = purchase();
+
+        card.enter_metro(); // modify the card but don't move it
+        assert!(card.show(), true); // read the card!
+
+        card.enter_metro(); // modify the card but don't move it
+        card.enter_metro(); // modify the card but don't move it
+
+        card.recycle(); // move the card out of the scope
+    }
+}
+
+

Mutable References

+ +

Dereference and Copy

+ +

Notes

+ +

Generics

+

Generics are a way to define a type or function that can work with any type. This is useful when you want to write a function which can be used with different types, or when you want to define a type that can hold any other type. Generics are the foundation of many advanced features in Move, such as collections, abstract implementations, and more.

+

Generic Syntax

+

To define a generic type or function, a type signature needs to have a list of generic parameters enclosed in angle brackets (< and >). The generic parameters are separated by commas.

+
/// Container for any type `T`.
+struct Container<T> has drop {
+    value: T,
+}
+
+/// Function that creates a new `Container` with a generic value `T`.
+public fun new<T>(value: T): Container<T> {
+    Container { value }
+}
+
+

In the example above, Container is a generic type with a single type parameter T, the value field of the container stores the T. The new function is a generic function with a single type parameter T, and it returns a Container with the given value. Generic types must be initialed with a concrete type, and generic functions must be called with a concrete type.

+
#[test]
+fun test_generic() {
+    // these three lines are equivalent
+    let container: Container<u8> = new(10); // type inference
+    let container = new<u8>(10); // create a new `Container` with a `u8` value
+    let container = new(10u8);
+
+    assert!(container.value == 10, 0x0);
+}
+
+

In the test function test_generic we demonstrate three equivalent ways to create a new Container with a u8 value. Because numeric types need to be inferred, we specify the type of the number literal.

+

Multiple Type Parameters

+

You can define a type or function with multiple type parameters. The type parameters are then separated by commas.

+
/// A pair of values of any type `T` and `U`.
+struct Pair<T, U> {
+    first: T,
+    second: U,
+}
+
+/// Function that creates a new `Pair` with two generic values `T` and `U`.
+public fun new_pair<T, U>(first: T, second: U): Pair<T, U> {
+    Pair { first, second }
+}
+
+

In the example above, Pair is a generic type with two type parameters T and U, and the new_pair function is a generic function with two type parameters T and U. The function returns a Pair with the given values. The order of the type parameters is important, and it should match the order of the type parameters in the type signature.

+
#[test]
+fun test_generic() {
+    // these three lines are equivalent
+    let pair: Pair<u8, bool> = new_pair(10, true); // type inference
+    let pair = new_pair<u8, bool>(10, true); // create a new `Pair` with a `u8` and `bool` values
+    let pair = new_pair(10u8, true);
+
+    assert!(pair.first == 10, 0x0);
+    assert!(pair.second, 0x0);
+}
+
+

If we added another instance where we swapped type parameters in the new_pair function, and tried to compare two types, we'd see that the type signatures are different, and cannot be compared.

+
#[test]
+fun test_swap_type_params() {
+    let pair1: Pair<u8, bool> = new_pair(10u8, true);
+    let pair2: Pair<bool, u8> = new_pair(true, 10u8);
+
+    // this line will not compile
+    // assert!(pair1 == pair2, 0x0);
+}
+
+

Types for variables pair1 and pair2 are different, and the comparison will not compile.

+

Why Generics?

+

In the examples above we focused on instantiating generic types and calling generic functions to create instances of these types. However, the real power of generics is the ability to define shared behavior for the base, generic type, and then use it independently of the concrete types. This is especially useful when working with collections, abstract implementations, and other advanced features in Move.

+
/// A user record with name, age, and some generic metadata
+struct User<T> {
+    name: String,
+    age: u8,
+    /// Varies depending on application.
+    metadata: T,
+}
+
+

In the example above, User is a generic type with a single type parameter T, with shared fields name and age, and the generic metadata field which can store any type. No matter what the metadata is, all of the instances of User will have the same fields and methods.

+
/// Updates the name of the user.
+public fun update_name<T>(user: &mut User<T>, name: String) {
+    user.name = name;
+}
+
+/// Updates the age of the user.
+public fun update_age<T>(user: &mut User<T>, age: u8) {
+    user.age = age;
+}
+
+

Phantom Type Parameters

+

In some cases, you may want to define a generic type with a type parameter that is not used in the fields or methods of the type. This is called a phantom type parameter. Phantom type parameters are useful when you want to define a type that can hold any other type, but you want to enforce some constraints on the type parameter.

+
/// A generic type with a phantom type parameter.
+struct Coin<phantom T> {
+    value: u64
+}
+
+

The Coin type here does not contain any fields or methods that use the type parameter T. It is used to differentiate between different types of coins, and to enforce some constraints on the type parameter T.

+
struct USD {}
+struct EUR {}
+
+#[test]
+fun test_phantom_type() {
+    let coin1: Coin<USD> = Coin { value: 10 };
+    let coin2: Coin<EUR> = Coin { value: 20 };
+}
+
+

In the example above, we demonstrate how to create two different instances of Coin with different phantom type parameters USD and EUR. The type parameter T is not used in the fields or methods of the Coin type, but it is used to differentiate between different types of coins. It will make sure that the USD and EUR coins are not mixed up.

+

Constraints on Type Parameters

+

Type parameters can be constrained to have certain abilities. This is useful when you need the inner type to allow certain behavior, such as copy or drop. The syntax for constraining a type parameter is T: <ability> + <ability>.

+
/// A generic type with a type parameter that has the `drop` ability.
+struct Droppable<T: drop> {
+    value: T,
+}
+
+/// A generic struct with a type parameter that has the `copy` and `drop` abilities.
+struct CopyableDroppable<T: copy + drop> {
+    value: T, // T must have the `copy` and `drop` abilities
+}
+
+

Move Compiler will enforce that the type parameter T has the specified abilities. If the type parameter does not have the specified abilities, the code will not compile.

+ +
/// Type without any abilities.
+struct NoAbilities {}
+
+#[test]
+fun test_constraints() {
+    // Fails - `NoAbilities` does not have the `drop` ability
+    let droppable = Droppable<NoAbilities> { value: 10 };
+
+    // Fails - `NoAbilities` does not have the `copy` and `drop` abilities
+    let copyable_droppable = CopyableDroppable<NoAbilities> { value: 10 };
+}
+
+

Further Reading

+

TODO: add links to

+

Type Reflection

+

In programming languages reflection is the ability of a program to examine and modify its own structure and behavior. In Move, there's a limited form of reflection that allows you to inspect the type of a value at runtime. This is useful when you need to store type information in a homogeneous collection, or when you need to check if a type belongs to a package.

+

Type reflection is implemented in the Standard Library module std::type_name. Expressed very roughly, it gives a single function get<T>() which returns the name of the type T.

+

In practice

+

The module is pretty straightforward, and operations allowed on the result are limited to getting a string representation and extracting the module and address of the type.

+
module book::type_reflection {
+    use std::type_name;
+
+    /// A function that returns the name of the type `T` and its module and address.
+    public fun i_dont_know_you<T>(): (String, String, String) {
+        let type_name: TypeName = type_name::get<T>();
+
+        // there's a way to borrow
+        let str: &String = type_name.borrow_string();
+
+        let module_name: String = type_name.get_module();
+        let address_str: String = type_name.get_address();
+
+        // and a way to consume the value
+        let str = type_name.into_string();
+
+        (str, module_name, address_str)
+    }
+
+    #[test_only]
+    struct MyType {}
+
+    #[test]
+    fun test_type_reflection() {
+        let (type_name, module_name, address_str) = i_dont_know_you<MyType>();
+
+        //
+        assert!(module_name == b"type_reflection".to_string(), 1);
+    }
+}
+
+

Further reading

+

Type reflection is an important part of the language, and it is a crucial part of some of the more advanced patterns.

+

Advanced Programmability

+

In previous chapters we've covered the basics of Move and Sui Storage Model. Now it's time to dive deeper into the advanced topics of Sui programmability.

+

This chapter introduces more complex concepts, practices and features of Move and Sui that are essential for building more sophisticated applications. It is intended for developers who are already familiar with the basics of Move and Sui, and are looking to expand their knowledge and skills.

+

Fast Path

+

Due to the object model and the data organization model of Sui, some operations can be performed in a more efficient and parallelized way. This is called the fast path. Transaction that touches shared state requires consensus because it can be accessed by multiple parties at the same time. However, if the transaction only touches the private state (owned objects), there is no need for consensus. This is the fast path.

+

We have a favorite example for this: a coffee machine and a coffee cup. The coffee machine placed in the office is a shared resource - everyone can use it, but there can be only one user at a time. The coffee cup, on the other hand, is a private resource - it belongs to a specific person, and only that person can use it. To make coffee, one needs to use the coffee machine and wait if there's someone else using it. However, once the coffee is made and poured into the cup, the person can take the cup and drink the coffee without waiting for anyone else.

+

The same principle applies to Sui. If a transaction only touches the private state (the cup with coffee), it can be executed without consensus. If it touches the shared state (the coffee machine), it requires consensus. This is the fast path.

+

Frozen objects

+

Consensus is only required for mutating the shared state. If the object is immutable, it is treated as a "constant" and can be accessed in parallel. Frozen objects can be used to share unchangable data between multiple parties without requiring consensus.

+

In practice

+
module book::coffee_machine {
+    use sui::object::{Self, UID};
+    use sui::tx_context::TxContext;
+
+    /// Coffee machine is a shared object, hence requires `key` ability.
+    struct CoffeeMachine has key { id: UID, counter: u16 }
+
+    /// Cup is an owned object.
+    struct Cup has key, store { id: UID, has_coffee: bool }
+
+    /// Initialize the module and share the `CoffeeMachine` object.
+    fun init(ctx: &mut TxContext) {
+        transfer::share_object(CoffeeMachine {
+            id: object::new(ctx),
+            counter: 0
+        });
+    }
+
+    /// Take a cup out of thin air. This is a fast path operation.
+    public fun take_cup(ctx: &mut TxContext): Cup {
+        Cup { id: object::new(ctx), has_coffee: false }
+    }
+
+    /// Make coffee and pour it into the cup. Requires consensus.
+    public fun make_coffee(mut machine: &mut CoffeeMachine, mut cup: &mut Cup) {
+        machine.counter = machine.counter + 1;
+        cup.has_coffee = true;
+    }
+
+    /// Drink coffee from the cup. This is a fast path operation.
+    public fun drink_coffee(mut cup: &mut Cup) {
+        cup.has_coffee = false;
+    }
+
+    /// Put the cup back. This is a fast path operation.
+    public fun put_back(cup: Cup) {
+        let Cup { id, has_coffee: _ } = cup;
+        object::delete(id);
+    }
+}
+
+

Special case: Clock

+

The Clock object with the reserved address 0x6 is a special case of a shared object which maintains the fast path. While being a shared object, it cannot be passed by a mutable reference in a regular transaction. An attempt to do so will not succeed, and the transaction will be rejected.

+ +

Transaction Context

+

Every transaction has the execution context. The context is a set of pre-defined variables that are available to the program during execution. For example, every transaction has a sender address, and the transaction context contains a variable that holds the sender address.

+

The transaction context is available to the program through the TxContext struct. The struct is defined in the sui::tx_context module and contains the following fields:

+

File: sui-framework/tx_context.move

+
/// Information about the transaction currently being executed.
+/// This cannot be constructed by a transaction--it is a privileged object created by
+/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`.
+struct TxContext has drop {
+    /// The address of the user that signed the current transaction
+    sender: address,
+    /// Hash of the current transaction
+    tx_hash: vector<u8>,
+    /// The current epoch number
+    epoch: u64,
+    /// Timestamp that the epoch started at
+    epoch_timestamp_ms: u64,
+    /// Counter recording the number of fresh id's created while executing
+    /// this transaction. Always 0 at the start of a transaction
+    ids_created: u64
+}
+
+

Transaction context cannot be constructed manually or directly modified. It is created by the system and passed to the function as a reference in a transaction. Any function called in a Transaction Block has access to the context and can pass it into the nested calls.

+
+

TxContext has to be the last argument in the function signature.

+
+

Reading the Transaction Context

+

With only exception of the ids_created, all of the fields in the TxContext have getters. The getters are defined in the sui::tx_context module and are available to the program. The getters don't require &mut because they don't modify the context.

+
public fun some_action(ctx: &TxContext) {
+    let _me = ctx.sender()
+    let _epoch = ctx.epoch();
+    let _digest = ctx.digest();
+    // ...
+}
+
+

Mutability

+

The TxContext is required to create new objects (or just UIDs) in the system. New UIDs are derived from the transaction digest, and for the digest to be unique, there needs to be a changing parameter. Sui uses the ids_created field for that. Every time a new UID is created, the ids_created field is incremented by one. This way, the digest is always unique.

+

Internally, it is represented as the derive_id function:

+

File: sui-framework/tx_context.move

+
native fun derive_id(tx_hash: vector<u8>, ids_created: u64): address;
+
+

Generating unique addresses

+

The underlying derive_id function can also be utilized in your program to generate unique addresses. The function itself is not exposed, but a wrapper function fresh_object_address is available in the sui::tx_context module. It may be useful if you need to generate a unique identifier in your program.

+

File: sui-framework/tx_context.move

+
/// Create an `address` that has not been used. As it is an object address, it will never
+/// occur as the address for a user.
+/// In other words, the generated address is a globally unique object ID.
+public fun fresh_object_address(ctx: &mut TxContext): address {
+    let ids_created = ctx.ids_created;
+    let id = derive_id(*&ctx.tx_hash, ids_created);
+    ctx.ids_created = ids_created + 1;
+    id
+}
+
+

Collections

+

Collection types are a fundamental part of any programming language. They are used to store a collection of data, such as a list of items. The vector type has already been covered in the vector section, and in this chapter we will cover the collection types offered by the Sui Framework.

+ +

VecSet

+

VecSet is a collection type that stores a set of unique items. It is similar to a vector, but it does not allow duplicate items. This makes it useful for storing a collection of unique items, such as a list of unique IDs or addresses.

+
module book::collections {
+    use sui::vec_set::{Self, VecSet};
+
+    struct App has drop {
+        /// `VecSet` used in the struct definition
+        subscribers: VecSet<address>
+    }
+
+    #[test]
+    fun vec_set_playground() {
+        let set = vec_set::empty(); // create an empty set
+        let set = vec_set::sigleton(1); // create a set with a single item
+
+        set.insert(2); // add an item to the set
+        set.insert(3);
+
+        assert!(set.contains(1), 0); // check if an item is in the set
+        assert!(set.size() == 3, 1); // get the number of items in the set
+        assert!(!set.is_empty(), 2); // check if the set is empty
+
+        set.remove(2); // remove an item from the set
+    }
+}
+
+

VecMap

+

VecMap is a collection type that stores a map of key-value pairs. It is similar to a VecSet, but it allows you to associate a value with each item in the set. This makes it useful for storing a collection of key-value pairs, such as a list of addresses and their balances, or a list of user IDs and their associated data.

+

Keys in a VecMap are unique, and each key can only be associated with a single value. If you try to insert a key-value pair with a key that already exists in the map, the old value will be replaced with the new value.

+
module book::collections {
+    use std::string::String;
+    use sui::vec_map::{Self, VecMap};
+
+    struct Metadata has drop {
+        name: String
+        /// `VecMap` used in the struct definition
+        attributes: VecMap<String, String>
+    }
+
+    #[test]
+    fun vec_map_playground() {
+        let mut map = vec_map::empty(); // create an empty map
+
+        map.insert(2, b"two".to_string()); // add a key-value pair to the map
+        map.insert(3, b"three".to_string());
+
+        assert!(map.contains(1), 0); // check if a key is in the map
+
+        map.remove(&2); // remove a key-value pair from the map
+    }
+}
+
+

Dynamic Fields

+

Sui Object model allows objects to be attached to other objects as dynamic fields. The behavior is similar to how a Map works in other programming languages, however, the types of attached objects can be any. This allows for a wide range of use cases, such as attaching an accessory to a character, or storing large, non-heterogeneous collections in a single object.

+

Structure

+

Dynamic fields are attached to an object via a key, which can be any type with the store, copy and drop abilities. The key is used to access the attached object, and can be used to update or remove it. The attached object can be any type, if it has the store ability.

+ +

Usage

+

Dynamic fields are defined in the sui::dynamic_field module.

+
module book::accessories {
+
+    struct Character has key {
+        id: UID,
+        name: String
+    }
+
+    /// An accessory that can be attached to a character.
+    struct Accessory has store {
+        type: String,
+        name: String,
+    }
+}
+
+

Dynamic Object Fields

+

TODO:

+
    +
  • dynamic object fields
  • +
  • discoverability benefits of DOFs
  • +
+

Custom Fields for Keys

+

TODO: explain how custom fields ca

+

Applications

+

Dynamic fields are used for:

+
    +
  • Heterogeneous collections
  • +
  • Storing large data that does not fit into the object limit size
  • +
  • Attaching objects to other objects as a part of application logic
  • +
  • Extending existing types with additional data
  • +
  • Storing data that is not always present
  • +
+

Testing

+

#[test] and #[test_only]

+

Unit Testing with Dummy Context

+

Utilizing the Test Scenario

+

Adding Examples

+

When publishing a package that is intented to be used (an NFT protocol or a library), it is important to showcase how this package can be used. This is where examples come in handy. There's no special functionality for examples in Move, however, there are some conventions that are used to mark examples. First of all, only sources are included into the package bytecode, so any code placed in a different directory will not be included, but will be tested!

+

This is why placing examples into a separate examples/ directory is a good idea.

+
sources/
+    protocol.move
+    library.move
+tests/
+    protocol_test.move
+examples/
+    my_example.move
+Move.toml
+
+

Epoch and Time

+

Sui has two ways of accessing the current time: Epoch and Time. The former represents operational periods in the system and changed roughly every 24 hours. The latter represents the current time in milliseconds since the Unix Epoch. Both can be accessed freely in the program.

+

Epoch

+

Epochs are used to separate the system into operational periods. During an epoch the validator set is fixed, however, at the epoch boundary, the validator set can be changed. Epochs play a crucial role in the consensus algorithm and are used to determine the current validator set. They are also used as measurement in the staking mechanism.

+

Epoch can be read from the transaction context:

+
public fun current_epoch(ctx: &TxContext) {
+    let epoch = ctx.epoch();
+    // ...
+}
+
+

It is also possible to get the unix timestamp of the epoch start:

+
public fun current_epoch_start(ctx: &TxContext) {
+    let epoch_start = ctx.epoch_timestamp_ms();
+    // ...
+}
+
+

Normally, epochs are used in staking and system operations, however, in custom scenarios they can be used to emulate 24h periods. They are cricital if an application relies on the staking logic or needs to know the current validator set.

+

Time

+

For a more precise time measurement, Sui provides the Clock object. It is a system object that is updated during checkpoints by the system, which stores the current time in milliseconds since the Unix Epoch. The Clock object is defined in the sui::clock module and has a reserved address 0x6.

+

Clock is a shared object and normally would require consensus to access. However, Clock is special, and the system won't allow accessing it mutably, so that the only way to access it is immutably. This limitation allows parallel access to the Clock object and makes it a fast path operation.

+

File: sui-framework/clock.move

+
/// Singleton shared object that exposes time to Move calls.  This
+/// object is found at address 0x6, and can only be read (accessed
+/// via an immutable reference) by entry functions.
+///
+/// Entry Functions that attempt to accept `Clock` by mutable
+/// reference or value will fail to verify, and honest validators
+/// will not sign or execute transactions that use `Clock` as an
+/// input parameter, unless it is passed by immutable reference.
+struct Clock has key {
+    id: UID,
+    /// The clock's timestamp, which is set automatically by a
+    /// system transaction every time consensus commits a
+    /// schedule, or by `sui::clock::increment_for_testing` during
+    /// testing.
+    timestamp_ms: u64,
+}
+
+

There is only one public function available in the Clock module - timestamp_ms. It returns the current time in milliseconds since the Unix Epoch.

+
/// Clock needs to be passed as an immutable reference.
+public fun current_time(clock: &Clock) {
+    let _time = clock.timestamp_ms();
+    // ...
+}
+
+

Testing

+

TODO: how to use Clock in tests.

+

Abstract Class

+ +

Some of the language features combined together can create patterns that are similar to other programming languages. The simplest example would be "getters and setters" - functions that get and set the value of a field. This pattern is possible, because struct fields are private by default, and can only be accessed through functions.

+

However, there are more advanced patterns, such as the abstract class. An abstract class is a class that cannot be instantiated, but can be inherited from. While Move does not have inheritance, it has generic structs, which can be instantiated with different types. This allows us to create a generic struct that can be used as an abstract class. Combined with a set of Witness-gated functions, this allows us to create a generic struct with a generic implementation.

+

Some of the methods in this approach will be shared and available to all implementations, while others will be abstract and will need to be implemented by the concrete implementations.

+

Generic Struct

+ +

Common methods

+ +

Witness-gated Functions

+ +

Differences from OOP

+

While this approach imitates the abstract class pattern well, it is not the same as the abstract class in OOP. The main difference is that the abstract class in OOP and its implementors have different type. In Move, the base type stays the same, and the implementors set a generic type parameter. Another notable difference is that due to lack of dynamic dispatch and interfaces, the implemented methods are not available through the base type and can even be missing.

+

Usage in Sui Framework

+

The Sui Framework uses this pattern to implement the Coin type and the underlying Balance. Its variation is also used in the Closed Loop Token implementation, however, the latter is a bit more complex, because it uses the Request pattern to dynamically implement the interface.

+

Guides

+

This section contains a collection of guides that cover various aspects of programming on Sui. They are intended to provide a deeper understanding of Sui blockchain and Move language, while also aiming at practical challenges and solutions.

+

Move 2024 Migration Guide

+

Move 2024 is the new edition of the Move language that is maintained by Mysten Labs. This guide is intended to help you understand the differences between the 2024 edition and the previous version of the Move language.

+

Using the New Edition

+

To use the new edition, you need to specify the edition in the move file. The edition is specified in the move file using the edition keyword. Currently, the only available edition is 2024.alpha.

+
edition = "2024.alpha";
+
+

Struct Visibility

+

In Move 2024, structs get a visibility modifier. Just like functions, structs can be public, friend, or private.

+
// Move 2020
+struct Book {}
+
+// Move 2024
+public struct Book {}
+
+

Struct Methods

+

In the new edition, functions which have a struct as the first argument are associated with the struct. This means that the function can be called using the dot notation. Methods defined in the same module with the type are automatically exported.

+
public fun count(c: &Counter): u64 { /* ... */ }
+
+fun use_counter() {
+    // move 2020
+    let count = counter::count(&c);
+
+    // move 2024
+    let count = c.count();
+}
+
+

Borrowing Operator

+

The borrow and borrow_mut functions (when defined) can be accessed using the square brackets. Just like the method syntax, the borrowing functions are associated with the type.

+
fun play_vec() {
+    let v = vector[1,2,3,4];
+    let first = v[0]; // calls vector::borrow(v, 0)
+    v[0] = 5;         // calls vector::borrow_mut(v, 0)
+}
+
+

Method Aliases

+

In Move 2024, generic methods can be associated with types. The alias can be defined for any type privately to the module, or publicly, if the type is defined in the same module.

+
use fun my_custom_function as vector.do_magic;
+
+

Macros

+

Macros are introduced in Move 2024. And assert! is no longer a built-in function - Instead, it's a macro.

+
// can be called as for!(0, 10, |i| call(i));
+macro fun for($start: u64, $stop: u64, $body: |u64|) {
+    let mut i = $start;
+    let stop = $stop;
+    while (i < stop) {
+        $body(i);
+        i = i + 1
+    }
+}
+
+

Upgradability Practices

+

To talk about best practices for upgradability, we need to first understand what can be upgraded in a package. The base premise of upgradability is that an upgrade should not break public compatibility with the previous version. The parts of the module which can be used in dependent packages should not change their static signature. This applies to modules - a module can not be removed from a package, public structs - they can be used in function signatures and public functions - they can be called from other packages.

+
// module can not be removed from the package
+module book::upgradable {
+    // dependencies can be changed
+    use sui::tx_context::TxContext;
+    use sui::object::UID;
+
+    // public structs can not be removed and can't be changed
+    public struct Book has key {
+        id: UID
+    }
+
+    // public functions can not be removed and their signature can never change
+    public fun create_book(ctx: &mut TxContext): Book {
+        create_book_internal(ctx)
+    }
+
+    // friend-only functions can be removed and changed
+    public(friend) fun create_book_friend(ctx: &mut TxContext): Book {
+        create_book_internal(ctx)
+    }
+
+    // entry functions can be removed and changed as long they're not public
+    entry fun create_book_entry(ctx: &mut TxContext): Book {
+        create_book_internal(ctx)
+    }
+
+    // private functions can be removed and changed
+    fun create_book_internal(ctx: &mut TxContext): Book {
+        abort 0
+    }
+}
+
+

Using entry and friend functions

+

TODO: Add a section about entry and friend functions

+

Versioning objects

+ +

To discard previous versions of the package, the objects can be versioned. As long as the object contains a version field, and the code which uses the object expects and asserts a specific version, the code can be force-migrated to the new version. Normally, after an upgrade, admin functions can be used to update the version of the shared state, so that the new version of code can be used, and the old version aborts with a version mismatch.

+
module book::versioned_state {
+
+    const EVersionMismatch: u64 = 0;
+
+    const VERSION: u8 = 1;
+
+    /// The shared state (can be owned too)
+    struct SharedState has key {
+        id: UID,
+        version: u8,
+        /* ... */
+    }
+
+    public fun mutate(state: &mut SharedState) {
+        assert!(state.version == VERSION, EVersionMismatch);
+        // ...
+    }
+}
+
+

Versioning configuration with dynamic fields

+ +

There's a common pattern in Sui which allows changing the stored configuration of an object while retaining the same object signature. This is done by keeping the base object simple and versioned and adding an actual configuration object as a dynamic field. Using this anchor pattern, the configuration can be changed with package upgrades while keeping the same base object signature.

+
module book::versioned_config {
+
+    /// The base object
+    struct Config has key {
+        id: UID,
+        version: u16
+    }
+
+    /// The actual configuration
+    struct ConfigV1 has store {
+        data: Bag,
+        metadata: VecMap<String, String>
+    }
+
+    // ...
+}
+
+

Modular architecture

+

TODO: add two patterns for modular architecture: object capability (SuiFrens) and witness registry (SuiNS)

+

Building against Limits

+

To guarantee the safety and security of the network, Sui has certain limits and restrictions. These limits are in place to prevent abuse and to ensure that the network remains stable and efficient. This guide provides an overview of these limits and restrictions, and how to build your application to work within them.

+

The limits are defined in the protocol configuration and are enforced by the network. If any of the limits are exceeded, the transaction will either be rejected or aborted. The limits, being a part of the protocol, can only be changed through a network upgrade.

+

Transaction Size

+

The size of a transaction is limited to 128KB. This includes the size of the transaction payload, the size of the transaction signature, and the size of the transaction metadata. If a transaction exceeds this limit, it will be rejected by the network.

+

Object Size

+

The size of an object is limited to 256KB. This includes the size of the object data. If an object exceeds this limit, it will be rejected by the network. While a single object cannot bypass this limit, for more extensive storage options, one could use a combination of a base object with other attached to it using dynamic fields (eg Bag).

+

Single Pure Argument Size

+

The size of a single pure argument is limited to 16KB. A transaction argument bigger than this limit will result in execution failure. So in order to create a vector of more than ~500 addresses (given that a single address is 32 bytes), it needs to be joined dynamically either in Transaction Block or in a Move function. Standard functions like vector::append() can join two vectors of ~16KB resulting in a ~32KB of data as a single value.

+

Maximum Number of Objects created

+

The maximum number of objects that can be created in a single transaction is 2048. If a transaction attempts to create more than 2048 objects, it will be rejected by the network. This also affects dynamic fields, as both the key and the value are objects. So the maximum number of dynamic fields that can be created in a single transaction is 1024.

+

Maximum Number of Events

+

The maximum number of events that can be emitted in a single transaction is 1024. If a transaction attempts to emit more than 1024 events, it will be aborted.

+

Better error handling

+

Whenever execution encounters an abort, transaction fails and abort code is returned to the caller. Move VM returns the module name that aborted the transaction and the abort code. This behavior is not fully transparent to the caller of the transaction, especially when a single function contains multiple calls to the same function which may abort. In this case, the caller will not know which call aborted the transaction, and it will be hard to debug the issue or provide meaningful error message to the user.

+
module book::module_a {
+    use book::module_b;
+
+    public fun do_something() {
+        let field_1 = module_b::get_field(1); // may abort with 0
+        /* ... a lot of logic ... */
+        let field_2 = module_b::get_field(2); // may abort with 0
+        /* ... some more logic ... */
+        let field_3 = module_b::get_field(3); // may abort with 0
+    }
+}
+
+

The example above illustrates the case when a single function contains multiple calls which may abort. If the caller of the do_something function receives an abort code 0, it will be hard to understand which call to module_b::get_field aborted the transaction. To address this problem, there are common patterns that can be used to improve error handling.

+

Rule 1: Handle all possible scenarios

+

It is considered a good practice to provide a safe "check" function that returns a boolean value indicating whether an operation can be performed safely. If the module_b provides a function has_field that returns a boolean value indicating whether a field exists, the do_something function can be rewritten as follows:

+
module book::module_a {
+    use book::module_b;
+
+    const ENoField: u64 = 0;
+
+    public fun do_something() {
+        assert!(module_b::has_field(1), ENoField);
+        let field_1 = module_b::get_field(1);
+        /* ... */
+        assert!(module_b::has_field(1), ENoField);
+        let field_2 = module_b::get_field(2);
+        /* ... */
+        assert!(module_b::has_field(1), ENoField);
+        let field_3 = module_b::get_field(3);
+    }
+}
+
+

By adding custom checks before each call to module_b::get_field, the developer of the module_a takes control over the error handling. And it allows implementing the second rule.

+

Rule 2: Abort with different codes

+

The second trick, once the abort codes are handled by the caller module, is to use different abort codes for different scenarios. This way, the caller module can provide a meaningful error message to the user. The module_a can be rewritten as follows:

+
module book::module_a {
+    use book::module_b;
+
+    const ENoFieldA: u64 = 0;
+    const ENoFieldB: u64 = 1;
+    const ENoFieldC: u64 = 2;
+
+    public fun do_something() {
+        assert!(module_b::has_field(1), ENoFieldA);
+        let field_1 = module_b::get_field(1);
+        /* ... */
+        assert!(module_b::has_field(1), ENoFieldB);
+        let field_2 = module_b::get_field(2);
+        /* ... */
+        assert!(module_b::has_field(1), ENoFieldC);
+        let field_3 = module_b::get_field(3);
+    }
+}
+
+

Now, the caller module can provide a meaningful error message to the user. If the caller receives an abort code 0, it can be translated to "Field 1 does not exist". If the caller receives an abort code 1, it can be translated to "Field 2 does not exist". And so on.

+

Rule 3: Return bool instead of assert

+

A developer is often tempted to add a public function that would assert all the conditions and abort the execution. However, it is a better practice to create a function that returns a boolean value instead. This way, the caller module can handle the error and provide a meaningful error message to the user.

+
module book::some_app_assert {
+
+    const ENotAuthorized: u64 = 0;
+
+    public fun do_a() {
+        assert_is_authorized();
+        // ...
+    }
+
+    public fun do_b() {
+        assert_is_authorized();
+        // ...
+    }
+
+    /// Don't do this
+    public fun assert_is_authorized() {
+        assert!(/* some condition */ true, ENotAuthorized);
+    }
+}
+
+

This module can be rewritten as follows:

+
module book::some_app {
+    const ENotAuthorized: u64 = 0;
+
+    public fun do_a() {
+        assert!(is_authorized(), ENotAuthorized);
+        // ...
+    }
+
+    public fun do_b() {
+        assert!(is_authorized(), ENotAuthorized);
+        // ...
+    }
+
+    public fun is_authorized(): bool {
+        /* some condition */ true
+    }
+
+    // a private function can still be used to avoid code duplication for a case
+    // when the same condition with the same abort code is used in multiple places
+    fun assert_is_authorized() {
+        assert!(is_authorized(), ENotAuthorized);
+    }
+}
+
+

Utilizing these three rules will make the error handling more transparent to the caller of the transaction, and it will allow other developers to use custom abort codes in their modules.

+

Glossary

+
    +
  • Fast Path - term used to describe a transaction that does not involve shared objects, and can be executed without the need for consensus.
  • +
  • Internal Type - type that is defined within the module. Fields of this type can not be accessed from outside the module, and, in case of "key"-only abilities, can not be used in public_* transfer functions.
  • +
+

Abilities

+
    +
  • key - ability that allows the struct to be used as a key in the storage. On Sui, the key ability marks an object and requires the first field to be a id: UID.
  • +
  • store - ability that allows the struct to be stored inside other objects. This ability relaxes restrictions applied to internal structs, allowing public_* transfer functions to accept them as arguments. It also enables the object to be stored as a dynamic field.
  • +
  • copy - ability that allows the struct to be copied. On Sui, the copy ability conflicts with the key ability, and can not be used together with it.
  • +
  • drop - ability that allows the struct to be ignored or discarded. On Sui, the drop ability cannot be used together with the key ability, as objects are not allowed to be ignored.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/sui/searcher.js b/sui/searcher.js new file mode 100644 index 00000000..dc03e0a0 --- /dev/null +++ b/sui/searcher.js @@ -0,0 +1,483 @@ +"use strict"; +window.search = window.search || {}; +(function search(search) { + // Search functionality + // + // You can use !hasFocus() to prevent keyhandling in your key + // event handlers while the user is typing their search. + + if (!Mark || !elasticlunr) { + return; + } + + //IE 11 Compatibility from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith + if (!String.prototype.startsWith) { + String.prototype.startsWith = function(search, pos) { + return this.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search; + }; + } + + var search_wrap = document.getElementById('search-wrapper'), + searchbar = document.getElementById('searchbar'), + searchbar_outer = document.getElementById('searchbar-outer'), + searchresults = document.getElementById('searchresults'), + searchresults_outer = document.getElementById('searchresults-outer'), + searchresults_header = document.getElementById('searchresults-header'), + searchicon = document.getElementById('search-toggle'), + content = document.getElementById('content'), + + searchindex = null, + doc_urls = [], + results_options = { + teaser_word_count: 30, + limit_results: 30, + }, + search_options = { + bool: "AND", + expand: true, + fields: { + title: {boost: 1}, + body: {boost: 1}, + breadcrumbs: {boost: 0} + } + }, + mark_exclude = [], + marker = new Mark(content), + current_searchterm = "", + URL_SEARCH_PARAM = 'search', + URL_MARK_PARAM = 'highlight', + teaser_count = 0, + + SEARCH_HOTKEY_KEYCODE = 83, + ESCAPE_KEYCODE = 27, + DOWN_KEYCODE = 40, + UP_KEYCODE = 38, + SELECT_KEYCODE = 13; + + function hasFocus() { + return searchbar === document.activeElement; + } + + function removeChildren(elem) { + while (elem.firstChild) { + elem.removeChild(elem.firstChild); + } + } + + // Helper to parse a url into its building blocks. + function parseURL(url) { + var a = document.createElement('a'); + a.href = url; + return { + source: url, + protocol: a.protocol.replace(':',''), + host: a.hostname, + port: a.port, + params: (function(){ + var ret = {}; + var seg = a.search.replace(/^\?/,'').split('&'); + var len = seg.length, i = 0, s; + for (;i': '>', + '"': '"', + "'": ''' + }; + var repl = function(c) { return MAP[c]; }; + return function(s) { + return s.replace(/[&<>'"]/g, repl); + }; + })(); + + function formatSearchMetric(count, searchterm) { + if (count == 1) { + return count + " search result for '" + searchterm + "':"; + } else if (count == 0) { + return "No search results for '" + searchterm + "'."; + } else { + return count + " search results for '" + searchterm + "':"; + } + } + + function formatSearchResult(result, searchterms) { + var teaser = makeTeaser(escapeHTML(result.doc.body), searchterms); + teaser_count++; + + // The ?URL_MARK_PARAM= parameter belongs inbetween the page and the #heading-anchor + var url = doc_urls[result.ref].split("#"); + if (url.length == 1) { // no anchor found + url.push(""); + } + + // encodeURIComponent escapes all chars that could allow an XSS except + // for '. Due to that we also manually replace ' with its url-encoded + // representation (%27). + var searchterms = encodeURIComponent(searchterms.join(" ")).replace(/\'/g, "%27"); + + return '' + result.doc.breadcrumbs + '' + + '' + + teaser + ''; + } + + function makeTeaser(body, searchterms) { + // The strategy is as follows: + // First, assign a value to each word in the document: + // Words that correspond to search terms (stemmer aware): 40 + // Normal words: 2 + // First word in a sentence: 8 + // Then use a sliding window with a constant number of words and count the + // sum of the values of the words within the window. Then use the window that got the + // maximum sum. If there are multiple maximas, then get the last one. + // Enclose the terms in . + var stemmed_searchterms = searchterms.map(function(w) { + return elasticlunr.stemmer(w.toLowerCase()); + }); + var searchterm_weight = 40; + var weighted = []; // contains elements of ["word", weight, index_in_document] + // split in sentences, then words + var sentences = body.toLowerCase().split('. '); + var index = 0; + var value = 0; + var searchterm_found = false; + for (var sentenceindex in sentences) { + var words = sentences[sentenceindex].split(' '); + value = 8; + for (var wordindex in words) { + var word = words[wordindex]; + if (word.length > 0) { + for (var searchtermindex in stemmed_searchterms) { + if (elasticlunr.stemmer(word).startsWith(stemmed_searchterms[searchtermindex])) { + value = searchterm_weight; + searchterm_found = true; + } + }; + weighted.push([word, value, index]); + value = 2; + } + index += word.length; + index += 1; // ' ' or '.' if last word in sentence + }; + index += 1; // because we split at a two-char boundary '. ' + }; + + if (weighted.length == 0) { + return body; + } + + var window_weight = []; + var window_size = Math.min(weighted.length, results_options.teaser_word_count); + + var cur_sum = 0; + for (var wordindex = 0; wordindex < window_size; wordindex++) { + cur_sum += weighted[wordindex][1]; + }; + window_weight.push(cur_sum); + for (var wordindex = 0; wordindex < weighted.length - window_size; wordindex++) { + cur_sum -= weighted[wordindex][1]; + cur_sum += weighted[wordindex + window_size][1]; + window_weight.push(cur_sum); + }; + + if (searchterm_found) { + var max_sum = 0; + var max_sum_window_index = 0; + // backwards + for (var i = window_weight.length - 1; i >= 0; i--) { + if (window_weight[i] > max_sum) { + max_sum = window_weight[i]; + max_sum_window_index = i; + } + }; + } else { + max_sum_window_index = 0; + } + + // add around searchterms + var teaser_split = []; + var index = weighted[max_sum_window_index][2]; + for (var i = max_sum_window_index; i < max_sum_window_index+window_size; i++) { + var word = weighted[i]; + if (index < word[2]) { + // missing text from index to start of `word` + teaser_split.push(body.substring(index, word[2])); + index = word[2]; + } + if (word[1] == searchterm_weight) { + teaser_split.push("") + } + index = word[2] + word[0].length; + teaser_split.push(body.substring(word[2], index)); + if (word[1] == searchterm_weight) { + teaser_split.push("") + } + }; + + return teaser_split.join(''); + } + + function init(config) { + results_options = config.results_options; + search_options = config.search_options; + searchbar_outer = config.searchbar_outer; + doc_urls = config.doc_urls; + searchindex = elasticlunr.Index.load(config.index); + + // Set up events + searchicon.addEventListener('click', function(e) { searchIconClickHandler(); }, false); + searchbar.addEventListener('keyup', function(e) { searchbarKeyUpHandler(); }, false); + document.addEventListener('keydown', function(e) { globalKeyHandler(e); }, false); + // If the user uses the browser buttons, do the same as if a reload happened + window.onpopstate = function(e) { doSearchOrMarkFromUrl(); }; + // Suppress "submit" events so the page doesn't reload when the user presses Enter + document.addEventListener('submit', function(e) { e.preventDefault(); }, false); + + // If reloaded, do the search or mark again, depending on the current url parameters + doSearchOrMarkFromUrl(); + } + + function unfocusSearchbar() { + // hacky, but just focusing a div only works once + var tmp = document.createElement('input'); + tmp.setAttribute('style', 'position: absolute; opacity: 0;'); + searchicon.appendChild(tmp); + tmp.focus(); + tmp.remove(); + } + + // On reload or browser history backwards/forwards events, parse the url and do search or mark + function doSearchOrMarkFromUrl() { + // Check current URL for search request + var url = parseURL(window.location.href); + if (url.params.hasOwnProperty(URL_SEARCH_PARAM) + && url.params[URL_SEARCH_PARAM] != "") { + showSearch(true); + searchbar.value = decodeURIComponent( + (url.params[URL_SEARCH_PARAM]+'').replace(/\+/g, '%20')); + searchbarKeyUpHandler(); // -> doSearch() + } else { + showSearch(false); + } + + if (url.params.hasOwnProperty(URL_MARK_PARAM)) { + var words = decodeURIComponent(url.params[URL_MARK_PARAM]).split(' '); + marker.mark(words, { + exclude: mark_exclude + }); + + var markers = document.querySelectorAll("mark"); + function hide() { + for (var i = 0; i < markers.length; i++) { + markers[i].classList.add("fade-out"); + window.setTimeout(function(e) { marker.unmark(); }, 300); + } + } + for (var i = 0; i < markers.length; i++) { + markers[i].addEventListener('click', hide); + } + } + } + + // Eventhandler for keyevents on `document` + function globalKeyHandler(e) { + if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea' || e.target.type === 'text' || !hasFocus() && /^(?:input|select|textarea)$/i.test(e.target.nodeName)) { return; } + + if (e.keyCode === ESCAPE_KEYCODE) { + e.preventDefault(); + searchbar.classList.remove("active"); + setSearchUrlParameters("", + (searchbar.value.trim() !== "") ? "push" : "replace"); + if (hasFocus()) { + unfocusSearchbar(); + } + showSearch(false); + marker.unmark(); + } else if (!hasFocus() && e.keyCode === SEARCH_HOTKEY_KEYCODE) { + e.preventDefault(); + showSearch(true); + window.scrollTo(0, 0); + searchbar.select(); + } else if (hasFocus() && e.keyCode === DOWN_KEYCODE) { + e.preventDefault(); + unfocusSearchbar(); + searchresults.firstElementChild.classList.add("focus"); + } else if (!hasFocus() && (e.keyCode === DOWN_KEYCODE + || e.keyCode === UP_KEYCODE + || e.keyCode === SELECT_KEYCODE)) { + // not `:focus` because browser does annoying scrolling + var focused = searchresults.querySelector("li.focus"); + if (!focused) return; + e.preventDefault(); + if (e.keyCode === DOWN_KEYCODE) { + var next = focused.nextElementSibling; + if (next) { + focused.classList.remove("focus"); + next.classList.add("focus"); + } + } else if (e.keyCode === UP_KEYCODE) { + focused.classList.remove("focus"); + var prev = focused.previousElementSibling; + if (prev) { + prev.classList.add("focus"); + } else { + searchbar.select(); + } + } else { // SELECT_KEYCODE + window.location.assign(focused.querySelector('a')); + } + } + } + + function showSearch(yes) { + if (yes) { + search_wrap.classList.remove('hidden'); + searchicon.setAttribute('aria-expanded', 'true'); + } else { + search_wrap.classList.add('hidden'); + searchicon.setAttribute('aria-expanded', 'false'); + var results = searchresults.children; + for (var i = 0; i < results.length; i++) { + results[i].classList.remove("focus"); + } + } + } + + function showResults(yes) { + if (yes) { + searchresults_outer.classList.remove('hidden'); + } else { + searchresults_outer.classList.add('hidden'); + } + } + + // Eventhandler for search icon + function searchIconClickHandler() { + if (search_wrap.classList.contains('hidden')) { + showSearch(true); + window.scrollTo(0, 0); + searchbar.select(); + } else { + showSearch(false); + } + } + + // Eventhandler for keyevents while the searchbar is focused + function searchbarKeyUpHandler() { + var searchterm = searchbar.value.trim(); + if (searchterm != "") { + searchbar.classList.add("active"); + doSearch(searchterm); + } else { + searchbar.classList.remove("active"); + showResults(false); + removeChildren(searchresults); + } + + setSearchUrlParameters(searchterm, "push_if_new_search_else_replace"); + + // Remove marks + marker.unmark(); + } + + // Update current url with ?URL_SEARCH_PARAM= parameter, remove ?URL_MARK_PARAM and #heading-anchor . + // `action` can be one of "push", "replace", "push_if_new_search_else_replace" + // and replaces or pushes a new browser history item. + // "push_if_new_search_else_replace" pushes if there is no `?URL_SEARCH_PARAM=abc` yet. + function setSearchUrlParameters(searchterm, action) { + var url = parseURL(window.location.href); + var first_search = ! url.params.hasOwnProperty(URL_SEARCH_PARAM); + if (searchterm != "" || action == "push_if_new_search_else_replace") { + url.params[URL_SEARCH_PARAM] = searchterm; + delete url.params[URL_MARK_PARAM]; + url.hash = ""; + } else { + delete url.params[URL_MARK_PARAM]; + delete url.params[URL_SEARCH_PARAM]; + } + // A new search will also add a new history item, so the user can go back + // to the page prior to searching. A updated search term will only replace + // the url. + if (action == "push" || (action == "push_if_new_search_else_replace" && first_search) ) { + history.pushState({}, document.title, renderURL(url)); + } else if (action == "replace" || (action == "push_if_new_search_else_replace" && !first_search) ) { + history.replaceState({}, document.title, renderURL(url)); + } + } + + function doSearch(searchterm) { + + // Don't search the same twice + if (current_searchterm == searchterm) { return; } + else { current_searchterm = searchterm; } + + if (searchindex == null) { return; } + + // Do the actual search + var results = searchindex.search(searchterm, search_options); + var resultcount = Math.min(results.length, results_options.limit_results); + + // Display search metrics + searchresults_header.innerText = formatSearchMetric(resultcount, searchterm); + + // Clear and insert results + var searchterms = searchterm.split(' '); + removeChildren(searchresults); + for(var i = 0; i < resultcount ; i++){ + var resultElem = document.createElement('li'); + resultElem.innerHTML = formatSearchResult(results[i], searchterms); + searchresults.appendChild(resultElem); + } + + // Display results + showResults(true); + } + + fetch(path_to_root + 'searchindex.json') + .then(response => response.json()) + .then(json => init(json)) + .catch(error => { // Try to load searchindex.js if fetch failed + var script = document.createElement('script'); + script.src = path_to_root + 'searchindex.js'; + script.onload = () => init(window.search); + document.head.appendChild(script); + }); + + // Exported functions + search.hasFocus = hasFocus; +})(window.search); diff --git a/sui/searchindex.js b/sui/searchindex.js new file mode 100644 index 00000000..a74fd2f0 --- /dev/null +++ b/sui/searchindex.js @@ -0,0 +1 @@ +Object.assign(window.search, {"doc_urls":["introduction.html#introduction","foreword.html#foreword","history.html#history","before-we-begin/index.html#before-we-begin","before-we-begin/install-sui.html#install-sui","before-we-begin/install-sui.html#download-binary","before-we-begin/install-sui.html#install-using-homebrew-macos","before-we-begin/install-sui.html#build-using-cargo-macos-linux","before-we-begin/install-sui.html#troubleshooting","before-we-begin/ide-support.html#set-up-your-ide","before-we-begin/ide-support.html#vscode","before-we-begin/ide-support.html#intellij-idea","before-we-begin/ide-support.html#emacs","before-we-begin/ide-support.html#github-codespaces","before-we-begin/move-2024.html#move-2024","your-first-move/index.html#your-first-move","your-first-move/hello-world.html#hello-world","your-first-move/hello-world.html#initialize-a-project","your-first-move/hello-world.html#create-a-module","your-first-move/hello-world.html#dive-into-the-code","your-first-move/hello-world.html#compile-the-package","your-first-move/adding-tests.html#adding-tests","your-first-move/adding-tests.html#your-first-test","your-first-move/adding-tests.html#failed-experiment","your-first-move/debugging.html#debugging","your-first-move/debugging.html#new-import","your-first-move/debugging.html#correct-usage","your-first-move/debugging.html#hint","your-first-move/generating-docs.html#generating-documentation","your-first-move/generating-docs.html#adding-documentation-comments","your-first-move/generating-docs.html#generating-documentation-1","concepts/index.html#concepts","concepts/packages.html#packages","concepts/packages.html#package-structure","concepts/packages.html#published-package","concepts/packages.html#links","concepts/manifest.html#package-manifest","concepts/manifest.html#sections","concepts/manifest.html#package","concepts/manifest.html#dependencies","concepts/manifest.html#resolving-version-conflicts-with-override","concepts/manifest.html#dev-dependencies","concepts/manifest.html#addresses","concepts/manifest.html#dev-addresses","concepts/manifest.html#toml-styles","concepts/manifest.html#links","concepts/address.html#addresses","concepts/address.html#further-reading","concepts/modules.html#module","concepts/user-interaction.html#interacting-with-a-package","concepts/what-is-an-account.html#account","concepts/what-is-a-transaction.html#transaction","concepts/what-is-a-transaction.html#transaction-structure","concepts/object-model.html#object-model","hello-sui/index.html#your-first-sui-app","hello-sui/hello-sui.html#hello-sui","hello-sui/hello-sui.html#create-a-new-sui-package","hello-sui/hello-sui.html#implement-the-postcard-application","hello-sui/hello-sui.html#next-steps","hello-sui/module-structure.html#using-objects","hello-sui/module-structure.html#module","hello-sui/module-structure.html#imports","hello-sui/module-structure.html#postcard-is-an-object","hello-sui/module-structure.html#creating-an-object","hello-sui/module-structure.html#sending-a-postcard","hello-sui/module-structure.html#keeping-the-object","hello-sui/module-structure.html#updating-the-object","hello-sui/module-structure.html#next-steps","basic-syntax/index.html#getting-ready","basic-syntax/module.html#module","basic-syntax/module.html#module-declaration","basic-syntax/module.html#address--named-address","basic-syntax/module.html#module-members","basic-syntax/module.html#address-block","basic-syntax/comments.html#comments","basic-syntax/comments.html#line-comment","basic-syntax/comments.html#block-comment","basic-syntax/comments.html#doc-comment","basic-syntax/primitive-types.html#primitive-types","basic-syntax/primitive-types.html#variables-and-assignment","basic-syntax/primitive-types.html#booleans","basic-syntax/primitive-types.html#integer-types","basic-syntax/primitive-types.html#operations","basic-syntax/primitive-types.html#casting-with-as","basic-syntax/primitive-types.html#overflow","basic-syntax/address.html#address-type","basic-syntax/address.html#conversion","basic-syntax/expression.html#expression","basic-syntax/expression.html#empty-expression","basic-syntax/expression.html#literals","basic-syntax/expression.html#operators","basic-syntax/expression.html#blocks","basic-syntax/expression.html#function-calls","basic-syntax/expression.html#control-flow-expressions","basic-syntax/struct.html#custom-types-with-struct","basic-syntax/struct.html#struct","basic-syntax/struct.html#create-and-use-an-instance","basic-syntax/struct.html#unpacking-a-struct","basic-syntax/drop-ability.html#abilities-drop","basic-syntax/drop-ability.html#abilities-syntax","basic-syntax/drop-ability.html#no-abilities","basic-syntax/drop-ability.html#drop-ability","basic-syntax/importing-modules.html#importing-modules","basic-syntax/importing-modules.html#importing-a-module","basic-syntax/importing-modules.html#importing-members","basic-syntax/importing-modules.html#grouping-imports","basic-syntax/importing-modules.html#resolving-name-conflicts","basic-syntax/importing-modules.html#adding-an-external-dependency","basic-syntax/importing-modules.html#importing-a-module-from-another-package","basic-syntax/standard-library.html#standard-library","basic-syntax/standard-library.html#most-common-modules","basic-syntax/standard-library.html#importing-std-without-sui-framework","basic-syntax/vector.html#vector","basic-syntax/vector.html#vector-syntax","basic-syntax/vector.html#vector-operations","basic-syntax/vector.html#destroying-a-vector-of-non-droppable-types","basic-syntax/option.html#option","basic-syntax/option.html#in-practice","basic-syntax/option.html#using-option","basic-syntax/string.html#string","basic-syntax/string.html#strings-are-bytes","basic-syntax/string.html#working-with-utf-8-strings","basic-syntax/string.html#safe-utf-8-operations","basic-syntax/string.html#ascii-strings","basic-syntax/string.html#summary","basic-syntax/control-flow.html#control-flow","basic-syntax/control-flow.html#conditional-statements","basic-syntax/control-flow.html#repeating-statements-with-loops","basic-syntax/control-flow.html#the-while-loop","basic-syntax/control-flow.html#infinite-loop","basic-syntax/control-flow.html#exiting-a-loop-early","basic-syntax/control-flow.html#skipping-an-iteration","basic-syntax/control-flow.html#return","basic-syntax/constants.html#constants","basic-syntax/constants.html#naming-convention","basic-syntax/constants.html#constants-are-immutable","basic-syntax/assert-and-abort.html#assert-and-abort","basic-syntax/assert-and-abort.html#abort","basic-syntax/assert-and-abort.html#assert","basic-syntax/assert-and-abort.html#error-constants","basic-syntax/assert-and-abort.html#further-reading","basic-syntax/function.html#function","basic-syntax/function.html#function-declaration","basic-syntax/function.html#accessing-functions","basic-syntax/function.html#multiple-return-values","basic-syntax/struct-methods.html#struct-methods","basic-syntax/struct-methods.html#method-syntax","basic-syntax/struct-methods.html#method-aliases","basic-syntax/struct-methods.html#aliasing-an-external-modules-method","basic-syntax/visibility.html#visibility-modifiers","basic-syntax/visibility.html#internal-visibility","basic-syntax/visibility.html#public-visibility","basic-syntax/visibility.html#friend-visibility","basic-syntax/visibility.html#package-visibility","basic-syntax/ownership-and-scope.html#ownership-and-scope","basic-syntax/ownership-and-scope.html#ownership","basic-syntax/ownership-and-scope.html#returning-a-value","basic-syntax/ownership-and-scope.html#passing-by-value","basic-syntax/ownership-and-scope.html#scopes-with-blocks","basic-syntax/ownership-and-scope.html#copyable-types","basic-syntax/copy-ability.html#abilities-copy","basic-syntax/copy-ability.html#copying-and-drop","basic-syntax/references.html#references","basic-syntax/references.html#reference","basic-syntax/references.html#mutable-references","basic-syntax/references.html#dereference-and-copy","basic-syntax/references.html#notes","basic-syntax/generics.html#generics","basic-syntax/generics.html#generic-syntax","basic-syntax/generics.html#multiple-type-parameters","basic-syntax/generics.html#why-generics","basic-syntax/generics.html#phantom-type-parameters","basic-syntax/generics.html#constraints-on-type-parameters","basic-syntax/generics.html#further-reading","basic-syntax/type-reflection.html#type-reflection","basic-syntax/type-reflection.html#in-practice","basic-syntax/type-reflection.html#further-reading","programmability/index.html#advanced-programmability","programmability/fast-path.html#fast-path","programmability/fast-path.html#frozen-objects","programmability/fast-path.html#in-practice","programmability/fast-path.html#special-case-clock","programmability/transaction-context.html#transaction-context","programmability/transaction-context.html#reading-the-transaction-context","programmability/transaction-context.html#mutability","programmability/transaction-context.html#generating-unique-addresses","programmability/collections.html#collections","programmability/collections.html#vecset","programmability/collections.html#vecmap","programmability/dynamic-fields.html#dynamic-fields","programmability/dynamic-fields.html#structure","programmability/dynamic-fields.html#usage","programmability/dynamic-fields.html#dynamic-object-fields","programmability/dynamic-fields.html#custom-fields-for-keys","programmability/dynamic-fields.html#applications","programmability/testing.html#testing","programmability/testing.html#test-and-test_only","programmability/testing.html#unit-testing-with-dummy-context","programmability/testing.html#utilizing-the-test-scenario","programmability/testing.html#adding-examples","programmability/epoch-and-time.html#epoch-and-time","programmability/epoch-and-time.html#epoch","programmability/epoch-and-time.html#time","programmability/epoch-and-time.html#testing","programmability/witness-and-abstract-implementation.html#abstract-class","programmability/witness-and-abstract-implementation.html#generic-struct","programmability/witness-and-abstract-implementation.html#common-methods","programmability/witness-and-abstract-implementation.html#witness-gated-functions","programmability/witness-and-abstract-implementation.html#differences-from-oop","programmability/witness-and-abstract-implementation.html#usage-in-sui-framework","guides/index.html#guides","guides/2024-migration-guide.html#move-2024-migration-guide","guides/2024-migration-guide.html#using-the-new-edition","guides/2024-migration-guide.html#struct-visibility","guides/2024-migration-guide.html#struct-methods","guides/2024-migration-guide.html#borrowing-operator","guides/2024-migration-guide.html#method-aliases","guides/2024-migration-guide.html#macros","guides/upgradeability-practices.html#upgradability-practices","guides/upgradeability-practices.html#using-entry-and-friend-functions","guides/upgradeability-practices.html#versioning-objects","guides/upgradeability-practices.html#versioning-configuration-with-dynamic-fields","guides/upgradeability-practices.html#modular-architecture","guides/building-against-limits.html#building-against-limits","guides/building-against-limits.html#transaction-size","guides/building-against-limits.html#object-size","guides/building-against-limits.html#single-pure-argument-size","guides/building-against-limits.html#maximum-number-of-objects-created","guides/building-against-limits.html#maximum-number-of-events","guides/better-error-handling.html#better-error-handling","guides/better-error-handling.html#rule-1-handle-all-possible-scenarios","guides/better-error-handling.html#rule-2-abort-with-different-codes","guides/better-error-handling.html#rule-3-return-bool-instead-of-assert","appendix/glossary.html#glossary","appendix/glossary.html#abilities"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":23,"breadcrumbs":6,"title":1},"100":{"body":38,"breadcrumbs":5,"title":1},"101":{"body":133,"breadcrumbs":6,"title":2},"102":{"body":30,"breadcrumbs":6,"title":2},"103":{"body":63,"breadcrumbs":6,"title":2},"104":{"body":46,"breadcrumbs":6,"title":2},"105":{"body":109,"breadcrumbs":6,"title":2},"106":{"body":60,"breadcrumbs":7,"title":3},"107":{"body":87,"breadcrumbs":7,"title":3},"108":{"body":71,"breadcrumbs":8,"title":4},"109":{"body":22,"breadcrumbs":6,"title":2},"11":{"body":16,"breadcrumbs":7,"title":2},"110":{"body":77,"breadcrumbs":6,"title":2},"111":{"body":28,"breadcrumbs":9,"title":5},"112":{"body":18,"breadcrumbs":4,"title":1},"113":{"body":78,"breadcrumbs":5,"title":2},"114":{"body":56,"breadcrumbs":5,"title":2},"115":{"body":43,"breadcrumbs":8,"title":5},"116":{"body":80,"breadcrumbs":4,"title":1},"117":{"body":115,"breadcrumbs":4,"title":1},"118":{"body":54,"breadcrumbs":5,"title":2},"119":{"body":38,"breadcrumbs":4,"title":1},"12":{"body":13,"breadcrumbs":6,"title":1},"120":{"body":71,"breadcrumbs":5,"title":2},"121":{"body":60,"breadcrumbs":7,"title":4},"122":{"body":77,"breadcrumbs":7,"title":4},"123":{"body":3,"breadcrumbs":5,"title":2},"124":{"body":2,"breadcrumbs":4,"title":1},"125":{"body":48,"breadcrumbs":6,"title":2},"126":{"body":135,"breadcrumbs":6,"title":2},"127":{"body":58,"breadcrumbs":7,"title":3},"128":{"body":104,"breadcrumbs":5,"title":1},"129":{"body":98,"breadcrumbs":6,"title":2},"13":{"body":19,"breadcrumbs":7,"title":2},"130":{"body":99,"breadcrumbs":7,"title":3},"131":{"body":85,"breadcrumbs":6,"title":2},"132":{"body":86,"breadcrumbs":5,"title":1},"133":{"body":57,"breadcrumbs":4,"title":1},"134":{"body":25,"breadcrumbs":5,"title":2},"135":{"body":23,"breadcrumbs":5,"title":2},"136":{"body":0,"breadcrumbs":6,"title":2},"137":{"body":36,"breadcrumbs":5,"title":1},"138":{"body":41,"breadcrumbs":5,"title":1},"139":{"body":60,"breadcrumbs":6,"title":2},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":12,"breadcrumbs":6,"title":2},"141":{"body":98,"breadcrumbs":4,"title":1},"142":{"body":56,"breadcrumbs":5,"title":2},"143":{"body":40,"breadcrumbs":5,"title":2},"144":{"body":78,"breadcrumbs":6,"title":3},"145":{"body":23,"breadcrumbs":6,"title":2},"146":{"body":111,"breadcrumbs":6,"title":2},"147":{"body":191,"breadcrumbs":6,"title":2},"148":{"body":95,"breadcrumbs":8,"title":4},"149":{"body":35,"breadcrumbs":6,"title":2},"15":{"body":69,"breadcrumbs":4,"title":2},"150":{"body":41,"breadcrumbs":6,"title":2},"151":{"body":3,"breadcrumbs":6,"title":2},"152":{"body":3,"breadcrumbs":6,"title":2},"153":{"body":3,"breadcrumbs":6,"title":2},"154":{"body":25,"breadcrumbs":6,"title":2},"155":{"body":58,"breadcrumbs":5,"title":1},"156":{"body":29,"breadcrumbs":6,"title":2},"157":{"body":43,"breadcrumbs":6,"title":2},"158":{"body":98,"breadcrumbs":6,"title":2},"159":{"body":31,"breadcrumbs":6,"title":2},"16":{"body":14,"breadcrumbs":6,"title":2},"160":{"body":92,"breadcrumbs":6,"title":2},"161":{"body":49,"breadcrumbs":6,"title":2},"162":{"body":27,"breadcrumbs":4,"title":1},"163":{"body":180,"breadcrumbs":4,"title":1},"164":{"body":0,"breadcrumbs":5,"title":2},"165":{"body":0,"breadcrumbs":5,"title":2},"166":{"body":0,"breadcrumbs":4,"title":1},"167":{"body":30,"breadcrumbs":4,"title":1},"168":{"body":118,"breadcrumbs":5,"title":2},"169":{"body":151,"breadcrumbs":6,"title":3},"17":{"body":102,"breadcrumbs":6,"title":2},"170":{"body":101,"breadcrumbs":4,"title":1},"171":{"body":112,"breadcrumbs":6,"title":3},"172":{"body":89,"breadcrumbs":6,"title":3},"173":{"body":3,"breadcrumbs":5,"title":2},"174":{"body":49,"breadcrumbs":6,"title":2},"175":{"body":67,"breadcrumbs":5,"title":1},"176":{"body":10,"breadcrumbs":6,"title":2},"177":{"body":43,"breadcrumbs":4,"title":2},"178":{"body":110,"breadcrumbs":6,"title":2},"179":{"body":23,"breadcrumbs":6,"title":2},"18":{"body":70,"breadcrumbs":6,"title":2},"180":{"body":117,"breadcrumbs":5,"title":1},"181":{"body":24,"breadcrumbs":7,"title":3},"182":{"body":121,"breadcrumbs":6,"title":2},"183":{"body":28,"breadcrumbs":7,"title":3},"184":{"body":47,"breadcrumbs":5,"title":1},"185":{"body":57,"breadcrumbs":7,"title":3},"186":{"body":28,"breadcrumbs":4,"title":1},"187":{"body":76,"breadcrumbs":4,"title":1},"188":{"body":102,"breadcrumbs":4,"title":1},"189":{"body":34,"breadcrumbs":6,"title":2},"19":{"body":115,"breadcrumbs":6,"title":2},"190":{"body":24,"breadcrumbs":5,"title":1},"191":{"body":24,"breadcrumbs":5,"title":1},"192":{"body":7,"breadcrumbs":7,"title":3},"193":{"body":5,"breadcrumbs":7,"title":3},"194":{"body":27,"breadcrumbs":5,"title":1},"195":{"body":0,"breadcrumbs":4,"title":1},"196":{"body":0,"breadcrumbs":5,"title":2},"197":{"body":0,"breadcrumbs":7,"title":4},"198":{"body":0,"breadcrumbs":6,"title":3},"199":{"body":49,"breadcrumbs":5,"title":2},"2":{"body":20,"breadcrumbs":2,"title":1},"20":{"body":40,"breadcrumbs":6,"title":2},"200":{"body":28,"breadcrumbs":6,"title":2},"201":{"body":74,"breadcrumbs":5,"title":1},"202":{"body":143,"breadcrumbs":5,"title":1},"203":{"body":4,"breadcrumbs":5,"title":1},"204":{"body":73,"breadcrumbs":7,"title":2},"205":{"body":0,"breadcrumbs":7,"title":2},"206":{"body":0,"breadcrumbs":7,"title":2},"207":{"body":0,"breadcrumbs":8,"title":3},"208":{"body":44,"breadcrumbs":7,"title":2},"209":{"body":25,"breadcrumbs":8,"title":3},"21":{"body":90,"breadcrumbs":6,"title":2},"210":{"body":21,"breadcrumbs":2,"title":1},"211":{"body":21,"breadcrumbs":8,"title":4},"212":{"body":21,"breadcrumbs":7,"title":3},"213":{"body":19,"breadcrumbs":6,"title":2},"214":{"body":36,"breadcrumbs":6,"title":2},"215":{"body":28,"breadcrumbs":6,"title":2},"216":{"body":20,"breadcrumbs":6,"title":2},"217":{"body":30,"breadcrumbs":5,"title":1},"218":{"body":111,"breadcrumbs":5,"title":2},"219":{"body":6,"breadcrumbs":7,"title":4},"22":{"body":163,"breadcrumbs":6,"title":2},"220":{"body":69,"breadcrumbs":5,"title":2},"221":{"body":58,"breadcrumbs":7,"title":4},"222":{"body":12,"breadcrumbs":5,"title":2},"223":{"body":45,"breadcrumbs":7,"title":3},"224":{"body":19,"breadcrumbs":6,"title":2},"225":{"body":32,"breadcrumbs":6,"title":2},"226":{"body":43,"breadcrumbs":8,"title":4},"227":{"body":30,"breadcrumbs":8,"title":4},"228":{"body":14,"breadcrumbs":7,"title":3},"229":{"body":101,"breadcrumbs":7,"title":3},"23":{"body":108,"breadcrumbs":6,"title":2},"230":{"body":71,"breadcrumbs":9,"title":5},"231":{"body":82,"breadcrumbs":9,"title":5},"232":{"body":111,"breadcrumbs":10,"title":6},"233":{"body":31,"breadcrumbs":3,"title":1},"234":{"body":70,"breadcrumbs":3,"title":1},"24":{"body":32,"breadcrumbs":4,"title":1},"25":{"body":148,"breadcrumbs":5,"title":2},"26":{"body":22,"breadcrumbs":5,"title":2},"27":{"body":43,"breadcrumbs":4,"title":1},"28":{"body":20,"breadcrumbs":6,"title":2},"29":{"body":93,"breadcrumbs":7,"title":3},"3":{"body":22,"breadcrumbs":4,"title":2},"30":{"body":101,"breadcrumbs":6,"title":2},"31":{"body":30,"breadcrumbs":2,"title":1},"32":{"body":66,"breadcrumbs":3,"title":1},"33":{"body":52,"breadcrumbs":4,"title":2},"34":{"body":31,"breadcrumbs":4,"title":2},"35":{"body":5,"breadcrumbs":3,"title":1},"36":{"body":42,"breadcrumbs":4,"title":2},"37":{"body":0,"breadcrumbs":3,"title":1},"38":{"body":36,"breadcrumbs":3,"title":1},"39":{"body":59,"breadcrumbs":3,"title":1},"4":{"body":20,"breadcrumbs":6,"title":2},"40":{"body":45,"breadcrumbs":6,"title":4},"41":{"body":28,"breadcrumbs":4,"title":2},"42":{"body":21,"breadcrumbs":3,"title":1},"43":{"body":34,"breadcrumbs":4,"title":2},"44":{"body":56,"breadcrumbs":4,"title":2},"45":{"body":3,"breadcrumbs":3,"title":1},"46":{"body":99,"breadcrumbs":3,"title":1},"47":{"body":3,"breadcrumbs":4,"title":2},"48":{"body":17,"breadcrumbs":3,"title":1},"49":{"body":36,"breadcrumbs":5,"title":2},"5":{"body":18,"breadcrumbs":6,"title":2},"50":{"body":19,"breadcrumbs":3,"title":1},"51":{"body":26,"breadcrumbs":3,"title":1},"52":{"body":26,"breadcrumbs":4,"title":2},"53":{"body":73,"breadcrumbs":5,"title":2},"54":{"body":69,"breadcrumbs":6,"title":3},"55":{"body":19,"breadcrumbs":7,"title":2},"56":{"body":66,"breadcrumbs":9,"title":4},"57":{"body":159,"breadcrumbs":8,"title":3},"58":{"body":18,"breadcrumbs":7,"title":2},"59":{"body":21,"breadcrumbs":7,"title":2},"6":{"body":9,"breadcrumbs":8,"title":4},"60":{"body":22,"breadcrumbs":6,"title":1},"61":{"body":41,"breadcrumbs":6,"title":1},"62":{"body":47,"breadcrumbs":7,"title":2},"63":{"body":80,"breadcrumbs":7,"title":2},"64":{"body":52,"breadcrumbs":7,"title":2},"65":{"body":28,"breadcrumbs":7,"title":2},"66":{"body":34,"breadcrumbs":7,"title":2},"67":{"body":20,"breadcrumbs":7,"title":2},"68":{"body":19,"breadcrumbs":4,"title":2},"69":{"body":24,"breadcrumbs":4,"title":1},"7":{"body":18,"breadcrumbs":9,"title":5},"70":{"body":73,"breadcrumbs":5,"title":2},"71":{"body":32,"breadcrumbs":6,"title":3},"72":{"body":45,"breadcrumbs":5,"title":2},"73":{"body":54,"breadcrumbs":5,"title":2},"74":{"body":36,"breadcrumbs":4,"title":1},"75":{"body":44,"breadcrumbs":5,"title":2},"76":{"body":62,"breadcrumbs":5,"title":2},"77":{"body":48,"breadcrumbs":5,"title":2},"78":{"body":30,"breadcrumbs":6,"title":2},"79":{"body":56,"breadcrumbs":6,"title":2},"8":{"body":8,"breadcrumbs":5,"title":1},"80":{"body":42,"breadcrumbs":5,"title":1},"81":{"body":75,"breadcrumbs":6,"title":2},"82":{"body":59,"breadcrumbs":5,"title":1},"83":{"body":42,"breadcrumbs":5,"title":1},"84":{"body":27,"breadcrumbs":5,"title":1},"85":{"body":68,"breadcrumbs":6,"title":2},"86":{"body":59,"breadcrumbs":5,"title":1},"87":{"body":31,"breadcrumbs":4,"title":1},"88":{"body":46,"breadcrumbs":5,"title":2},"89":{"body":83,"breadcrumbs":4,"title":1},"9":{"body":41,"breadcrumbs":8,"title":3},"90":{"body":37,"breadcrumbs":4,"title":1},"91":{"body":54,"breadcrumbs":4,"title":1},"92":{"body":44,"breadcrumbs":5,"title":2},"93":{"body":42,"breadcrumbs":6,"title":3},"94":{"body":24,"breadcrumbs":6,"title":3},"95":{"body":141,"breadcrumbs":4,"title":1},"96":{"body":97,"breadcrumbs":6,"title":3},"97":{"body":80,"breadcrumbs":5,"title":2},"98":{"body":31,"breadcrumbs":6,"title":2},"99":{"body":49,"breadcrumbs":6,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Foreword » Foreword","id":"1","title":"Foreword"},"10":{"body":"VSCode is a free and open source IDE from Microsoft. Move Analyzer is a language server extension for Move maintained by MystenLabs . Move Syntax a simple syntax highlighting extension for Move by Damir Shamanaev .","breadcrumbs":"Before we begin » Set up your IDE » VSCode","id":"10","title":"VSCode"},"100":{"body":"A struct without abilities cannot be discarded, or copied, or stored in the storage. We call such a struct a Hot Potato . It is a joke, but it is also a good way to remember that a struct without abilities is like a hot potato - it needs to be passed around and handled properly. Hot Potato is one of the most powerful patterns in Move, we go in detail about it in the TODO: authorization patterns chapter.","breadcrumbs":"Syntax Basics » Abilities: Drop » No abilities","id":"100","title":"No abilities"},"101":{"body":"The drop ability - the simplest of them - allows the instance of a struct to be ignored or discarded . In many programming languages this behavior is considered default. However, in Move, a struct without the drop ability is not allowed to be ignored. This is a safety feature of the Move language, which ensures that all assets are properly handled. An attempt to ignore a struct without the drop ability will result in a compilation error. module book::drop_ability { /// This struct has the `drop` ability. struct IgnoreMe has drop { a: u8, b: u8, } /// This struct does not have the `drop` ability. struct NoDrop {} #[test] // Create an instance of the `IgnoreMe` struct and ignore it. // Even though we constructed the instance, we don't need to unpack it. fun test_ignore() { let no_drop = NoDrop {}; let _ = IgnoreMe { a: 1, b: 2 }; // no need to unpack // The value must be unpacked for the code to compile. let NoDrop {} = no_drop; // OK }\n} The drop ability is often used on custom collection types to eliminate the need for special handling of the collection when it is no longer needed. For example, a vector type has the drop ability, which allows the vector to be ignored when it is no longer needed. However, the biggest feature of Move's type system is the ability to not have drop. This ensures that the assets are properly handled and not ignored. A struct with a single drop ability is called a Witness . We explain the concept of a Witness in the Witness and Abstract Implementation section.","breadcrumbs":"Syntax Basics » Abilities: Drop » Drop ability","id":"101","title":"Drop ability"},"102":{"body":"Move achieves high modularity and code reuse by allowing module imports. Modules within the same package can import each other, and a new package can depend on already existing packages and use their modules too. This section will cover the basics of importing modules and how to use them in your own code.","breadcrumbs":"Syntax Basics » Importing Modules » Importing Modules","id":"102","title":"Importing Modules"},"103":{"body":"Modules defined in the same package can import each other. The use keyword is followed by the module path, which consists of the package address (or alias) and the module name separated by ::. File: sources/module_one.move // File: sources/module_one.move\nmodule book::module_one { /// Struct defined in the same module. public struct Character has drop {} /// Simple function that creates a new `Character` instance. public fun new(): Character { Character {} }\n} File: sources/module_two.move module book::module_two { use book::module_one; // importing module_one from the same package /// Calls the `new` function from the `module_one` module. public fun create_and_ignore() { let _ = module_one::new(); }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Importing a Module","id":"103","title":"Importing a Module"},"104":{"body":"You can also import specific members from a module. This is useful when you only need a single function or a single type from a module. The syntax is the same as for importing a module, but you add the member name after the module path. module book::more_imports { use book::module_one::new; // imports the `new` function from the `module_one` module use book::module_one::Character; // importing the `Character` struct from the `module_one` module /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Importing Members","id":"104","title":"Importing Members"},"105":{"body":"Imports can be grouped into a single use statement using the curly braces {}. This is useful when you need to import multiple members from the same module. Move allows grouping imports from the same module and from the same package. module book::grouped_imports { // imports the `new` function and the `Character` struct from /// the `module_one` module use book::module_one::{new, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n} Single function imports are less common in Move, since the function names can overlap and cause confusion. A recommended practice is to import the entire module and use the module path to access the function. Types have unique names and should be imported individually. To import members and the module itself in the group import, you can use the Self keyword. The Self keyword refers to the module itself and can be used to import the module and its members. module book::self_imports { // imports the `Character` struct, and the `module_one` module use book::module_one::{Self, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { module_one::new() }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Grouping Imports","id":"105","title":"Grouping Imports"},"106":{"body":"When importing multiple members from different modules, it is possible to have name conflicts. For example, if you import two modules that both have a function with the same name, you will need to use the module path to access the function. It is also possible to have modules with the same name in different packages. To resolve the conflict and avoid ambiguity, Move offers the as keyword to rename the imported member. module book::conflict_resolution { // `as` can be placed after any import, including group imports use book::module_one::{Self as mod, Character as Char}; /// Calls the `new` function from the `module_one` module. public fun create(): Char { mod::new_two() }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Resolving Name Conflicts","id":"106","title":"Resolving Name Conflicts"},"107":{"body":"Every new package generated via the sui binary features a Move.toml file with a single dependency on the Sui Framework package. The Sui Framework depends on the Standard Library package. And both of these packages are available in default configuration. Package dependencies are defined in the Package Manifest as follows: [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nLocal = { local = \"../my_other_package\" } The dependencies section contains a list of package dependencies. The key is the name of the package, and the value is either a git import table or a local path. The git import contains the URL of the package, the subdirectory where the package is located, and the revision of the package. The local path is a relative path to the package directory. If a dependency is added to the Move.toml file, the compiler will automatically fetch (and later refetch) the dependencies when building the package.","breadcrumbs":"Syntax Basics » Importing Modules » Adding an External Dependency","id":"107","title":"Adding an External Dependency"},"108":{"body":"Normally, packages define their addresses in the [addresses] section, so you can use the alias instead of the address. For example, instead of 0x2::coin module, you would use sui::coin. The sui alias is defined in the Sui Framework package. Similarly, the std alias is defined in the Standard Library package and can be used to access the standard library modules. To import a module from another package, you use the use keyword followed by the module path. The module path consists of the package address (or alias) and the module name separated by ::. module book::imports { use std::string; // std = 0x1, string is a module in the standard library use sui::coin; // sui = 0x2, coin is a module in the Sui Framework\n}","breadcrumbs":"Syntax Basics » Importing Modules » Importing a Module from Another Package","id":"108","title":"Importing a Module from Another Package"},"109":{"body":"The Move Standard Library provides functionality for native types and operations. It is a standard collection of modules which does utilize the storage model, and operates on native types. It is the only dependency of the Sui Framework , and is imported together with it.","breadcrumbs":"Syntax Basics » Standard Library » Standard Library","id":"109","title":"Standard Library"},"11":{"body":"IntelliJ IDEA is a commercial IDE from JetBrains. Move Language Plugin provides a Move language extension for IntelliJ IDEA by Pontem Network .","breadcrumbs":"Before we begin » Set up your IDE » IntelliJ IDEA","id":"11","title":"IntelliJ IDEA"},"110":{"body":"In this book we go into detail about most of the modules in the standard library, however, it is also helpful to give an overview of the features, so that you can get a sense of what is available and which module implements that. Module Description Chapter std::debug Contains debugging functions Debugging std::type_name Allows runtime type reflection Generics std::string Provides basic string operations Strings std::ascii Provides basic ASCII operations Strings std::option Implements an Option Option std::vector Native operations on the vector type Vector std::hash Hashing functions: sha2_256 and sha3_256 Cryptography and Hashing std::bcs Contains the bcs::to_bytes() function BCS std::address Contains a single address::length function Address std::bit_vector Provides operations on bit vectors - std::fixed_point32 Provides the FixedPoint32 type -","breadcrumbs":"Syntax Basics » Standard Library » Most Common Modules","id":"110","title":"Most Common Modules"},"111":{"body":"The Move Standard Library can be imported to the package directly. However, std alone is not enough to build a meaningful application, as it does not provide any storage capabilities, and can't interact with the on-chain state. MoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" }","breadcrumbs":"Syntax Basics » Standard Library » Importing std without Sui Framework","id":"111","title":"Importing std without Sui Framework"},"112":{"body":"Vectors are a native way to store collections of elements in Move. They are similar to arrays in other programming languages, but with a few differences. In this section, we introduce the vector type and its operations.","breadcrumbs":"Syntax Basics » Vector » Vector","id":"112","title":"Vector"},"113":{"body":"The vector type is defined using the vector keyword followed by the type of the elements in angle brackets. The type of the elements can be any valid Move type, including other vectors. Move has a vector literal syntax that allows you to create vectors using the vector keyword followed by square brackets containing the elements (or no elements for an empty vector). /// An empty vector of bool elements.\nlet empty: vector = vector[]; /// A vector of u8 elements.\nlet v: vector = vector[10, 20, 30]; /// A vector of vector elements.\nlet vv: vector> = vector[ vector[10, 20], vector[30, 40]\n]; The vector type is a built-in type in Move, and does not need to be imported from a module. However, vector operations are defined in the std::vector module, and you need to import the module to use them.","breadcrumbs":"Syntax Basics » Vector » Vector syntax","id":"113","title":"Vector syntax"},"114":{"body":"The standard library provides methods to manipulate vectors. The following are some of the most commonly used operations: push_back: Adds an element to the end of the vector. pop_back: Removes the last element from the vector. length: Returns the number of elements in the vector. is_empty: Returns true if the vector is empty. remove: Removes an element at a given index. module book::play_vec { #[test] fun vector_methods_test() { let mut v = vector[10u8, 20, 30]; assert!(v.length() == 3, 0); assert!(!v.is_empty(), 1); v.push_back(40); let last_value = v.pop_back(); assert!(last_value == 40, 2); }\n}","breadcrumbs":"Syntax Basics » Vector » Vector operations","id":"114","title":"Vector operations"},"115":{"body":"A vector of non-droppable types cannot be discarded. If you define a vector of types without drop ability, the vector value cannot be ignored. However, if the vector is empty, compiler requires an explicit call to destroy_empty function. module book::non_droppable_vec { struct NoDrop {} #[test] fun test_destroy_empty() { let v = vector[]; // while we know that `v` is empty, we still need to call // the explicit `destroy_empty` function to discard the vector. v.destroy_empty(); }\n}","breadcrumbs":"Syntax Basics » Vector » Destroying a Vector of non-droppable types","id":"115","title":"Destroying a Vector of non-droppable types"},"116":{"body":"Option is a type that represents an optional value which may or may not exist. The concept of Option in Move is borrowed from Rust, and it is a very useful primitive in Move. Option is defined in the Standard Library, and is defined as follows: /// Abstraction of a value that may or may not be present.\nstruct Option has copy, drop, store { vec: vector\n} The Option is a generic type which takes a type parameter Element. It has a single field vec which is a vector of Element. Vector can have length 0 or 1, and this is used to represent the presence or absence of a value. Option type has two variants: Some and None. Some variant contains a value and None variant represents the absence of a value. The Option type is used to represent the absence of a value in a type-safe way, and it is used to avoid the need for empty or undefined values.","breadcrumbs":"Syntax Basics » Option » Option","id":"116","title":"Option"},"117":{"body":"To showcase why Option type is necessary, let's look at an example. Consider an application which takes a user input and stores it in a variable. Some fields are required, and some are optional. For example, a user's middle name is optional. While we could use an empty string to represent the absence of a middle name, it would require extra checks to differentiate between an empty string and a missing middle name. Instead, we can use the Option type to represent the middle name. module book::user_registry { use std::string::String; use std::option::Option; /// A struct representing a user record. struct User has copy, drop { first_name: String, middle_name: Option, last_name: String, } /// Create a new `User` struct with the given fields. public fun register( first_name: String, middle_name: Option, last_name: String, ): User { User { first_name, middle_name, last_name } }\n} In the example above, the middle_name field is of type Option. This means that the middle_name field can either contain a String value or be empty. This makes it clear that the middle name is optional, and it avoids the need for extra checks to differentiate between an empty string and a missing middle name.","breadcrumbs":"Syntax Basics » Option » In Practice","id":"117","title":"In Practice"},"118":{"body":"To use the Option type, you need to import the std::option module and use the Option type. You can then create an Option value using the some or none methods. use std::option; // `option::some` creates an `Option` value with a value.\nlet opt_name = option::some(b\"Alice\"); // `option.is_some()` returns true if option contains a value.\nassert!(opt_name.is_some(), 1); // internal value can be `borrow`ed and `borrow_mut`ed.\nassert!(option.borrow() == &b\"Alice\", 0); // `option.extract` takes the value out of the option.\nlet inner = opt_name.extract(); // `option.is_none()` returns true if option is None.\nassert!(opt_name.is_none(), 2);","breadcrumbs":"Syntax Basics » Option » Using Option","id":"118","title":"Using Option"},"119":{"body":"While Move does not have a built-in to represent strings, it does have a string module in the Standard Library that provides a String type. The string module represents UTF-8 encoded strings, and another module, ascii, provides an ASCII-only String type. Sui execution environment also allows Strings as transaction arguments, so in many cases, String does not to be constructed in the Transaction Block .","breadcrumbs":"Syntax Basics » String » String","id":"119","title":"String"},"12":{"body":"Emacs is a free and open source text editor. move-mode is a Move mode for Emacs by Ashok Menon .","breadcrumbs":"Before we begin » Set up your IDE » Emacs","id":"12","title":"Emacs"},"120":{"body":"No matter which type of string you use, it is important to know that strings are just bytes. The wrappers provided by the string and ascii modules are just that: wrappers. They do provide extra checks and functionality than a vector of bytes, but under the hood, they are just vectors of bytes. module book::string_bytes { /// Anyone can implement a custom string-like type by wrapping a vector. struct MyString { bytes: vector, } /// Implement a `from_bytes` function to convert a vector of bytes to a string. public fun from_bytes(bytes: vector): MyString { MyString { bytes } } /// Implement a `bytes` function to convert a string to a vector of bytes. public fun bytes(self: &MyString): &vector { &self.bytes }\n} Both standard types provide conversions from and to vectors of bytes.","breadcrumbs":"Syntax Basics » String » Strings are bytes","id":"120","title":"Strings are bytes"},"121":{"body":"While there are two types of strings in the standard library, the string module should be considered the default. It has native implementations of many common operations, and hence is more efficient than the ascii module. To create a string or perform operations on it, you must import the string module: module book::strings { use std::string::{Self, String}; #[test] fun using_strings() { // strings are normally created using the `utf8` function let mut hello = string::utf8(b\"Hello\"); let world = string::utf8(b\", World!\"); // strings can be concatenated using the `append_utf8` function let hello_world = hello.append_utf8(*world.bytes()); // just like any other type, strings can be compared assert!(hello_world == string::utf8(b\"Hello, World!\"), 0x0); }\n}","breadcrumbs":"Syntax Basics » String » Working with UTF-8 Strings","id":"121","title":"Working with UTF-8 Strings"},"122":{"body":"The default utf8 method is potentially unsafe, as it does not check that the bytes passed to it are valid UTF-8. If you are not sure that the bytes you are passing are valid UTF-8, you should use the try_utf8 method instead. It returns an Option, which is None if the bytes are not valid UTF-8: The try_* pattern is used throughout the standard library to indicate that a function may fail. For more information, see the Error Handling section. module book::safe_strings { use std::string::{Self, String}; #[test] fun safe_strings() { // this is a valid UTF-8 string let hello = string::try_utf8(b\"Hello\"); assert!(hello.is_some(), 0); // abort if the value is not valid UTF-8 // this is not a valid UTF-8 string let invalid = string::try_utf8(b\"\\xFF\"); assert!(invalid.is_none(), 0); // abort if the value is valid UTF-8 }\n}","breadcrumbs":"Syntax Basics » String » Safe UTF-8 Operations","id":"122","title":"Safe UTF-8 Operations"},"123":{"body":"TODO: ASCII strings","breadcrumbs":"Syntax Basics » String » ASCII Strings","id":"123","title":"ASCII Strings"},"124":{"body":"TODO: summary","breadcrumbs":"Syntax Basics » String » Summary","id":"124","title":"Summary"},"125":{"body":"Control flow statements are used to control the flow of execution in a program. They are used to make decisions, to repeat a block of code, and to exit a block of code early. Move has the following control flow statements (explained in detail below): if and if-else - making decisions on whether to execute a block of code loop and while loops - repeating a block of code break and continue statements - exiting a loop early return statement - exiting a function early","breadcrumbs":"Syntax Basics » Control Flow » Control Flow","id":"125","title":"Control Flow"},"126":{"body":"The if expression is used to make decisions in a program. It evaluates a boolean expression and executes a block of code if the expression is true. Paired with else, it can execute a different block of code if the expression is false. The syntax for the if expression is: if () ;\nif () else ; Just like any other expression, if requires a semicolon, if there are other expressions following it. The else keyword is optional, except for the case when the resulting value is assigned to a variable. We will cover this below. module book::if_condition { #[test] fun test_if() { let x = 5; // `x > 0` is a boolean expression. if (x > 0) { std::debug::print(&b\"X is bigger than 0\".to_string()) }; }\n} Let's see how we can use if and else to assign a value to a variable: module book::if_else { #[test] fun test_if_else() { let x = 5; let y = if (x > 0) { 1 } else { 0 }; assert!(y == 1, 0); }\n} Here we assign the value of the if expression to the variable y. If x is greater than 0, y will be assigned the value 1, otherwise 0. The else block is necessary, because both branches must return a value of the same type. If we omit the else block, the compiler will throw an error. Conditional expressions are one of the most important control flow statements in Move. They can use either user provided input or some already stored data to make decisions. In particular, they are used in the assert! macro to check if a condition is true, and if not, to abort execution. We will get to it very soon!","breadcrumbs":"Syntax Basics » Control Flow » Conditional Statements","id":"126","title":"Conditional Statements"},"127":{"body":"Loops are used to execute a block of code multiple times. Move has two built-in types of loops: loop and while. In many cases they can be used interchangeably, but usually while is used when the number of iterations is known in advance, and loop is used when the number of iterations is not known in advance or there are multiple exit points. Loops are helpful when dealing with collections, such as vectors, or when we want to repeat a block of code until a certain condition is met. However, it is important to be careful with loops, as they can lead to infinite loops, which can lead to gas exhaustion and the transaction being aborted.","breadcrumbs":"Syntax Basics » Control Flow » Repeating Statements with Loops","id":"127","title":"Repeating Statements with Loops"},"128":{"body":"The while statement is used to execute a block of code as long as a boolean expression is true. Just like we've seen with if, the boolean expression is evaluated before each iteration of the loop. Just like conditional statements, the while loop is an expression and requires a semicolon if there are other expressions following it. The syntax for the while loop is: while () ; Here is an example of a while loop with a very simple condition: module book::while_loop { // This function iterates over the `x` variable until it reaches 10, the // return value is the number of iterations it took to reach 10. // // If `x` is 0, then the function will return 10. // If `x` is 5, then the function will return 5. fun while_loop(x: u8): u8 { let mut y = 0; // This will loop until `x` is 10. // And will never run if `x` is 10 or more. while (x < 10) { y = y + 1; }; y } #[test] fun test_while() { assert!(while_loop(0) == 10, 0); // 10 times assert!(while_loop(5) == 5, 0); // 5 times assert!(while_loop(10) == 0, 0); // loop never executed }\n}","breadcrumbs":"Syntax Basics » Control Flow » The while loop","id":"128","title":"The while loop"},"129":{"body":"Now let's imagine a scenario where the boolean expression is always true. For example, if we literally passed true to the while condition. As you might expect, this would create an infinite loop, and this is almost what the loop statement works like. module book::infinite_while { #[test] fun test_infinite_while() { let mut x = 0; // This will loop forever. while (true) { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); }\n} An infinite while, or while without a condition, is a loop. The syntax for it is simple: loop ; Let's rewrite the previous example using loop instead of while: module book::infinite_loop { #[test] fun test_infinite_loop() { let mut x = 0; // This will loop forever. loop { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); }\n} Infinite loops on their own are not very useful in Move, since every operation in Move costs gas, and an infinite loop will lead to gas exhaustion. However, they can be used in combination with break and continue statements to create more complex loops.","breadcrumbs":"Syntax Basics » Control Flow » Infinite loop","id":"129","title":"Infinite loop"},"13":{"body":"Web based IDE from Github, can be run right in the browser and provides almost a full-featured VSCode experience. Github Codespaces Move Syntax is also available in the extensions marketplace.","breadcrumbs":"Before we begin » Set up your IDE » Github Codespaces","id":"13","title":"Github Codespaces"},"130":{"body":"As we already mentioned, infinite loops are rather useless on their own. And that's where we introduce the break and continue statements. They are used to exit a loop early, and to skip the rest of the current iteration, respectively. Syntax for the break statement is: break; The break statement is used to stop the execution of a loop and exit it early. It is often used in combination with a conditional statement to exit the loop when a certain condition is met. To illustrate this point, let's turn the infinite loop from the previous example into something that looks and behaves more like a while loop: module book::break_loop { #[test] fun test_break_loop() { let mut x = 0; // This will loop until `x` is 5. loop { x = x + 1; // If `x` is 5, then exit the loop. if (x == 5) { break; // Exit the loop. } }; assert!(x == 5, 0); }\n} Almost identical to the while loop, right? The break statement is used to exit the loop when x is 5. If we remove the break statement, the loop will run forever, just like the previous example.","breadcrumbs":"Syntax Basics » Control Flow » Exiting a Loop Early","id":"130","title":"Exiting a Loop Early"},"131":{"body":"The continue statement is used to skip the rest of the current iteration and start the next one. Similarly to break, it is used in combination with a conditional statement to skip the rest of the iteration when a certain condition is met. Syntax for the continue statement is continue; The example below skips odd numbers and prints only even numbers from 0 to 10: module book::continue_loop { #[test] fun test_continue_loop() { let mut x = 0; // This will loop until `x` is 10. loop { x = x + 1; // If `x` is odd, then skip the rest of the iteration. if (x % 2 == 1) { continue; // Skip the rest of the iteration. } std::debug::print(&x); // If `x` is 10, then exit the loop. if (x == 10) { break; // Exit the loop. } }; assert!(x == 10, 0); // 10 }\n} break and continue statements can be used in both while and loop loops.","breadcrumbs":"Syntax Basics » Control Flow » Skipping an Iteration","id":"131","title":"Skipping an Iteration"},"132":{"body":"The return statement is used to exit a function early and return a value. It is often used in combination with a conditional statement to exit the function when a certain condition is met. The syntax for the return statement is: return ; Here is an example of a function that returns a value when a certain condition is met: module book::return_statement { // This function returns `true` if `x` is greater than 0 and not 5, // otherwise it returns `false`. fun is_positive(x: u8): bool { if (x == 5) { return false; } if (x > 0) { return true; }; false } #[test] fun test_return() { assert!(is_positive(5), false); assert!(is_positive(0), false); }\n} Unlike in other languages, the return statement is not required for the last expression in a function. The last expression in a function block is automatically returned. However, the return statement is useful when we want to exit a function early if a certain condition is met.","breadcrumbs":"Syntax Basics » Control Flow » Return","id":"132","title":"Return"},"133":{"body":"Constants are immutable values that are defined at the module level. They often serve as a way to give names to values that are used throughout a module. For example, if there's a default price for a product, you might define a constant for it. Constants are internal to the module and can not be accessed from other modules. module book::shop_price { use sui::coin::{Self, Coin}; use sui::sui::SUI; /// The price of an item in the shop. const ITEM_PRICE: u64 = 100; /// An item sold in the shop. struct Item { /* ... */ } /// Purchase an item from the shop. public fun purchase(coin: Coin): Item { assert!(coin.value() == ITEM_PRICE, 0); Item { /* ... */ } }\n}","breadcrumbs":"Syntax Basics » Constants » Constants","id":"133","title":"Constants"},"134":{"body":"Constants are named using UPPER_SNAKE_CASE. This is a convention that is used throughout the Move codebase. It's a way to make constants stand out from other identifiers in the code. Move compiler will error if the first letter of a constant is not an uppercase letter.","breadcrumbs":"Syntax Basics » Constants » Naming Convention","id":"134","title":"Naming Convention"},"135":{"body":"Constants can't be changed and assigned new values. They are part of the package bytecode, and inherently immutable. module book::immutable_constants { const ITEM_PRICE: u64 = 100; // emits an error fun change_price() { ITEM_PRICE = 200; }\n}","breadcrumbs":"Syntax Basics » Constants » Constants are Immutable","id":"135","title":"Constants are Immutable"},"136":{"body":"","breadcrumbs":"Syntax Basics » Assert and Abort » Assert and Abort","id":"136","title":"Assert and Abort"},"137":{"body":"The abort keyword is used to abort the execution of a transaction. It is used in combination with an abort code, which will be returned to the caller of the transaction. The abort code is an integer of type u64 and can be any value. let user_has_access = true; // abort with a predefined constant if `user_has_access` is false\nif (!user_has_access) { abort 0\n}; // there's an alternative syntax using parenthesis`\nif (user_has_access) { abort(0)\n}; /* ... */","breadcrumbs":"Syntax Basics » Assert and Abort » Abort","id":"137","title":"Abort"},"138":{"body":"The assert! macro is a built-in macro that can be used to assert a condition. If the condition is false, the transaction will abort with the given abort code. The assert! macro is a convenient way to abort a transaction if a condition is not met. The macro shortens the code otherwise written with an if expression + abort. // aborts if `user_has_access` is false with abort code 0\nassert!(user_has_access, 0); // expands into:\nif (!user_has_access) { abort 0\n};","breadcrumbs":"Syntax Basics » Assert and Abort » assert!","id":"138","title":"assert!"},"139":{"body":"To make error codes more descriptive, it is a good practice to define error constants. Error constants are defined as const declarations and are usually prefixed with E followed by a camel case name. Error constatns are no different from other constants and don't have special handling. So their addition is purely a practice for better code readability. /// Error code for when the user has no access.\nconst ENoAccess: u64 = 0;\n/// Trying to access a field that does not exist.\nconst ENoField: u64 = 1; // asserts are way more readable now\nassert!(user_has_access, ENoAccess);\nassert!(field_exists, ENoField);","breadcrumbs":"Syntax Basics » Assert and Abort » Error constants","id":"139","title":"Error constants"},"14":{"body":"Move 2024 is the new version of the Move language that is maintained by Mysten Labs. All of the examples in this book are written in Move 2024. If you're used to the pre-2024 version of Move, please, refer to the Move 2024 Migration Guide to learn about the differences between the two versions.","breadcrumbs":"Before we begin » Move 2024 » Move 2024","id":"14","title":"Move 2024"},"140":{"body":"We suggest reading the Better Error Handling guide to learn about best practices for error handling in Move.","breadcrumbs":"Syntax Basics » Assert and Abort » Further reading","id":"140","title":"Further reading"},"141":{"body":"Functions are the building blocks of Move programs. They are called from user transactions and from other functions and group executable code into reusable units. Functions can take arguments and return a value. They are declared with the fun keyword at the module level. Just like any other module member, by default they're private and can only be accessed from within the module. module book::math { /// Function takes two arguments of type `u64` and returns their sum. /// The `public` visibility modifier makes the function accessible from /// outside the module. public fun add(a: u64, b: u64): u64 { a + b } #[test] fun test_add() { let sum = add(1, 2); assert!(sum == 3, 0); }\n} In this example, we define a function add that takes two arguments of type u64 and returns their sum. The function is called from the test_add function, which is a test function located in the same module. In the test we compare the result of the add function with the expected value and abort the execution if the result is different.","breadcrumbs":"Syntax Basics » Function » Function","id":"141","title":"Function"},"142":{"body":"There's a convention to call functions in Move with the snake_case naming convention. This means that the function name should be all lowercase with words separated by underscores. For example, do_something, add, get_balance, is_authorized, and so on. A function is declared with the fun keyword followed by the function name (a valid Move identifier), a list of arguments in parentheses, and a return type. The function body is a block of code that contains a sequence of statements and expressions. The last expression in the function body is the return value of the function. fun return_nothing() { // empty expression, function returns `()`\n}","breadcrumbs":"Syntax Basics » Function » Function declaration","id":"142","title":"Function declaration"},"143":{"body":"Just like any other module member, functions can be imported and accessed via a path. The path consists of the module path and the function name separated by ::. For example, if you have a function called add in the math module in the book package, the path to it will be book::math::add, or, if the module is imported, math::add. module book::use_math { use book::math; fun call_add() { // function is called via the path let sum = math::add(1, 2); }\n}","breadcrumbs":"Syntax Basics » Function » Accessing functions","id":"143","title":"Accessing functions"},"144":{"body":"Move functions can return multiple values, which is useful when you need to return more than one value from a function. The return type of the function is a tuple of types. The return value is a tuple of expressions. fun get_name_and_age(): (vector, u8) { (b\"John\", 25)\n} Result of a function call with tuple return has to be unpacked into variables via let (tuple) syntax: // declare name and age as immutable\nlet (name, age) = get_name_and_age(); If any of the declared values need to be declared as mutable, the mut keyword is placed before the variable name: // declare name as mutable, age as immutable\nlet (mut name, age) = get_name_and_age(); If some of the arguments are not used, they can be ignored with the _ symbol: // ignore the name, declare age as mutable\nlet (_, mut age) = get_name_and_age();","breadcrumbs":"Syntax Basics » Function » Multiple return values","id":"144","title":"Multiple return values"},"145":{"body":"Move Compiler supports receiver syntax , which allows defining methods which can be called on instances of a struct. This is similar to the method syntax in other programming languages. It is a convenient way to define functions which operate on the fields of a struct.","breadcrumbs":"Syntax Basics » Struct Methods » Struct Methods","id":"145","title":"Struct Methods"},"146":{"body":"If the first argument of a function is a struct internal to the module, then the function can be called using the . operator. If the function uses a struct from another module, then method won't be associated with the struct by default. In this case, the function can be called using the standard function call syntax. When a module is imported, the methods are automatically associated with the struct. module book::hero { /// A struct representing a hero. struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } /// A method which casts a spell, consuming mana. public fun heal_spell(hero: &mut Hero) { hero.health = hero.health + 10; hero.mana = hero.mana - 10; } /// A method which returns the health of the hero. public fun health(hero: &Hero): u8 { hero.health } /// A method which returns the mana of the hero. public fun mana(hero: &Hero): u8 { hero.mana } #[test] // Test the methods of the `Hero` struct. fun test_methods() { let mut hero = new(); hero.heal_spell(); assert!(hero.health() == 110, 1); assert!(hero.mana() == 90, 2); }\n}","breadcrumbs":"Syntax Basics » Struct Methods » Method syntax","id":"146","title":"Method syntax"},"147":{"body":"For modules that define multiple structs and their methods, it is possible to define method aliases to avoid name conflicts, or to provide a better-named method for a struct. The syntax for aliases is: // for local method association\nuse fun as .; // exported alias\npublic use fun as .; Public aliases are only allowed for structs defined in the same module. If a struct is defined in another module, an alias can still be created but cannot be made public. In the example below, we changed the hero module and added another type - Villain. Both Hero and Villain have similar field names and methods. And to avoid name conflicts, we prefixed methods with hero_ and villain_ respectively. However, we can create aliases for these methods so that they can be called on the instances of the structs without the prefix. module book::hero_and_villain { /// A struct representing a hero. struct Hero has drop { health: u8, } /// A struct representing a villain. struct Villain has drop { health: u8, } /// Create a new Hero. public fun new_hero(): Hero { Hero { health: 100 } } /// Create a new Villain. public fun new_villain(): Villain { Villain { health: 100 } } // Alias for the `hero_health` method. Will be imported automatically when // the module is imported. public use fun hero_health as Hero.health; public fun hero_health(hero: &Hero): u8 { hero.health } // Alias for the `villain_health` method. Will be imported automatically // when the module is imported. public use fun villain_health as Villain.health; public fun villain_health(villain: &Villain): u8 { villain.health } #[test] // Test the methods of the `Hero` and `Villain` structs. fun test_associated_methods() { let mut hero = new_hero(); assert!(hero.health() == 100, 1); let mut villain = new_villain(); assert!(villain.health() == 100, 3); }\n} As you can see, in the test function, we called the health method on the instances of Hero and Villain without the prefix. The compiler will automatically associate the methods with the structs.","breadcrumbs":"Syntax Basics » Struct Methods » Method Aliases","id":"147","title":"Method Aliases"},"148":{"body":"It is also possible to associate a function defined in another module with a struct from the current module. Following the same approach, we can create an alias for the method defined in another module. Let's use the bcs::to_bytes method from the Standard Library and associate it with the Hero struct. It will allow serializing the Hero struct to a vector of bytes. module book::hero_to_bytes { use std::bcs; // Alias for the `bcs::to_bytes` method. Imported aliases should be defined // in the top of the module. public use fun bcs::to_bytes as Hero.to_bytes; /// A struct representing a hero. struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } // Alias for the `bcs::to_string` method. public use fun bcs::to_bytes as Hero.to_bytes; #[test] // Test the methods of the `Hero` struct. fun test_hero_serialize() { let mut hero = new(); let serialized = hero.to_bytes(); assert!(serialized.length() == 3, 1); }\n}","breadcrumbs":"Syntax Basics » Struct Methods » Aliasing an external module's method","id":"148","title":"Aliasing an external module's method"},"149":{"body":"Every module member has a visibility. By default, all module members are private - meaning they are only accessible within the module they are defined in. However, you can add a visibility modifier to make a module member public - visible outside the module, or friend - visible in \"friend\" modules within the same package, or entry - can be called from a transaction but can't be called from other modules.","breadcrumbs":"Syntax Basics » Visibility Modifiers » Visibility Modifiers","id":"149","title":"Visibility Modifiers"},"15":{"body":"In this section you'll get to experience the Move language and the Move compiler first-hand. You'll learn how to create a package, write a simple module, test it and generate documentation. You can also use this section as a quick CLI reference for your own projects. This guide mentions topics which you will learn later in this book. If you are not familiar with some of the concepts, don't worry, you'll learn them later. Try to focus on the task at hand and don't get distracted by the details. It is important that you have a working Move environment. If you haven't set it up yet, please refer to the Install Sui section. This section is divided into the following parts (in order): Hello World Adding Tests Debugging Generating Docs","breadcrumbs":"Your First Move » Your first Move","id":"15","title":"Your first Move"},"150":{"body":"A function or a struct defined in a module which has no visibility modifier is private . module book::internal_visbility { // This function can be called from other functions in the same module fun internal() { /* ... */ } // Same module -> can call internal() fun call_internal() { internal(); }\n} Move compiler won't allow this code to compile: module book::try_calling_internal { use book::internal_visbility; // Different module -> can't call internal() fun try_calling_internal() { internal_visbility::internal(); }\n}","breadcrumbs":"Syntax Basics » Visibility Modifiers » Internal Visibility","id":"150","title":"Internal Visibility"},"151":{"body":"TODO: public visibility","breadcrumbs":"Syntax Basics » Visibility Modifiers » Public Visibility","id":"151","title":"Public Visibility"},"152":{"body":"TODO: friend visibility","breadcrumbs":"Syntax Basics » Visibility Modifiers » Friend Visibility","id":"152","title":"Friend Visibility"},"153":{"body":"TODO: 2024 public(package)","breadcrumbs":"Syntax Basics » Visibility Modifiers » Package Visibility","id":"153","title":"Package Visibility"},"154":{"body":"Every variable in Move has a scope and an owner. The scope is the range of code where the variable is valid, and the owner is the scope that this variable belongs to. Once the owner scope ends, the variable is dropped. This is a fundamental concept in Move, and it is important to understand how it works.","breadcrumbs":"Syntax Basics » Ownership and Scope » Ownership and Scope","id":"154","title":"Ownership and Scope"},"155":{"body":"A variable defined in a function scope is owned by this scope. The runtime goes through the function scope and executes every expression and statement. Once the function scope end, the variables defined in it are dropped or deallocated. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function } // a is dropped here #[test] fun test_owner() { owner(); // a is not valid here }\n} In the example above, the variable a is owned by the owner function, and the variable b is owned by the other function. When each of these functions are called, the variables are defined, and when the function ends, the variables are discarded.","breadcrumbs":"Syntax Basics » Ownership and Scope » Ownership","id":"155","title":"Ownership"},"156":{"body":"If we changed the owner function to return the variable a, then the ownership of a would be transferred to the caller of the function. module book::ownership { public fun owner(): u8 { let a = 1; // a defined here a // scope ends, a is returned } #[test] fun test_owner() { let a = owner(); // a is valid here } // a is dropped here\n}","breadcrumbs":"Syntax Basics » Ownership and Scope » Returning a Value","id":"156","title":"Returning a Value"},"157":{"body":"Additionally, if we passed the variable a to another function, the ownership of a would be transferred to this function. When performing this operation, we move the value from one scope to another. This is also called move semantics . module book::ownership { public fun owner(): u8 { let a = 10; a } // a is returned public fun take_ownership(v: u8) { // v is owned by `take_ownership` } // v is dropped here #[test] fun test_owner() { let a = owner(); take_ownership(a); // a is not valid here }\n}","breadcrumbs":"Syntax Basics » Ownership and Scope » Passing by Value","id":"157","title":"Passing by Value"},"158":{"body":"Function has a main scope, and it can also have sub-scopes via the use of blocks. A block is a sequence of statements and expressions, and it has its own scope. Variables defined in a block are owned by this block, and when the block ends, the variables are dropped. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function's scope { let b = 2; // b is owned by the block { let c = 3; // c is owned by the block }; // c is dropped here }; // b is dropped here // a = b; // error: b is not valid here // a = c; // error: c is not valid here } // a is dropped here\n} However, shall we use the return value of a block, the ownership of the variable is transferred to the caller of the block. module book::ownership { public fun owner(): u8 { let a = 1; // a is owned by the `owner` function's scope let b = { let c = 2; // c is owned by the block c // c is returned }; // c is dropped here a + b // both a and b are valid here }\n}","breadcrumbs":"Syntax Basics » Ownership and Scope » Scopes with Blocks","id":"158","title":"Scopes with Blocks"},"159":{"body":"Some types in Move are copyable , which means that they can be copied without transferring the ownership. This is useful for types that are small and cheap to copy, such as integers and booleans. Move compiler will automatically copy these types when they are passed to a function or returned from a function, or when they're moved to a scope and then accessed in their original scope.","breadcrumbs":"Syntax Basics » Ownership and Scope » Copyable Types","id":"159","title":"Copyable Types"},"16":{"body":"It's time to write your first Move program. We'll start with the classic \"Hello World\" program which returns a String.","breadcrumbs":"Your First Move » Hello World! » Hello World","id":"16","title":"Hello World"},"160":{"body":"In Move, the copy ability on a type indicates that the instance or the value of the type can be copied. While this behavior may feel very natural when working with numbers or other simple types, it is not the default for custom types in Move. This is because Move is designed to express digital assets and resources, and inability to copy is a key element of the resource model. However, Move type system allows you to define custom types with the copy ability. public struct Copyable has copy {} In the example above, we define a custom type Copyable with the copy ability. This means that instances of Copyable can be copied, both implicitly and explicitly. let a = Copyable {};\nlet b = a; // `a` is copied to `b`\nlet c = *&b; // explicit copy via dereference operator In the example above, a is copied to b implicitly, and then explicitly copied to c using the dereference operator. If Copyable did not have the copy ability, the code would not compile, and the Move compiler would raise an error.","breadcrumbs":"Syntax Basics » Abilities: Copy » Abilities: Copy","id":"160","title":"Abilities: Copy"},"161":{"body":"The copy ability is closely related to drop ability . If a type has the copy ability, very likely that it should have drop too. This is because the drop ability is required to clean up the resources when the instance is no longer needed. If a type has only copy , then managing its instances gets more complicated, as the values cannot be ignored. public struct Value has copy, drop {} All of the primitive types in Move behave as if they have the copy and drop abilities. This means that they can be copied and dropped, and the Move compiler will handle the memory management for them.","breadcrumbs":"Syntax Basics » Abilities: Copy » Copying and Drop","id":"161","title":"Copying and Drop"},"162":{"body":"In the previous section we explained the ownership and scope in Move. We showed how the value is moved to a new scope, and how it changes the owner. In this section, we will explain how to borrow a reference to a value to avoid moving it, and how Move's borrow checker ensures that the references are used correctly.","breadcrumbs":"Syntax Basics » References » References","id":"162","title":"References"},"163":{"body":"References are a way to borrow a value without changing its owner. Immutable references allow the function to read the value without changing it or moving it. And mutable references allow the function to read and modify the value without moving it. To illustrate this, let's consider a simple example - an application for a metro (subway) pass. We will look at 4 different scenarios: Card can be purchased at the kiosk for a fixed price Card can be shown to inspectors to prove that the passenger has a valid pass Card can be used at the turnstile to enter the metro, and spend a ride Card can be recycled once it's empty module book::references { /// Error code for when the card is empty. const ENoUses: u64 = 0; /// Number of uses for a metro pass card. const USES: u8 = 3; /// A metro pass card struct Card { uses: u8 } /// Purchase a metro pass card. public fun purchase(/* pass a Coin */): Card { Card { uses: USES } } /// Show the metro pass card to the inspector. public fun show(card: &Card): bool { card.uses > 0 } /// Use the metro pass card at the turnstile to enter the metro. public fun enter_metro(card: &mut Card) { assert!(card.uses > 0, ENoUses); card.uses = card.uses - 1; } /// Recycle the metro pass card. public fun recycle(card: Card) { assert!(card.uses == 0, ENoUses); let Card { uses: _ } = card; } #[test] fun test_card() { // declaring variable as mutable because we modify it let mut card = purchase(); card.enter_metro(); // modify the card but don't move it assert!(card.show(), true); // read the card! card.enter_metro(); // modify the card but don't move it card.enter_metro(); // modify the card but don't move it card.recycle(); // move the card out of the scope }\n}","breadcrumbs":"Syntax Basics » References » Reference","id":"163","title":"Reference"},"164":{"body":"","breadcrumbs":"Syntax Basics » References » Mutable References","id":"164","title":"Mutable References"},"165":{"body":"","breadcrumbs":"Syntax Basics » References » Dereference and Copy","id":"165","title":"Dereference and Copy"},"166":{"body":"","breadcrumbs":"Syntax Basics » References » Notes","id":"166","title":"Notes"},"167":{"body":"Generics are a way to define a type or function that can work with any type. This is useful when you want to write a function which can be used with different types, or when you want to define a type that can hold any other type. Generics are the foundation of many advanced features in Move, such as collections, abstract implementations, and more.","breadcrumbs":"Syntax Basics » Generics » Generics","id":"167","title":"Generics"},"168":{"body":"To define a generic type or function, a type signature needs to have a list of generic parameters enclosed in angle brackets (< and >). The generic parameters are separated by commas. /// Container for any type `T`.\nstruct Container has drop { value: T,\n} /// Function that creates a new `Container` with a generic value `T`.\npublic fun new(value: T): Container { Container { value }\n} In the example above, Container is a generic type with a single type parameter T, the value field of the container stores the T. The new function is a generic function with a single type parameter T, and it returns a Container with the given value. Generic types must be initialed with a concrete type, and generic functions must be called with a concrete type. #[test]\nfun test_generic() { // these three lines are equivalent let container: Container = new(10); // type inference let container = new(10); // create a new `Container` with a `u8` value let container = new(10u8); assert!(container.value == 10, 0x0);\n} In the test function test_generic we demonstrate three equivalent ways to create a new Container with a u8 value. Because numeric types need to be inferred, we specify the type of the number literal.","breadcrumbs":"Syntax Basics » Generics » Generic Syntax","id":"168","title":"Generic Syntax"},"169":{"body":"You can define a type or function with multiple type parameters. The type parameters are then separated by commas. /// A pair of values of any type `T` and `U`.\nstruct Pair { first: T, second: U,\n} /// Function that creates a new `Pair` with two generic values `T` and `U`.\npublic fun new_pair(first: T, second: U): Pair { Pair { first, second }\n} In the example above, Pair is a generic type with two type parameters T and U, and the new_pair function is a generic function with two type parameters T and U. The function returns a Pair with the given values. The order of the type parameters is important, and it should match the order of the type parameters in the type signature. #[test]\nfun test_generic() { // these three lines are equivalent let pair: Pair = new_pair(10, true); // type inference let pair = new_pair(10, true); // create a new `Pair` with a `u8` and `bool` values let pair = new_pair(10u8, true); assert!(pair.first == 10, 0x0); assert!(pair.second, 0x0);\n} If we added another instance where we swapped type parameters in the new_pair function, and tried to compare two types, we'd see that the type signatures are different, and cannot be compared. #[test]\nfun test_swap_type_params() { let pair1: Pair = new_pair(10u8, true); let pair2: Pair = new_pair(true, 10u8); // this line will not compile // assert!(pair1 == pair2, 0x0);\n} Types for variables pair1 and pair2 are different, and the comparison will not compile.","breadcrumbs":"Syntax Basics » Generics » Multiple Type Parameters","id":"169","title":"Multiple Type Parameters"},"17":{"body":"First, you need to initialize a new project. Assuming you have Sui installed , run the following command: $ sui move new hello_world Sui CLI has a move subcommand which is used to work with Move packages. The new subcommand creates a new package with the given name in a new directory. In our case, the package name is hello_world, and it is located in the hello_world directory. To make sure that the package was created successfully, we can check the contents of the current directory, and see that there is a new hello_world path. $ ls | grep hello_world\nhello_world If the output looks like this, then everything is fine, and we can proceed. The folder structure of the package is the folowing: hello_world\n├── Move.toml\n├── src/\n│ └── hello_world.move\n└── tests/ └── hello_world_tests.move The address I'm using in this book is always 0x0 and the name for it is \"book\". You can use any address you want, but make sure to change it in the examples. To make the examples work as is, please, add the following address to the [addresses] section in the Move.toml: # Move.toml\n[addresses]\nstd = \"0x1\"\nbook = \"0x0\"","breadcrumbs":"Your First Move » Hello World! » Initialize a project","id":"17","title":"Initialize a project"},"170":{"body":"In the examples above we focused on instantiating generic types and calling generic functions to create instances of these types. However, the real power of generics is the ability to define shared behavior for the base, generic type, and then use it independently of the concrete types. This is especially useful when working with collections, abstract implementations, and other advanced features in Move. /// A user record with name, age, and some generic metadata\nstruct User { name: String, age: u8, /// Varies depending on application. metadata: T,\n} In the example above, User is a generic type with a single type parameter T, with shared fields name and age, and the generic metadata field which can store any type. No matter what the metadata is, all of the instances of User will have the same fields and methods. /// Updates the name of the user.\npublic fun update_name(user: &mut User, name: String) { user.name = name;\n} /// Updates the age of the user.\npublic fun update_age(user: &mut User, age: u8) { user.age = age;\n}","breadcrumbs":"Syntax Basics » Generics » Why Generics?","id":"170","title":"Why Generics?"},"171":{"body":"In some cases, you may want to define a generic type with a type parameter that is not used in the fields or methods of the type. This is called a phantom type parameter . Phantom type parameters are useful when you want to define a type that can hold any other type, but you want to enforce some constraints on the type parameter. /// A generic type with a phantom type parameter.\nstruct Coin { value: u64\n} The Coin type here does not contain any fields or methods that use the type parameter T. It is used to differentiate between different types of coins, and to enforce some constraints on the type parameter T. struct USD {}\nstruct EUR {} #[test]\nfun test_phantom_type() { let coin1: Coin = Coin { value: 10 }; let coin2: Coin = Coin { value: 20 };\n} In the example above, we demonstrate how to create two different instances of Coin with different phantom type parameters USD and EUR. The type parameter T is not used in the fields or methods of the Coin type, but it is used to differentiate between different types of coins. It will make sure that the USD and EUR coins are not mixed up.","breadcrumbs":"Syntax Basics » Generics » Phantom Type Parameters","id":"171","title":"Phantom Type Parameters"},"172":{"body":"Type parameters can be constrained to have certain abilities. This is useful when you need the inner type to allow certain behavior, such as copy or drop . The syntax for constraining a type parameter is T: + . /// A generic type with a type parameter that has the `drop` ability.\nstruct Droppable { value: T,\n} /// A generic struct with a type parameter that has the `copy` and `drop` abilities.\nstruct CopyableDroppable { value: T, // T must have the `copy` and `drop` abilities\n} Move Compiler will enforce that the type parameter T has the specified abilities. If the type parameter does not have the specified abilities, the code will not compile. /// Type without any abilities.\nstruct NoAbilities {} #[test]\nfun test_constraints() { // Fails - `NoAbilities` does not have the `drop` ability let droppable = Droppable { value: 10 }; // Fails - `NoAbilities` does not have the `copy` and `drop` abilities let copyable_droppable = CopyableDroppable { value: 10 };\n}","breadcrumbs":"Syntax Basics » Generics » Constraints on Type Parameters","id":"172","title":"Constraints on Type Parameters"},"173":{"body":"TODO: add links to","breadcrumbs":"Syntax Basics » Generics » Further Reading","id":"173","title":"Further Reading"},"174":{"body":"In programming languages reflection is the ability of a program to examine and modify its own structure and behavior. In Move, there's a limited form of reflection that allows you to inspect the type of a value at runtime. This is useful when you need to store type information in a homogeneous collection, or when you need to check if a type belongs to a package. Type reflection is implemented in the Standard Library module std::type_name. Expressed very roughly, it gives a single function get() which returns the name of the type T.","breadcrumbs":"Syntax Basics » Type Reflection » Type Reflection","id":"174","title":"Type Reflection"},"175":{"body":"The module is pretty straightforward, and operations allowed on the result are limited to getting a string representation and extracting the module and address of the type. module book::type_reflection { use std::type_name; /// A function that returns the name of the type `T` and its module and address. public fun i_dont_know_you(): (String, String, String) { let type_name: TypeName = type_name::get(); // there's a way to borrow let str: &String = type_name.borrow_string(); let module_name: String = type_name.get_module(); let address_str: String = type_name.get_address(); // and a way to consume the value let str = type_name.into_string(); (str, module_name, address_str) } #[test_only] struct MyType {} #[test] fun test_type_reflection() { let (type_name, module_name, address_str) = i_dont_know_you(); // assert!(module_name == b\"type_reflection\".to_string(), 1); }\n}","breadcrumbs":"Syntax Basics » Type Reflection » In practice","id":"175","title":"In practice"},"176":{"body":"Type reflection is an important part of the language, and it is a crucial part of some of the more advanced patterns.","breadcrumbs":"Syntax Basics » Type Reflection » Further reading","id":"176","title":"Further reading"},"177":{"body":"In previous chapters we've covered the basics of Move and Sui Storage Model . Now it's time to dive deeper into the advanced topics of Sui programmability. This chapter introduces more complex concepts, practices and features of Move and Sui that are essential for building more sophisticated applications. It is intended for developers who are already familiar with the basics of Move and Sui, and are looking to expand their knowledge and skills.","breadcrumbs":"Advanced Programmability » Advanced Programmability","id":"177","title":"Advanced Programmability"},"178":{"body":"Due to the object model and the data organization model of Sui, some operations can be performed in a more efficient and parallelized way. This is called the fast path . Transaction that touches shared state requires consensus because it can be accessed by multiple parties at the same time. However, if the transaction only touches the private state (owned objects), there is no need for consensus. This is the fast path. We have a favorite example for this: a coffee machine and a coffee cup. The coffee machine placed in the office is a shared resource - everyone can use it, but there can be only one user at a time. The coffee cup, on the other hand, is a private resource - it belongs to a specific person, and only that person can use it. To make coffee, one needs to use the coffee machine and wait if there's someone else using it. However, once the coffee is made and poured into the cup, the person can take the cup and drink the coffee without waiting for anyone else. The same principle applies to Sui. If a transaction only touches the private state (the cup with coffee), it can be executed without consensus. If it touches the shared state (the coffee machine), it requires consensus. This is the fast path.","breadcrumbs":"Advanced Programmability » Fast Path » Fast Path","id":"178","title":"Fast Path"},"179":{"body":"Consensus is only required for mutating the shared state. If the object is immutable, it is treated as a \"constant\" and can be accessed in parallel. Frozen objects can be used to share unchangable data between multiple parties without requiring consensus.","breadcrumbs":"Advanced Programmability » Fast Path » Frozen objects","id":"179","title":"Frozen objects"},"18":{"body":"Let's create a new module called hello_world. To do so, create a new file in the sources folder called hello_world.move. So that the structure looks like this: sources/ hello_world.move\nMove.toml And then add the following code to the hello_world.move file: // sources/hello_world.move\nmodule book::hello_world { use std::string::{Self, String}; public fun hello_world(): String { string::utf8(b\"Hello, World!\") }\n} While it's not a hard restriction, it's is considered a good practice to name the module the same as the file. So, in our case, the module name is hello_world and the file name is hello_world.move. The module name and function names should be in snake_case - all lowercase letters with underscores between words. You can read more about coding conventions in the Coding Conventions section.","breadcrumbs":"Your First Move » Hello World! » Create a module","id":"18","title":"Create a module"},"180":{"body":"module book::coffee_machine { use sui::object::{Self, UID}; use sui::tx_context::TxContext; /// Coffee machine is a shared object, hence requires `key` ability. struct CoffeeMachine has key { id: UID, counter: u16 } /// Cup is an owned object. struct Cup has key, store { id: UID, has_coffee: bool } /// Initialize the module and share the `CoffeeMachine` object. fun init(ctx: &mut TxContext) { transfer::share_object(CoffeeMachine { id: object::new(ctx), counter: 0 }); } /// Take a cup out of thin air. This is a fast path operation. public fun take_cup(ctx: &mut TxContext): Cup { Cup { id: object::new(ctx), has_coffee: false } } /// Make coffee and pour it into the cup. Requires consensus. public fun make_coffee(mut machine: &mut CoffeeMachine, mut cup: &mut Cup) { machine.counter = machine.counter + 1; cup.has_coffee = true; } /// Drink coffee from the cup. This is a fast path operation. public fun drink_coffee(mut cup: &mut Cup) { cup.has_coffee = false; } /// Put the cup back. This is a fast path operation. public fun put_back(cup: Cup) { let Cup { id, has_coffee: _ } = cup; object::delete(id); }\n}","breadcrumbs":"Advanced Programmability » Fast Path » In practice","id":"180","title":"In practice"},"181":{"body":"The Clock object with the reserved address 0x6 is a special case of a shared object which maintains the fast path. While being a shared object, it cannot be passed by a mutable reference in a regular transaction. An attempt to do so will not succeed, and the transaction will be rejected.","breadcrumbs":"Advanced Programmability » Fast Path » Special case: Clock","id":"181","title":"Special case: Clock"},"182":{"body":"Every transaction has the execution context. The context is a set of pre-defined variables that are available to the program during execution. For example, every transaction has a sender address, and the transaction context contains a variable that holds the sender address. The transaction context is available to the program through the TxContext struct. The struct is defined in the sui::tx_context module and contains the following fields: File: sui-framework/tx_context.move /// Information about the transaction currently being executed.\n/// This cannot be constructed by a transaction--it is a privileged object created by\n/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`.\nstruct TxContext has drop { /// The address of the user that signed the current transaction sender: address, /// Hash of the current transaction tx_hash: vector, /// The current epoch number epoch: u64, /// Timestamp that the epoch started at epoch_timestamp_ms: u64, /// Counter recording the number of fresh id's created while executing /// this transaction. Always 0 at the start of a transaction ids_created: u64\n} Transaction context cannot be constructed manually or directly modified. It is created by the system and passed to the function as a reference in a transaction. Any function called in a Transaction Block has access to the context and can pass it into the nested calls. TxContext has to be the last argument in the function signature.","breadcrumbs":"Advanced Programmability » Transaction Context » Transaction Context","id":"182","title":"Transaction Context"},"183":{"body":"With only exception of the ids_created, all of the fields in the TxContext have getters. The getters are defined in the sui::tx_context module and are available to the program. The getters don't require &mut because they don't modify the context. public fun some_action(ctx: &TxContext) { let _me = ctx.sender() let _epoch = ctx.epoch(); let _digest = ctx.digest(); // ...\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Reading the Transaction Context","id":"183","title":"Reading the Transaction Context"},"184":{"body":"The TxContext is required to create new objects (or just UIDs) in the system. New UIDs are derived from the transaction digest, and for the digest to be unique, there needs to be a changing parameter. Sui uses the ids_created field for that. Every time a new UID is created, the ids_created field is incremented by one. This way, the digest is always unique. Internally, it is represented as the derive_id function: File: sui-framework/tx_context.move native fun derive_id(tx_hash: vector, ids_created: u64): address;","breadcrumbs":"Advanced Programmability » Transaction Context » Mutability","id":"184","title":"Mutability"},"185":{"body":"The underlying derive_id function can also be utilized in your program to generate unique addresses. The function itself is not exposed, but a wrapper function fresh_object_address is available in the sui::tx_context module. It may be useful if you need to generate a unique identifier in your program. File: sui-framework/tx_context.move /// Create an `address` that has not been used. As it is an object address, it will never\n/// occur as the address for a user.\n/// In other words, the generated address is a globally unique object ID.\npublic fun fresh_object_address(ctx: &mut TxContext): address { let ids_created = ctx.ids_created; let id = derive_id(*&ctx.tx_hash, ids_created); ctx.ids_created = ids_created + 1; id\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Generating unique addresses","id":"185","title":"Generating unique addresses"},"186":{"body":"Collection types are a fundamental part of any programming language. They are used to store a collection of data, such as a list of items. The vector type has already been covered in the vector section , and in this chapter we will cover the collection types offered by the Sui Framework. VecSet VecMap","breadcrumbs":"Advanced Programmability » Collections » Collections","id":"186","title":"Collections"},"187":{"body":"VecSet is a collection type that stores a set of unique items. It is similar to a vector, but it does not allow duplicate items. This makes it useful for storing a collection of unique items, such as a list of unique IDs or addresses. module book::collections { use sui::vec_set::{Self, VecSet}; struct App has drop { /// `VecSet` used in the struct definition subscribers: VecSet
} #[test] fun vec_set_playground() { let set = vec_set::empty(); // create an empty set let set = vec_set::sigleton(1); // create a set with a single item set.insert(2); // add an item to the set set.insert(3); assert!(set.contains(1), 0); // check if an item is in the set assert!(set.size() == 3, 1); // get the number of items in the set assert!(!set.is_empty(), 2); // check if the set is empty set.remove(2); // remove an item from the set }\n}","breadcrumbs":"Advanced Programmability » Collections » VecSet","id":"187","title":"VecSet"},"188":{"body":"VecMap is a collection type that stores a map of key-value pairs. It is similar to a VecSet, but it allows you to associate a value with each item in the set. This makes it useful for storing a collection of key-value pairs, such as a list of addresses and their balances, or a list of user IDs and their associated data. Keys in a VecMap are unique, and each key can only be associated with a single value. If you try to insert a key-value pair with a key that already exists in the map, the old value will be replaced with the new value. module book::collections { use std::string::String; use sui::vec_map::{Self, VecMap}; struct Metadata has drop { name: String /// `VecMap` used in the struct definition attributes: VecMap } #[test] fun vec_map_playground() { let mut map = vec_map::empty(); // create an empty map map.insert(2, b\"two\".to_string()); // add a key-value pair to the map map.insert(3, b\"three\".to_string()); assert!(map.contains(1), 0); // check if a key is in the map map.remove(&2); // remove a key-value pair from the map }\n}","breadcrumbs":"Advanced Programmability » Collections » VecMap","id":"188","title":"VecMap"},"189":{"body":"Sui Object model allows objects to be attached to other objects as dynamic fields . The behavior is similar to how a Map works in other programming languages, however, the types of attached objects can be any. This allows for a wide range of use cases, such as attaching an accessory to a character, or storing large, non-heterogeneous collections in a single object.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields","id":"189","title":"Dynamic Fields"},"19":{"body":"Let's take a closer look at the code we just wrote: module book::hello_world {\n} The first line of code declares a module called hello_world stored at the address book. The contents of the module go inside the curly braces {}. The last line closes the module declaration with a closing curly brace }. We will go through the module declaration in more detail in the Modules section. Then we import two members of the std::string module (which is part of the std package). The string module contains the String type, and the Self keyword imports the module itself, so we can use its functions. use std::string::{Self, String}; Then we define a hello_world function using the keyword fun which takes no arguments and returns a String type. The public keyword marks the visibility of the function - \"public\" functions can be accessed by other modules. The function body is inside the curly braces {}. In the Function section we will learn more about functions. public fun hello_world(): String { string::utf8(b\"Hello, World!\") } The function body consists of a single function call to the string::utf8 function and returns a String type. The expression is a bytestring literal b\"Hello World!\".","breadcrumbs":"Your First Move » Hello World! » Dive into the code","id":"19","title":"Dive into the code"},"190":{"body":"Dynamic fields are attached to an object via a key , which can be any type with the store , copy and drop abilities. The key is used to access the attached object, and can be used to update or remove it. The attached object can be any type, if it has the store ability.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Structure","id":"190","title":"Structure"},"191":{"body":"Dynamic fields are defined in the sui::dynamic_field module. module book::accessories { struct Character has key { id: UID, name: String } /// An accessory that can be attached to a character. struct Accessory has store { type: String, name: String, }\n}","breadcrumbs":"Advanced Programmability » Dynamic Fields » Usage","id":"191","title":"Usage"},"192":{"body":"TODO: dynamic object fields discoverability benefits of DOFs","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Object Fields","id":"192","title":"Dynamic Object Fields"},"193":{"body":"TODO: explain how custom fields ca","breadcrumbs":"Advanced Programmability » Dynamic Fields » Custom Fields for Keys","id":"193","title":"Custom Fields for Keys"},"194":{"body":"Dynamic fields are used for: Heterogeneous collections Storing large data that does not fit into the object limit size Attaching objects to other objects as a part of application logic Extending existing types with additional data Storing data that is not always present","breadcrumbs":"Advanced Programmability » Dynamic Fields » Applications","id":"194","title":"Applications"},"195":{"body":"","breadcrumbs":"Advanced Programmability » Testing » Testing","id":"195","title":"Testing"},"196":{"body":"","breadcrumbs":"Advanced Programmability » Testing » #[test] and #[test_only]","id":"196","title":"#[test] and #[test_only]"},"197":{"body":"","breadcrumbs":"Advanced Programmability » Testing » Unit Testing with Dummy Context","id":"197","title":"Unit Testing with Dummy Context"},"198":{"body":"","breadcrumbs":"Advanced Programmability » Testing » Utilizing the Test Scenario","id":"198","title":"Utilizing the Test Scenario"},"199":{"body":"When publishing a package that is intented to be used (an NFT protocol or a library), it is important to showcase how this package can be used. This is where examples come in handy. There's no special functionality for examples in Move, however, there are some conventions that are used to mark examples. First of all, only sources are included into the package bytecode, so any code placed in a different directory will not be included, but will be tested! This is why placing examples into a separate examples/ directory is a good idea. sources/ protocol.move library.move\ntests/ protocol_test.move\nexamples/ my_example.move\nMove.toml","breadcrumbs":"Advanced Programmability » Testing » Adding Examples","id":"199","title":"Adding Examples"},"2":{"body":"2019 - Libra is announced 2019 - Move a Language with Programmable Resources 2022 - The Diem Association is closed, Move is open sourced 2023 - ... 2024 - Move 2024 is released","breadcrumbs":"History » History","id":"2","title":"History"},"20":{"body":"To compile the package, run the following command: $ sui move build If you see this (or - for other binaries - similar) output, then everything is fine, and the code compiled successfully: > UPDATING GIT DEPENDENCY https://github.com/move-language/move.git\n> INCLUDING DEPENDENCY MoveStdlib\n> BUILDING Book Congratulations! You've just compiled your first Move program. Now, let's add a test and some logging so we see that it works.","breadcrumbs":"Your First Move » Hello World! » Compile the package","id":"20","title":"Compile the package"},"200":{"body":"Sui has two ways of accessing the current time: Epoch and Time. The former represents operational periods in the system and changed roughly every 24 hours. The latter represents the current time in milliseconds since the Unix Epoch. Both can be accessed freely in the program.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch and Time","id":"200","title":"Epoch and Time"},"201":{"body":"Epochs are used to separate the system into operational periods. During an epoch the validator set is fixed, however, at the epoch boundary, the validator set can be changed. Epochs play a crucial role in the consensus algorithm and are used to determine the current validator set. They are also used as measurement in the staking mechanism. Epoch can be read from the transaction context : public fun current_epoch(ctx: &TxContext) { let epoch = ctx.epoch(); // ...\n} It is also possible to get the unix timestamp of the epoch start: public fun current_epoch_start(ctx: &TxContext) { let epoch_start = ctx.epoch_timestamp_ms(); // ...\n} Normally, epochs are used in staking and system operations, however, in custom scenarios they can be used to emulate 24h periods. They are cricital if an application relies on the staking logic or needs to know the current validator set.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch","id":"201","title":"Epoch"},"202":{"body":"For a more precise time measurement, Sui provides the Clock object. It is a system object that is updated during checkpoints by the system, which stores the current time in milliseconds since the Unix Epoch. The Clock object is defined in the sui::clock module and has a reserved address 0x6. Clock is a shared object and normally would require consensus to access. However, Clock is special, and the system won't allow accessing it mutably, so that the only way to access it is immutably. This limitation allows parallel access to the Clock object and makes it a fast path operation . File: sui-framework/clock.move /// Singleton shared object that exposes time to Move calls. This\n/// object is found at address 0x6, and can only be read (accessed\n/// via an immutable reference) by entry functions.\n///\n/// Entry Functions that attempt to accept `Clock` by mutable\n/// reference or value will fail to verify, and honest validators\n/// will not sign or execute transactions that use `Clock` as an\n/// input parameter, unless it is passed by immutable reference.\nstruct Clock has key { id: UID, /// The clock's timestamp, which is set automatically by a /// system transaction every time consensus commits a /// schedule, or by `sui::clock::increment_for_testing` during /// testing. timestamp_ms: u64,\n} There is only one public function available in the Clock module - timestamp_ms. It returns the current time in milliseconds since the Unix Epoch. /// Clock needs to be passed as an immutable reference.\npublic fun current_time(clock: &Clock) { let _time = clock.timestamp_ms(); // ...\n}","breadcrumbs":"Advanced Programmability » Epoch and Time » Time","id":"202","title":"Time"},"203":{"body":"TODO: how to use Clock in tests.","breadcrumbs":"Advanced Programmability » Epoch and Time » Testing","id":"203","title":"Testing"},"204":{"body":"Some of the language features combined together can create patterns that are similar to other programming languages. The simplest example would be \"getters and setters\" - functions that get and set the value of a field. This pattern is possible, because struct fields are private by default, and can only be accessed through functions. However, there are more advanced patterns, such as the abstract class. An abstract class is a class that cannot be instantiated, but can be inherited from. While Move does not have inheritance, it has generic structs, which can be instantiated with different types. This allows us to create a generic struct that can be used as an abstract class. Combined with a set of Witness-gated functions, this allows us to create a generic struct with a generic implementation. Some of the methods in this approach will be shared and available to all implementations, while others will be abstract and will need to be implemented by the concrete implementations.","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Abstract Class","id":"204","title":"Abstract Class"},"205":{"body":"","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Generic Struct","id":"205","title":"Generic Struct"},"206":{"body":"","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Common methods","id":"206","title":"Common methods"},"207":{"body":"","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Witness-gated Functions","id":"207","title":"Witness-gated Functions"},"208":{"body":"While this approach imitates the abstract class pattern well, it is not the same as the abstract class in OOP. The main difference is that the abstract class in OOP and its implementors have different type. In Move, the base type stays the same, and the implementors set a generic type parameter. Another notable difference is that due to lack of dynamic dispatch and interfaces, the implemented methods are not available through the base type and can even be missing.","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Differences from OOP","id":"208","title":"Differences from OOP"},"209":{"body":"The Sui Framework uses this pattern to implement the Coin type and the underlying Balance. Its variation is also used in the Closed Loop Token implementation, however, the latter is a bit more complex, because it uses the Request pattern to dynamically implement the interface.","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Usage in Sui Framework","id":"209","title":"Usage in Sui Framework"},"21":{"body":"To run a Move program there needs to be an environment which stores packages and executes transactions. The best way to test a Move program is to write some tests and run them locally. Move has built-in testing functionality, and the tests are written in Move as well. In this section, we will learn how to write tests for our hello_world module. First, let's try to run tests. All of the Move binaries support the test command, and this is the command we will use to run tests: $ sui move test If you see similar output, then everything is fine, and the test command has run successfully: INCLUDING DEPENDENCY MoveStdlib\nBUILDING Book Samples\nRunning Move unit tests\nTest result: OK. Total tests: 0; passed: 0; failed: 0 As you can see, the test command has run successfully, but it didn't find any tests. Let's add some tests to our module.","breadcrumbs":"Your First Move » Adding Tests » Adding Tests","id":"21","title":"Adding Tests"},"210":{"body":"This section contains a collection of guides that cover various aspects of programming on Sui. They are intended to provide a deeper understanding of Sui blockchain and Move language, while also aiming at practical challenges and solutions.","breadcrumbs":"Guides » Guides","id":"210","title":"Guides"},"211":{"body":"Move 2024 is the new edition of the Move language that is maintained by Mysten Labs. This guide is intended to help you understand the differences between the 2024 edition and the previous version of the Move language.","breadcrumbs":"Guides » 2024 Migration Guide » Move 2024 Migration Guide","id":"211","title":"Move 2024 Migration Guide"},"212":{"body":"To use the new edition, you need to specify the edition in the move file. The edition is specified in the move file using the edition keyword. Currently, the only available edition is 2024.alpha. edition = \"2024.alpha\";","breadcrumbs":"Guides » 2024 Migration Guide » Using the New Edition","id":"212","title":"Using the New Edition"},"213":{"body":"In Move 2024, structs get a visibility modifier. Just like functions, structs can be public, friend, or private. // Move 2020\nstruct Book {} // Move 2024\npublic struct Book {}","breadcrumbs":"Guides » 2024 Migration Guide » Struct Visibility","id":"213","title":"Struct Visibility"},"214":{"body":"In the new edition, functions which have a struct as the first argument are associated with the struct. This means that the function can be called using the dot notation. Methods defined in the same module with the type are automatically exported. public fun count(c: &Counter): u64 { /* ... */ } fun use_counter() { // move 2020 let count = counter::count(&c); // move 2024 let count = c.count();\n}","breadcrumbs":"Guides » 2024 Migration Guide » Struct Methods","id":"214","title":"Struct Methods"},"215":{"body":"The borrow and borrow_mut functions (when defined) can be accessed using the square brackets. Just like the method syntax, the borrowing functions are associated with the type. fun play_vec() { let v = vector[1,2,3,4]; let first = v[0]; // calls vector::borrow(v, 0) v[0] = 5; // calls vector::borrow_mut(v, 0)\n}","breadcrumbs":"Guides » 2024 Migration Guide » Borrowing Operator","id":"215","title":"Borrowing Operator"},"216":{"body":"In Move 2024, generic methods can be associated with types. The alias can be defined for any type privately to the module, or publicly, if the type is defined in the same module. use fun my_custom_function as vector.do_magic;","breadcrumbs":"Guides » 2024 Migration Guide » Method Aliases","id":"216","title":"Method Aliases"},"217":{"body":"Macros are introduced in Move 2024. And assert! is no longer a built-in function - Instead, it's a macro. // can be called as for!(0, 10, |i| call(i));\nmacro fun for($start: u64, $stop: u64, $body: |u64|) { let mut i = $start; let stop = $stop; while (i < stop) { $body(i); i = i + 1 }\n}","breadcrumbs":"Guides » 2024 Migration Guide » Macros","id":"217","title":"Macros"},"218":{"body":"To talk about best practices for upgradability, we need to first understand what can be upgraded in a package. The base premise of upgradability is that an upgrade should not break public compatibility with the previous version. The parts of the module which can be used in dependent packages should not change their static signature. This applies to modules - a module can not be removed from a package, public structs - they can be used in function signatures and public functions - they can be called from other packages. // module can not be removed from the package\nmodule book::upgradable { // dependencies can be changed use sui::tx_context::TxContext; use sui::object::UID; // public structs can not be removed and can't be changed public struct Book has key { id: UID } // public functions can not be removed and their signature can never change public fun create_book(ctx: &mut TxContext): Book { create_book_internal(ctx) } // friend-only functions can be removed and changed public(friend) fun create_book_friend(ctx: &mut TxContext): Book { create_book_internal(ctx) } // entry functions can be removed and changed as long they're not public entry fun create_book_entry(ctx: &mut TxContext): Book { create_book_internal(ctx) } // private functions can be removed and changed fun create_book_internal(ctx: &mut TxContext): Book { abort 0 }\n}","breadcrumbs":"Guides » Upgradability Practices » Upgradability Practices","id":"218","title":"Upgradability Practices"},"219":{"body":"TODO: Add a section about entry and friend functions","breadcrumbs":"Guides » Upgradability Practices » Using entry and friend functions","id":"219","title":"Using entry and friend functions"},"22":{"body":"When the test command runs, it looks for all tests in all files in the directory. Tests can be either placed separate modules or in the same module as the code they test. First, let's add a test function to the hello_world module: module book::hello_world { use std::string::{Self, String}; public fun hello_world(): String { string::utf8(b\"Hello, World!\") } #[test] fun test_is_hello_world() { let expected = string::utf8(b\"Hello, World!\"); assert!(hello_world() == expected, 0) }\n} The test function is a function with a #[test] attribute. Normally it takes no arguments (but it can take arguments in some cases - you'll learn more about it closer to the end of this book) and returns nothing. Tests placed in the same module as the code they test are called \"unit tests\". They can access all functions and types in the module. We'll go through them in more detail in the Test section. #[test] fun test_is_hello_world() { let expected = string::utf8(b\"Hello, World!\"); assert!(hello_world() == expected, 0) } Inside the test function, we define the expected outcome by creating a String with the expected value and assign it to the expected variable. Then we use the special built-in assert!() which takes two arguments: a conditional expression and an error code. If the expression evaluates to false, then the test fails with the given error code. The equality operator == compares the actual and expected values and returns true if they are equal. We'll learn more about expressions in the Expression and Scope section. Now let's run the test command again: $ sui move test You should see this output, which means that the test has run successfully: ...\nTest result: OK. Total tests: 1; passed: 1; failed: 0","breadcrumbs":"Your First Move » Adding Tests » Your first test","id":"22","title":"Your first test"},"220":{"body":"To discard previous versions of the package, the objects can be versioned. As long as the object contains a version field, and the code which uses the object expects and asserts a specific version, the code can be force-migrated to the new version. Normally, after an upgrade, admin functions can be used to update the version of the shared state, so that the new version of code can be used, and the old version aborts with a version mismatch. module book::versioned_state { const EVersionMismatch: u64 = 0; const VERSION: u8 = 1; /// The shared state (can be owned too) struct SharedState has key { id: UID, version: u8, /* ... */ } public fun mutate(state: &mut SharedState) { assert!(state.version == VERSION, EVersionMismatch); // ... }\n}","breadcrumbs":"Guides » Upgradability Practices » Versioning objects","id":"220","title":"Versioning objects"},"221":{"body":"There's a common pattern in Sui which allows changing the stored configuration of an object while retaining the same object signature. This is done by keeping the base object simple and versioned and adding an actual configuration object as a dynamic field. Using this anchor pattern, the configuration can be changed with package upgrades while keeping the same base object signature. module book::versioned_config { /// The base object struct Config has key { id: UID, version: u16 } /// The actual configuration struct ConfigV1 has store { data: Bag, metadata: VecMap } // ...\n}","breadcrumbs":"Guides » Upgradability Practices » Versioning configuration with dynamic fields","id":"221","title":"Versioning configuration with dynamic fields"},"222":{"body":"TODO: add two patterns for modular architecture: object capability (SuiFrens) and witness registry (SuiNS)","breadcrumbs":"Guides » Upgradability Practices » Modular architecture","id":"222","title":"Modular architecture"},"223":{"body":"To guarantee the safety and security of the network, Sui has certain limits and restrictions. These limits are in place to prevent abuse and to ensure that the network remains stable and efficient. This guide provides an overview of these limits and restrictions, and how to build your application to work within them. The limits are defined in the protocol configuration and are enforced by the network. If any of the limits are exceeded, the transaction will either be rejected or aborted. The limits, being a part of the protocol, can only be changed through a network upgrade.","breadcrumbs":"Guides » Building against Limits » Building against Limits","id":"223","title":"Building against Limits"},"224":{"body":"The size of a transaction is limited to 128KB. This includes the size of the transaction payload, the size of the transaction signature, and the size of the transaction metadata. If a transaction exceeds this limit, it will be rejected by the network.","breadcrumbs":"Guides » Building against Limits » Transaction Size","id":"224","title":"Transaction Size"},"225":{"body":"The size of an object is limited to 256KB. This includes the size of the object data. If an object exceeds this limit, it will be rejected by the network. While a single object cannot bypass this limit, for more extensive storage options, one could use a combination of a base object with other attached to it using dynamic fields (eg Bag).","breadcrumbs":"Guides » Building against Limits » Object Size","id":"225","title":"Object Size"},"226":{"body":"The size of a single pure argument is limited to 16KB. A transaction argument bigger than this limit will result in execution failure. So in order to create a vector of more than ~500 addresses (given that a single address is 32 bytes), it needs to be joined dynamically either in Transaction Block or in a Move function. Standard functions like vector::append() can join two vectors of ~16KB resulting in a ~32KB of data as a single value.","breadcrumbs":"Guides » Building against Limits » Single Pure Argument Size","id":"226","title":"Single Pure Argument Size"},"227":{"body":"The maximum number of objects that can be created in a single transaction is 2048. If a transaction attempts to create more than 2048 objects, it will be rejected by the network. This also affects dynamic fields , as both the key and the value are objects. So the maximum number of dynamic fields that can be created in a single transaction is 1024.","breadcrumbs":"Guides » Building against Limits » Maximum Number of Objects created","id":"227","title":"Maximum Number of Objects created"},"228":{"body":"The maximum number of events that can be emitted in a single transaction is 1024. If a transaction attempts to emit more than 1024 events, it will be aborted.","breadcrumbs":"Guides » Building against Limits » Maximum Number of Events","id":"228","title":"Maximum Number of Events"},"229":{"body":"Whenever execution encounters an abort, transaction fails and abort code is returned to the caller. Move VM returns the module name that aborted the transaction and the abort code. This behavior is not fully transparent to the caller of the transaction, especially when a single function contains multiple calls to the same function which may abort. In this case, the caller will not know which call aborted the transaction, and it will be hard to debug the issue or provide meaningful error message to the user. module book::module_a { use book::module_b; public fun do_something() { let field_1 = module_b::get_field(1); // may abort with 0 /* ... a lot of logic ... */ let field_2 = module_b::get_field(2); // may abort with 0 /* ... some more logic ... */ let field_3 = module_b::get_field(3); // may abort with 0 }\n} The example above illustrates the case when a single function contains multiple calls which may abort. If the caller of the do_something function receives an abort code 0, it will be hard to understand which call to module_b::get_field aborted the transaction. To address this problem, there are common patterns that can be used to improve error handling.","breadcrumbs":"Guides » Better error handling » Better error handling","id":"229","title":"Better error handling"},"23":{"body":"Try replacing the equality operator == inside the assert! with the inequality operator != and run the test command again. assert!(hello_world() != expected, 0) You should see this output, which means that the test has failed: Running Move unit tests\n[ FAIL ] 0x0::hello_world::test_is_hello_world Test failures: Failures in 0x0::hello_world: ┌── test_is_hello_world ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/your-first-move/hello_world.move:14:9\n│ │\n│ 12 │ fun test_is_hello_world() {\n│ │ ------------------- In this function in 0x0::hello_world\n│ 13 │ let expected = string::utf8(b\"Hello, World!\");\n│ 14 │ assert!(hello_world() != expected, 0)\n│ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Test was not expected to error, but it aborted with code 0 originating in the module 00000000000000000000000000000000::hello_world rooted here\n│\n│\n└────────────────── Test result: FAILED. Total tests: 1; passed: 0; failed: 1 Tests are used to verify the execution of the code. If the code is correct, the test should pass, otherwise it should fail. In this case, the test failed because we intentionally made a mistake in the test code. However, normally you should write tests that check the correctness of the code, not the other way around! In the next section, we will learn how to debug Move programs and print intermediate values to the console.","breadcrumbs":"Your First Move » Adding Tests » Failed experiment","id":"23","title":"Failed experiment"},"230":{"body":"It is considered a good practice to provide a safe \"check\" function that returns a boolean value indicating whether an operation can be performed safely. If the module_b provides a function has_field that returns a boolean value indicating whether a field exists, the do_something function can be rewritten as follows: module book::module_a { use book::module_b; const ENoField: u64 = 0; public fun do_something() { assert!(module_b::has_field(1), ENoField); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(1), ENoField); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(1), ENoField); let field_3 = module_b::get_field(3); }\n} By adding custom checks before each call to module_b::get_field, the developer of the module_a takes control over the error handling. And it allows implementing the second rule.","breadcrumbs":"Guides » Better error handling » Rule 1: Handle all possible scenarios","id":"230","title":"Rule 1: Handle all possible scenarios"},"231":{"body":"The second trick, once the abort codes are handled by the caller module, is to use different abort codes for different scenarios. This way, the caller module can provide a meaningful error message to the user. The module_a can be rewritten as follows: module book::module_a { use book::module_b; const ENoFieldA: u64 = 0; const ENoFieldB: u64 = 1; const ENoFieldC: u64 = 2; public fun do_something() { assert!(module_b::has_field(1), ENoFieldA); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(1), ENoFieldB); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(1), ENoFieldC); let field_3 = module_b::get_field(3); }\n} Now, the caller module can provide a meaningful error message to the user. If the caller receives an abort code 0, it can be translated to \"Field 1 does not exist\". If the caller receives an abort code 1, it can be translated to \"Field 2 does not exist\". And so on.","breadcrumbs":"Guides » Better error handling » Rule 2: Abort with different codes","id":"231","title":"Rule 2: Abort with different codes"},"232":{"body":"A developer is often tempted to add a public function that would assert all the conditions and abort the execution. However, it is a better practice to create a function that returns a boolean value instead. This way, the caller module can handle the error and provide a meaningful error message to the user. module book::some_app_assert { const ENotAuthorized: u64 = 0; public fun do_a() { assert_is_authorized(); // ... } public fun do_b() { assert_is_authorized(); // ... } /// Don't do this public fun assert_is_authorized() { assert!(/* some condition */ true, ENotAuthorized); }\n} This module can be rewritten as follows: module book::some_app { const ENotAuthorized: u64 = 0; public fun do_a() { assert!(is_authorized(), ENotAuthorized); // ... } public fun do_b() { assert!(is_authorized(), ENotAuthorized); // ... } public fun is_authorized(): bool { /* some condition */ true } // a private function can still be used to avoid code duplication for a case // when the same condition with the same abort code is used in multiple places fun assert_is_authorized() { assert!(is_authorized(), ENotAuthorized); }\n} Utilizing these three rules will make the error handling more transparent to the caller of the transaction, and it will allow other developers to use custom abort codes in their modules.","breadcrumbs":"Guides » Better error handling » Rule 3: Return bool instead of assert","id":"232","title":"Rule 3: Return bool instead of assert"},"233":{"body":"Fast Path - term used to describe a transaction that does not involve shared objects, and can be executed without the need for consensus. Internal Type - type that is defined within the module. Fields of this type can not be accessed from outside the module, and, in case of \"key\"-only abilities, can not be used in public_* transfer functions.","breadcrumbs":"Appendix » Glossary » Glossary","id":"233","title":"Glossary"},"234":{"body":"key - ability that allows the struct to be used as a key in the storage. On Sui, the key ability marks an object and requires the first field to be a id: UID. store - ability that allows the struct to be stored inside other objects. This ability relaxes restrictions applied to internal structs, allowing public_* transfer functions to accept them as arguments. It also enables the object to be stored as a dynamic field. copy - ability that allows the struct to be copied. On Sui, the copy ability conflicts with the key ability, and can not be used together with it. drop - ability that allows the struct to be ignored or discarded. On Sui, the drop ability cannot be used together with the key ability, as objects are not allowed to be ignored.","breadcrumbs":"Appendix » Glossary » Abilities","id":"234","title":"Abilities"},"24":{"body":"Now that we have a package with a module and a test, let's take a slight detour and learn how to debug Move programs. Move Compiler has a built-in debugging tool that allows you to print intermediate values to the console. This is especially useful when you are writing tests and want to see what's going on inside the program.","breadcrumbs":"Your First Move » Debugging » Debugging","id":"24","title":"Debugging"},"25":{"body":"To use the debug module, we need to import it in our module. Imports are usually grouped together for readability and they are placed at the top of the module. Let's add the import statement to the hello_world module: module book::hello_world { use std::string::{Self, String}; use std::debug; // the added import! Having imported the std::debug module, we can now use its functions. Let's add a debug::print function call to the hello_world function. To achieve that we need to change the function body. Instead of returning the value right away we will assign it to a variable, print it to the console and then return it: public fun hello_world(): String { let result = string::utf8(b\"Hello, World!\"); debug::print(&result); result } First, run the build command: $ sui move build The output does not contain anything unusual, because our code was never executed. But running build is an important part of the routine - this way we make sure that the changes we added can compile. Let's run the test command now: $ sui move test The output of the test command now contains the \"Hello, World!\" string: INCLUDING DEPENDENCY MoveNursery\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING Book Samples\nRunning Move unit tests\n[debug] \"Hello, World!\"\n[ PASS ] 0x0::hello_world::test_is_hello_world\nTest result: OK. Total tests: 1; passed: 1; failed: 0 Now every time the hello_world function is run in tests, you'll see the \"Hello, World!\" string in the output.","breadcrumbs":"Your First Move » Debugging » New import","id":"25","title":"New import"},"26":{"body":"Debug should only be used in local environment and never published on-chain. Usually, during the publish, the debug module is either removed from the package or the publishing fails with an error. There's no way to use this functionality on-chain.","breadcrumbs":"Your First Move » Debugging » Correct usage","id":"26","title":"Correct usage"},"27":{"body":"There's one trick that allows you to save some time while debugging. Instead of adding a module-level import, use a fully qualified function name. This way you don't need to add an import statement to the module, but you can still use the debug::print function: std::debug::print(&my_variable); Be mindful that the value passed into debug should be a reference (the & symbol in front of the variable name). If you pass a value, the compiler will emit an error.","breadcrumbs":"Your First Move » Debugging » Hint","id":"27","title":"Hint"},"28":{"body":"Move CLI has a built-in tool for generating documentation for Move modules. The tool is included into the binary and available out of the box. In this section we will learn how to generate documentation for our hello_world module.","breadcrumbs":"Your First Move » Generating Docs » Generating Documentation","id":"28","title":"Generating Documentation"},"29":{"body":"To generate documentation for a module, we need to add documentation comments to the module and its functions. Documentation comments are written in Markdown and start with /// (three slashes). For example, let's add a documentation comment to the hello_world module: /// This module contains a function that returns a string \"Hello, World!\".\nmodule book::hello_world { Doc comments placed above the module are linked to the module itself, while doc comments placed above the function are linked to the function. /// As the name says: returns a string \"Hello, World!\". public fun hello_world(): String { string::utf8(b\"Hello, World!\") } If a documented member has an attribute, such as #[test] in the example below, the doc comment must be placed after the attribute: While it is possible to document #[test] functions, doc comments for tests will not be included in the generated documentation. #[test] /// This is a test for the `hello_world` function. fun test_is_hello_world() { let expected = string::utf8(b\"Hello, World!\"); let actual = hello_world(); assert!(actual == expected, 0) }","breadcrumbs":"Your First Move » Generating Docs » Adding documentation comments","id":"29","title":"Adding documentation comments"},"3":{"body":"This chapter covers the prerequisites for the Move language: how to set up your IDE, how to install the compiler and what is Move 2024. If you are already familiar with these topics or have a CLI installed, you can skip this chapter and proceed to the next one .","breadcrumbs":"Before we begin » Before we begin","id":"3","title":"Before we begin"},"30":{"body":"To generate documentation for a module, we need to run the sui move build command with a --doc flag. Let's run the command: $ sui move build --doc\n...\n...\nBUILDING Book Samples Alternatively, you can use move test --doc - this can be useful if you want to test and generate documentation at the same time. For example, as a part of your CI/CD pipeline. Once the build is complete, the documentation will be available in the build/docs directory. Each modile will have its own .md file. The documentation for the hello_world module will be available in the build/docs/hello_world.md file. Click to see an example of the `hello_world.md` contents # Module `0x0::hello_world`\nThis module contains a function that returns a string \"Hello, World!\".\n- [Function `hello_world`](#0x0_hello_world_hello_world)\n
use 0x1::debug;\nuse 0x1::string;\n
\n ## Function `hello_world`\nAs the name says: returns a string \"Hello, World!\".\n
fun hello_world(): string::String\n
\n
\nImplementation\n
fun hello_world(): String { let result = string::utf8(b\"Hello, World!\"); debug::print(&result); result\n}\n
\n
","breadcrumbs":"Your First Move » Generating Docs » Generating documentation","id":"30","title":"Generating documentation"},"31":{"body":"In this chapter you will learn about the basic concepts of Sui and Move. You will learn what is a package, how to interact with it, what is an account and a transaction, and how data is stored on Sui. While this chapter is not a complete reference, and you should refer to the Sui Documentation for that, it will give you a good understanding of the basic concepts required to write Move programs on Sui.","breadcrumbs":"Concepts » Concepts","id":"31","title":"Concepts"},"32":{"body":"Move is a language for writing smart contracts - programs that stored and run on the blockchain. A single program is organized into a package. A package is published on the blockchain and is identified by an address . A published package can be interacted with by sending transactions calling its functions. It can also act as a dependency for other packages. To create a new package, use the sui move new command. To learn more about the command, run sui move new --help. Package consists of modules - separate scopes that contain functions, types, and other items. package 0x... module a struct A1 fun hello_world() module b struct B1 fun hello_package()","breadcrumbs":"Concepts » What is a Package » Packages","id":"32","title":"Packages"},"33":{"body":"Locally, a package is a directory with a Move.toml file and a sources directory. The Move.toml file - called the \"package manifest\" - contains metadata about the package, and the sources directory contains the source code for the modules. Packages usually looks like this: sources/ my_module.move another_module.move ...\ntests/ ...\nexamples/ using_my_module.move\nMove.toml The tests directory is optional and contains tests for the package. Code placed into the tests directory is not published on-chain and is only availably in tests. The examples directory can be used for code examples, and is also not published on-chain.","breadcrumbs":"Concepts » What is a Package » Package Structure","id":"33","title":"Package Structure"},"34":{"body":"During development, package doesn't have an address and it needs to be set to 0x0. Once a package is published, it gets a single unique address on the blockchain containing its modules' bytecode. A published package becomes immutable and can be interacted with by sending transactions. 0x... my_module: another_module: ","breadcrumbs":"Concepts » What is a Package » Published Package","id":"34","title":"Published Package"},"35":{"body":"Package Manifest Address Publishing a Package","breadcrumbs":"Concepts » What is a Package » Links","id":"35","title":"Links"},"36":{"body":"The Move.toml is a manifest file that describes the package and its dependencies. It is written in TOML format and contains multiple sections, the most important of which are [package], [dependencies] and [addresses]. [package]\nname = \"my_project\"\nversion = \"0.0.0\"\nedition = \"2024\" [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } [addresses]\nstd = \"0x1\"\nalice = \"0xA11CE\" [dev-addresses]\nalice = \"0xB0B\"","breadcrumbs":"Concepts » Manifest » Package Manifest","id":"36","title":"Package Manifest"},"37":{"body":"","breadcrumbs":"Concepts » Manifest » Sections","id":"37","title":"Sections"},"38":{"body":"The [package] section is used to describe the package. None of the fields in this section are published on chain, but they are used in tooling and release management; they also specify the Move edition for the compiler. name - the name of the package when it is imported; version - the version of the package, can be used in release management; edition - the edition of the Move language; currently, the only valid value is 2024.","breadcrumbs":"Concepts » Manifest » Package","id":"38","title":"Package"},"39":{"body":"The [dependencies] section is used to specify the dependencies of the project. Each dependency is specified as a key-value pair, where the key is the name of the dependency, and the value is the dependency specification. The dependency specification can be a git repository URL or a path to the local directory. # git repository\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } # local directory\nMyPackage = { local = \"../my-package\" } Packages also import addresses from other packages. For example, the Sui dependency adds the std and sui addresses to the project. These addresses can be used in the code as aliases for the addresses.","breadcrumbs":"Concepts » Manifest » Dependencies","id":"39","title":"Dependencies"},"4":{"body":"Move is a compiled language, so you need to install a compiler to be able to write and run Move programs. The compiler is included into the Sui binary, which can be installed or downloaded using one of the methods below.","breadcrumbs":"Before we begin » Install Sui » Install Sui","id":"4","title":"Install Sui"},"40":{"body":"Sometimes dependencies have conflicting versions of the same package. For example, if you have two dependencies that use different versions of the Sui package, you can override the dependency in the [dependencies] section. To do so, add the override field to the dependency. The version of the dependency specified in the [dependencies] section will be used instead of the one specified in the dependency itself. [dependencies]\nSui = { override = true, git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }","breadcrumbs":"Concepts » Manifest » Resolving version conflicts with override","id":"40","title":"Resolving version conflicts with override"},"41":{"body":"It is possible to add [dev-dependencies] section to the manifest. It is used to override dependencies in the dev and test modes. For example, if you want to use a different version of the Sui package in the dev mode, you can add a custom dependency specification to the [dev-dependencies] section.","breadcrumbs":"Concepts » Manifest » Dev-dependencies","id":"41","title":"Dev-dependencies"},"42":{"body":"The [addresses] section is used to add aliases for the addresses. Any address can be specified in this section, and then used in the code as an alias. For example, if you add alice = \"0xA11CE\" to this section, you can use alice as 0xA11CE in the code.","breadcrumbs":"Concepts » Manifest » Addresses","id":"42","title":"Addresses"},"43":{"body":"The [dev-addresses] section is the same as [addresses], but only works for the test and dev modes. Important to note that it is impossible to introduce new aliases in this section, only override the existing ones. So in the example above, if you add alice = \"0xB0B\" to this section, the alice address will be 0xB0B in the test and dev modes, and 0xA11CE in the regular build.","breadcrumbs":"Concepts » Manifest » Dev-addresses","id":"43","title":"Dev-addresses"},"44":{"body":"The TOML format supports two styles for tables: inline and multiline. The examples above are using the inline style, but it is also possible to use the multiline style. You wouldn't want to use it for the [package] section, but it can be useful for the dependencies. # Inline style\n[dependencies]\nSui = { override = true, git = \"\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nMyPackage = { local = \"../my-package\" } # Multiline style\n[dependencies.Sui]\noverride = true\ngit = \"https://github.com/MystenLabs/sui.git\"\nsubdir = \"crates/sui-framework/packages/sui-framework\"\nrev = \"framework/testnet\" [dependencies.MyPackage]\nlocal = \"../my-package\"","breadcrumbs":"Concepts » Manifest » TOML styles","id":"44","title":"TOML styles"},"45":{"body":"Packages in the Move Documentation","breadcrumbs":"Concepts » Manifest » Links","id":"45","title":"Links"},"46":{"body":"Address is a unique identifier of a location on the blockchain. It is used to identify packages , accounts , and objects . Address has a fixed size of 32 bytes and is usually represented as a hexadecimal string prefixed with 0x. Addresses are case insensitive. 0xe51ff5cd221a81c3d6e22b9e670ddf99004d71de4f769b0312b68c7c4872e2f1 The address above is an example of a valid address. It is 64 characters long (32 bytes) and is prefixed with 0x. Sui also has reserved addresses that are used to identify standard packages and objects. Reserved addresses are typically simple values that are easy to remember and type. For example, the address of the Standard Library is 0x1. Addresses, shorter than 32 bytes, are padded with zeros to the left. 0x1 = 0x0000000000000000000000000000000000000000000000000000000000000001 Here are some examples of reserved addresses: 0x1 - address of the Sui Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x5 - address of the Sui System object 0x6 - address of the system Clock object 0x403 - address of the DenyList system object","breadcrumbs":"Concepts » Addresses » Addresses","id":"46","title":"Addresses"},"47":{"body":"Address type in Move","breadcrumbs":"Concepts » Addresses » Further reading","id":"47","title":"Further reading"},"48":{"body":"Module is the basic unit of organization in a package. A module is a separate scope that contains functions, types, and other items. A package consists of one or more modules.","breadcrumbs":"Concepts » Module » Module","id":"48","title":"Module"},"49":{"body":"Accounts interact with the blockchain by sending transactions . Transactions can call functions in a package, and can also deploy new packages. On Sui, a single transaction can contain multiple operations, we call them \"commands\". A command can be a call to a function, a deployment of a new package, upgrade of an existing one, or a combination of these. Commands can return values, which can be used in subsequent commands.","breadcrumbs":"Concepts » Interacting with a Package » Interacting with a Package","id":"49","title":"Interacting with a Package"},"5":{"body":"You can download the latest Sui binary from the releases page . The binary is available for macOS, Linux and Windows. For education purposes and development, we recommend using the mainnet version.","breadcrumbs":"Before we begin » Install Sui » Download Binary","id":"5","title":"Download Binary"},"50":{"body":"An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an address .","breadcrumbs":"Concepts » Account » Account","id":"50","title":"Account"},"51":{"body":"Transaction is a fundamental concept in the blockchain world. It is a way to interact with a blockchain. Transactions are used to change the state of the blockchain, and they are the only way to do so. In Move, transactions are used to call functions in a package, deploy new packages, and upgrade existing ones.","breadcrumbs":"Concepts » Transaction » Transaction","id":"51","title":"Transaction"},"52":{"body":"Transactions consist of: a sender - the account that signs the transaction a list (or a chain) of commands - the operations to be executed command inputs - the arguments for the commands a gas object - the object used to pay for the transaction gas price and budget - the cost of the transaction","breadcrumbs":"Concepts » Transaction » Transaction Structure","id":"52","title":"Transaction Structure"},"53":{"body":"Sui does not have global storage. Instead, storage is split into a pool of objects. Some of the objects are owned by accounts and available only to them, and some are shared and can be accessed by anyone on the network. There's also a special kind of shared immutable objects, also called frozen , which can't be modified, and act as public chain-wide constants. Each object has a unique 32-byte identifier - UID, it is used to access and reference the object. Sui object consists of: UID - 32-byte unique identifier (address) Type - Move type with the key ability Owner - can be shared, account_address, object_owner or immutable Digest - hash of the object's content Version - acts as a nonce Content - the actual data represented as BCS","breadcrumbs":"Concepts » Object Model » Object Model","id":"53","title":"Object Model"},"54":{"body":"In this chapter we illustrate the concepts of Sui by building a simple application. Unlike the Hello World example which aims to illustrate Move Compiler, this application is focused on Sui specifics. It is also more complex - it uses objects , and we will publish and use it on Sui. The goal of this mini-project is to demonstrate the process of building, testing, and publishing a Sui application. The result is a simple but complete application that you can use as a starting point for your projects or as a playground to experiment with Sui as you learn. The chapter is split into the following parts (in order): Hello Sui! Build and Publish Testing Additionally, there's a section with ideas for further development of the application which you may get back to as you progress through the book.","breadcrumbs":"Your First Sui App » Your First Sui App","id":"54","title":"Your First Sui App"},"55":{"body":"Just like we did with the Hello World example, we will start by initializing a new package using the Sui CLI, then we will implement a simple application that creates a \"Postcard\" - a digital postcard that can be sent to a friend.","breadcrumbs":"Your First Sui App » Hello Sui! » Hello Sui!","id":"55","title":"Hello Sui!"},"56":{"body":"Sui packages are no different to regular Move packages, and can be initialized using the sui CLI. The following command will create a new package called postcard: $ sui new postcard This will create a new directory called postcard with the following structure: postcard\n├── Move.toml\n├── src/\n│ └── postcard.move\n└── tests/ └── postcard_tests.move The package manifest - Move.toml - already contains all required dependencies for Sui, and the src/postcard.move file is pre-created with a simple module layout. In case the Move.toml file does not feature the edition field, please, add it manually. The edition field under the [package] section should be set to 2024.beta. Like this: edition = \"2024.beta\"","breadcrumbs":"Your First Sui App » Hello Sui! » Create a new Sui package","id":"56","title":"Create a new Sui package"},"57":{"body":"The Postcard application will be a simple module that defines an object , and a set of functions to create, modify and send the postcard to any address . Let's start by inserting the code. Replace the contents of the src/postcard.move file with the following: module postcard::postcard { use std::string::String; use sui::object::UID; use sui::transfer; use sui::tx_context::TxContext; use fun sui::object::new as TxContext.new; /// The Postcard object. public struct Postcard has key { /// The unique identifier of the Object. /// Created using the `object::new()` function. id: UID, /// The message to be printed on the gift card. message: String, } /// Create a new Postcard with a message. public fun new(message: String, ctx: &mut TxContext): Postcard { Postcard { id: ctx.new(), message, } } /// Send the Postcard to the specified address. public fun send_to(card: Postcard, to: address) { transfer::transfer(card, to) } /// Keep the Postcard for yourself. public fun keep(card: Postcard, ctx: &TxContext) { transfer::transfer(card, ctx.sender()) } /// Update the message on the Postcard. public fun update(card: &mut Postcard, message: String) { card.message = message }\n} To make sure that everything is working as expected, run this command: $ sui move build You should see this output, indicating that the package was built successfully. There shouldn't be any errors following the BUILDING postcard line: > $ sui move build\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING postcard If you do see errors, please, double check the code and the steps you've taken to create the package. It's very likely a typo in one of the commands.","breadcrumbs":"Your First Sui App » Hello Sui! » Implement the Postcard application","id":"57","title":"Implement the Postcard application"},"58":{"body":"In the next section we will take a closer look at the structure of the postcard.move file and explain the code we've just inserted. We will also discuss the imports and the object definition in more detail.","breadcrumbs":"Your First Sui App » Hello Sui! » Next steps","id":"58","title":"Next steps"},"59":{"body":"Let's take a look at the code we've inserted into the postcard.move file. We will discuss the structure of the module and the code in more detail, and explain the way the Postcard object is created, used and stored.","breadcrumbs":"Your First Sui App » Using Objects » Using Objects","id":"59","title":"Using Objects"},"6":{"body":"You can install Sui using the Homebrew package manager. brew install sui","breadcrumbs":"Before we begin » Install Sui » Install using Homebrew (MacOS)","id":"6","title":"Install using Homebrew (MacOS)"},"60":{"body":"First line of the file is the module declaration. The address of the module is package - a name defined in the Move.toml file. The module name is also postcard. The module body is enclosed in curly braces {}. module postcard::postcard {","breadcrumbs":"Your First Sui App » Using Objects » Module","id":"60","title":"Module"},"61":{"body":"In the top of the module we import types and other modules from the Standard Library (std) and from the Sui Framework (sui). The Sui Framework is required to define and create objects as it contains the UID and TxContext types - two essential types for objects. We also import the sui::transfer module - this module contains storage and transfer functions. use std::string::String; use sui::object::UID; use sui::transfer; use sui::tx_context::TxContext;","breadcrumbs":"Your First Sui App » Using Objects » Imports","id":"61","title":"Imports"},"62":{"body":"A public struct Postcard, that goes after imports, is an object. A struct with the key ability is an object on Sui. As such, its first field must be id of type UID (that we imported from the Sui Framework). The id field is the unique identifier and an address of the object. /// The Postcard object. public struct Postcard has key { /// The unique identifier of the Object. /// Created using the `object::new()` function. id: UID, /// The message to be printed on the gift card. message: String, }","breadcrumbs":"Your First Sui App » Using Objects » Postcard is an Object","id":"62","title":"Postcard is an Object"},"63":{"body":"Sui has no global storage , and the objects are stored independently of their package. This is why we defined a single Postcard and not a collection \"Postcards\". Objects have to be created and stored in the storage before they can be used. The new function is a public function that creates a new instance of the Postcard object and returns it to the caller. It takes two arguments: the message of type String, which is the message on the postcard, and the ctx of type TxContext, a standard type that is automatically inserted by the Sui runtime. /// Create a new Postcard with a message. public fun new(message: String, ctx: &mut TxContext): Postcard { Postcard { id: ctx.new(), message, } } When initializing an instance of Postcard we pass the fields of the struct as arguments, the id is generated from the TxContext argument via the ctx.new() call. And the message is taken as-is from the message argument.","breadcrumbs":"Your First Sui App » Using Objects » Creating an Object","id":"63","title":"Creating an Object"},"64":{"body":"Objects can't be ignored, so when the function new is called, the returned Postcard needs to be stored. And here's when the sui::transfer module comes into play. The sui::transfer::transfer function is used to store the object at the specified address. /// Send the Postcard to the specified address. public fun send_to(card: Postcard, to: address) { transfer::transfer(card, to) } The function takes the Postcard as the first argument and a value of the address type as the second argument. Both are passed into the transfer function to send — and hence, store — the object to the specified address.","breadcrumbs":"Your First Sui App » Using Objects » Sending a Postcard","id":"64","title":"Sending a Postcard"},"65":{"body":"A very common scenario is transfering the object to the caller. This can be done by calling the send_to function with the sender address. It can be read from the ctx argument, which is a TxContext type. /// Keep the Postcard for yourself. public fun keep(card: Postcard, ctx: &TxContext) { transfer::transfer(card, ctx.sender()) }","breadcrumbs":"Your First Sui App » Using Objects » Keeping the Object","id":"65","title":"Keeping the Object"},"66":{"body":"The update function is another public function that takes a mutable reference to the Postcard and a String argument. It updates the message field of the Postcard. Because the Postcard is passed by a reference, the owner is not changed, and the object is not moved. /// Update the message on the Postcard. public fun update(card: &mut Postcard, message: String) { card.message = message }","breadcrumbs":"Your First Sui App » Using Objects » Updating the Object","id":"66","title":"Updating the Object"},"67":{"body":"In the next section we will write a simple test for the Postcard module to see how it works. Later we will publish the package on Sui DevNet and learn how to use the Sui CLI to interact with the package.","breadcrumbs":"Your First Sui App » Using Objects » Next steps","id":"67","title":"Next steps"},"68":{"body":"Now that we know what a package, account and storage are, let's get to the basics and learn to write some code. This section covers: types functions structs constants control flow tests","breadcrumbs":"Syntax Basics » Getting Ready","id":"68","title":"Getting Ready"},"69":{"body":"Module is the base unit of code organization in Move. Modules are used to group and isolate code, and all of the members of the module are private to the module by default. In this section you will learn how to define a module, how to declare its members and how to access them from other modules.","breadcrumbs":"Syntax Basics » Module » Module","id":"69","title":"Module"},"7":{"body":"You can install and build Sui locally by using the Cargo package manager (requires Rust) cargo install --git https://github.com/MystenLabs/sui.git --bin sui --branch mainnet","breadcrumbs":"Before we begin » Install Sui » Build using Cargo (MacOS, Linux)","id":"7","title":"Build using Cargo (MacOS, Linux)"},"70":{"body":"Modules are declared using the module keyword followed by the package address, module name and the module body inside the curly braces {}. The module name should be in snake_case - all lowercase letters with underscores between words. Modules names must be unique in the package. Usually, a single file in the sources/ folder contains a single module. The file name should match the module name - for example, a donut_shop module should be stored in the donut_shop.move file. You can read more about coding conventions in the Coding Conventions section. module book::my_module { // module body\n} Structs, functions and constants, imports and friend declarations are all part of the module: Structs Functions Constants Imports Friend declarations Method Aliases","breadcrumbs":"Syntax Basics » Module » Module declaration","id":"70","title":"Module declaration"},"71":{"body":"Module address can be specified as both: an address literal (does not require the @ prefix) or a named address specified in the Package Manifest . In the example below, both are identical because there's a book = \"0x0\" record in the [addresses] section of the Move.toml. module book::my_module { // module body\n} module 0x0::address_literal_example { // module body\n}","breadcrumbs":"Syntax Basics » Module » Address / Named address","id":"71","title":"Address / Named address"},"72":{"body":"Module members are declared inside the module body. To illustrate that, let's define a simple module with a struct, a function and a constant: module book::my_module_with_members { // import use book::my_module; // friend declaration friend book::constants; // a constant const CONST: u8 = 0; // a struct public struct Struct {} // method alias public use fun function as Struct.struct_fun; // function fun function(_: &Struct) { /* function body */ }\n}","breadcrumbs":"Syntax Basics » Module » Module members","id":"72","title":"Module members"},"73":{"body":"Before the introduction of the address::module_name syntax, modules were organized into address {} blocks. This way of code organization is still available today, but is not used widely. Modern practices imply having a single module per file, so the address {} block is rather a redundant construct. Module addresses can be omitted if modules are organized into address {} blocks. address book { // address block module another_module { // module body\n} module yet_another_module { // module body\n}\n} The modules defined in this code sample will be accessible as: book::another_module book::yet_another_module","breadcrumbs":"Syntax Basics » Module » Address block","id":"73","title":"Address block"},"74":{"body":"Comments are a way to add notes or document your code. They are ignored by the compiler and don't result in the Move bytecode. You can use comments to explain what your code does, to add notes to yourself or other developers, to temporarily remove a part of your code, or to generate documentation. There are three types of comments in Move: line comment, block comment, and doc comment.","breadcrumbs":"Syntax Basics » Comments » Comments","id":"74","title":"Comments"},"75":{"body":"#[allow(unused_function)]\nmodule book::comments_line { fun some_function() { // this is a comment line }\n} You can use double slash // to comment out the rest of the line. Everything after // will be ignored by the compiler. #[allow(unused_function, unused_variable)]\nmodule book::comments_line_2 { // let's add a note to everything! fun some_function_with_numbers() { let a = 10; // let b = 10 this line is commented and won't be executed let b = 5; // here comment is placed after code a + b; // result is 15, not 10! }\n}","breadcrumbs":"Syntax Basics » Comments » Line comment","id":"75","title":"Line comment"},"76":{"body":"Block comments are used to comment out a block of code. They start with /* and end with */. Everything between /* and */ will be ignored by the compiler. You can use block comments to comment out a single line or multiple lines. You can even use them to comment out a part of a line. #[allow(unused_function)]\nmodule book::comments_block { fun /* you can comment everywhere */ go_wild() { /* here there everywhere */ let a = 10; let b = /* even here */ 10; /* and again */ a + b; } /* you can use it to remove certain expressions or definitions fun empty_commented_out() { } */\n} This example is a bit extreme, but it shows how you can use block comments to comment out a part of a line.","breadcrumbs":"Syntax Basics » Comments » Block comment","id":"76","title":"Block comment"},"77":{"body":"Documentation comments are special comments that are used to generate documentation for your code. They are similar to block comments, but they start with three slashes /// and are placed before the definition of the item they document. #[allow(unused_function, unused_const, unused_variable, unused_field)]\n/// Module has documentation!\nmodule book::comments_doc { /// This is a 0x0 address constant! const AN_ADDRESS: address = @0x0; /// This is a struct! public struct AStruct { /// This is a field of a struct! a_field: u8, } /// This function does something! /// And it's documented! fun do_something() {}\n}","breadcrumbs":"Syntax Basics » Comments » Doc comment","id":"77","title":"Doc comment"},"78":{"body":"For simple values, Move has a number of built-in primitive types. They're the base that makes up all other types. The primitive types are: Booleans Unsigned Integers Address - covered in the next section However, before we get to the types, let's first look at how to declare and assign variables in Move.","breadcrumbs":"Syntax Basics » Primitive Types » Primitive Types","id":"78","title":"Primitive Types"},"79":{"body":"Variables are declared using the let keyword. They are immutable by default, but can be made mutable using the let mut keyword. The syntax for the let mut statement is: let [: ] = ;\nlet mut [: ] = ; Where: - the name of the variable - the type of the variable, optional - the value to be assigned to the variable let x: bool = true;\nlet mut y: u8 = 42; A mutable variable can be reassigned using the = operator. y = 43; Variables can also be shadowed by re-declaring. let x: u8 = 42;\nlet x: u8 = 43;","breadcrumbs":"Syntax Basics » Primitive Types » Variables and assignment","id":"79","title":"Variables and assignment"},"8":{"body":"For troubleshooting the installation process, please refer to the Install Sui Guide.","breadcrumbs":"Before we begin » Install Sui » Troubleshooting","id":"8","title":"Troubleshooting"},"80":{"body":"The bool type represents a boolean value - yes or no, true or false. It has two possible values: true and false which are keywords in Move. For booleans, there's no need to explicitly specify the type - the compiler can infer it from the value. let x = true;\nlet y = false; Booleans are often used to store flags and to control the flow of the program. Please, refer to the Control Flow section for more information.","breadcrumbs":"Syntax Basics » Primitive Types » Booleans","id":"80","title":"Booleans"},"81":{"body":"Move supports unsigned integers of various sizes: from 8-bit to 256-bit. The integer types are: u8 - 8-bit u16 - 16-bit u32 - 32-bit u64 - 64-bit u128 - 128-bit u256 - 256-bit let x: u8 = 42;\nlet y: u16 = 42;\n// ...\nlet z: u256 = 42; Unlike booleans, integer types need to be inferred. In most of the cases, the compiler will infer the type from the value, usually defaulting to u64. However, sometimes the compiler is unable to infer the type and will require an explicit type annotation. It can either be provided during assignment or by using a type suffix. // Both are equivalent\nlet x: u8 = 42;\nlet x = 42u8;","breadcrumbs":"Syntax Basics » Primitive Types » Integer Types","id":"81","title":"Integer Types"},"82":{"body":"Move supports the standard arithmetic operations for integers: addition, subtraction, multiplication, division, and remainder. The syntax for these operations is: Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0 The type of the operands must match , otherwise, the compiler will raise an error. The result of the operation will be of the same type as the operands. To perform operations on different types, the operands need to be cast to the same type.","breadcrumbs":"Syntax Basics » Primitive Types » Operations","id":"82","title":"Operations"},"83":{"body":"Move supports explicit casting between integer types. The syntax for it is: ( as ) Note, that it requires parentheses around the expression to prevent ambiguity. let x: u8 = 42;\nlet y: u16 = (x as u16); A more complex example, preventing overflow: let x: u8 = 255;\nlet y: u8 = 255;\nlet z: u16 = (x as u16) + ((y as u16) * 2);","breadcrumbs":"Syntax Basics » Primitive Types » Casting with as","id":"83","title":"Casting with as"},"84":{"body":"Move does not support overflow / underflow, an operation that results in a value outside the range of the type will raise a runtime error. This is a safety feature to prevent unexpected behavior. let x = 255u8;\nlet y = 1u8; // This will raise an error\nlet z = x + y;","breadcrumbs":"Syntax Basics » Primitive Types » Overflow","id":"84","title":"Overflow"},"85":{"body":"To represent addresses , Move uses a special type called address. It is a 32 byte value that can be used to represent any address on the blockchain. Addresses are used in two syntax forms: hexadecimal addresses prefixed with 0x and named addresses. // address literal\nlet value: address = @0x1; // named address registered in Move.toml\nlet value = @std;\nlet other = @sui; An address literal starts with the @ symbol followed by a hexadecimal number or an identifier. The hexadecimal number is interpreted as a 32 byte value. The identifier is looked up in the Move.toml file and replaced with the corresponding address by the compiler. If the identifier is not found in the Move.toml file, the compiler will throw an error.","breadcrumbs":"Syntax Basics » Address Type » Address Type","id":"85","title":"Address Type"},"86":{"body":"Sui Framework offers a set of helper functions to work with addresses. Given that the address type is a 32 byte value, it can be converted to a u256 type and vice versa. It can also be converted to and from a vector type. Example: Convert an address to a u256 type and back. use sui::address; let addr_as_u256: u256 = address::to_u256(@0x1);\nlet addr = address::from_u256(addr_as_u256); Example: Convert an address to a vector type and back. use sui::address; let addr_as_u8: vector = address::to_bytes(@0x1);\nlet addr = address::from_bytes(addr_as_u8); Example: Convert an address into a string. use sui::address;\nuse std::string; let addr_as_string: String = address::to_string(@0x1);","breadcrumbs":"Syntax Basics » Address Type » Conversion","id":"86","title":"Conversion"},"87":{"body":"In programming languages expression is a unit of code which returns a value, in Move, almost everything is an expression, - with the sole exception of let statement which is a declaration. In this section, we cover the types of expressions and introduce the concept of scope. Expressions are sequenced with semicolons ;. If there's \"no expression\" after the semicolon, the compiler will insert an empty expression ().","breadcrumbs":"Syntax Basics » Expression » Expression","id":"87","title":"Expression"},"88":{"body":"The very base of the expression is the empty expression. It is a valid expression that does nothing and returns nothing. An empty expression is written as empty parentheses (). It's rarely the case when you need to use an empty expression. The compiler automatically inserts empty expressions where needed, for example in an empty Scope . Though, it may be helpful to know that it exists. Parentheses are also used to group expressions to control the order of evaluation. // variable `a` has no value;\nlet a = (); // similarly, we could write:\nlet a;","breadcrumbs":"Syntax Basics » Expression » Empty Expression","id":"88","title":"Empty Expression"},"89":{"body":"In the Primitive Types section, we introduced the basic types of Move. And to illustrate them, we used literals. A literal is a notation for representing a fixed value in the source code. Literals are used to initialize variables and to pass arguments to functions. Move has the following literals: true and false for boolean values 0, 1, 123123 or other numeric for integer values 0x0, 0x1, 0x123 or other hexadecimal for integer values b\"bytes_vector\" for byte vector values x\"0A\" HEX literal for byte values let b = true; // true is a literal\nlet n = 1000; // 1000 is a literal\nlet h = 0x0A; // 0x0A is a literal\nlet v = b\"hello\"; // b'hello' is a byte vector literal\nlet x = x\"0A\"; // x'0A' is a byte vector literal\nlet c = vector[1, 2, 3]; // vector[] is a vector literal","breadcrumbs":"Syntax Basics » Expression » Literals","id":"89","title":"Literals"},"9":{"body":"There are two most popular IDEs for Move development: VSCode and IntelliJ IDEA. Both of them provide basic features like syntax highlighting and error messages, though they differ in their additional features. Whatever IDE you choose, you'll need to use the terminal to run the Move CLI . IntelliJ Plugin does not support Move 2024 edition fully, some syntax won't get highlighted and not supported.","breadcrumbs":"Before we begin » Set up your IDE » Set up your IDE","id":"9","title":"Set up your IDE"},"90":{"body":"Ariphmetic, logical, and bitwise operators are used to perform operations on values. The result of an operation is a value, so operators are also expressions. let sum = 1 + 2; // 1 + 2 is an expression\nlet sum = (1 + 2); // the same expression with parentheses\nlet is_true = true && false; // true && false is an expression\nlet is_true = (true && false); // the same expression with parentheses","breadcrumbs":"Syntax Basics » Expression » Operators","id":"90","title":"Operators"},"91":{"body":"A block is a sequence of statements and expressions, and it returns the value of the last expression in the block. A block is written as a pair of curly braces {}. A block is an expression, so it can be used anywhere an expression is expected. // block with an empty expression, however, the compiler will\n// insert an empty expression automatically: `let none = { () }`\nlet none = {}; // block with let statements and an expression.\nlet sum = { let a = 1; let b = 2; a + b // last expression is the value of the block\n}; let none = { let a = 1; let b = 2; a + b; // not returned - semicolon. // compiler automatically inserts an empty expression `()`\n};","breadcrumbs":"Syntax Basics » Expression » Blocks","id":"91","title":"Blocks"},"92":{"body":"We go into detail about functions in the Functions section. However, we already used function calls in the previous sections, so it's worth mentioning them here. A function call is an expression that calls a function and returns the value of the last expression in the function body. fun add(a: u8, b: u8): u8 { a + b\n} #[test]\nfun some_other() { let sum = add(1, 2); // add(1, 2) is an expression with type u8\n}","breadcrumbs":"Syntax Basics » Expression » Function Calls","id":"92","title":"Function Calls"},"93":{"body":"Control flow expressions are used to control the flow of the program. They are also expressions, so they return a value. We cover control flow expressions in the Control Flow section. Here's a very brief overview: // if is an expression, so it returns a value; if there are 2 branches,\n// the types of the branches must match.\nif (bool_expr) expr1 else expr2; // while is an expression, but it returns `()`.\nwhile (bool_expr) expr; // loop is an expression, but returns `()` as well.\nloop expr;","breadcrumbs":"Syntax Basics » Expression » Control Flow Expressions","id":"93","title":"Control Flow Expressions"},"94":{"body":"Move type system shines when it comes to defining custom types. User defined types can be custom tailored to the specific needs of the application. Not just on the data level, but also in its behavior. In this section we introduce the struct definition and how to use it.","breadcrumbs":"Syntax Basics » Struct » Custom Types with Struct","id":"94","title":"Custom Types with Struct"},"95":{"body":"To define a custom type, you can use the struct keyword followed by the name of the type. After the name, you can define the fields of the struct. Each field is defined with the field_name: field_type syntax. Field definitions must be separated by commas. The fields can be of any type, including other structs. Note: Move does not support recursive structs, meaning a struct cannot contain itself as a field. /// A struct representing an artist.\npublic struct Artist { /// The name of the artist. name: String,\n} /// A struct representing a music record.\npublic struct Record { /// The title of the record. title: String, /// The artist of the record. Uses the `Artist` type. artist: Artist, /// The year the record was released. year: u16, /// Whether the record is a debut album. is_debut: bool, /// The edition of the record. edition: Option,\n} In the example above, we define a Record struct with five fields. The title field is of type String, the artist field is of type Artist, the year field is of type u16, the is_debut field is of type bool, and the edition field is of type Option. The edition field is of type Option to represent that the edition is optional. Structs are private by default, meaning they cannot be imported and used outside of the module they are defined in. Their fields are also private and can't be accessed from outside the module. See visibility for more information on different visibility modifiers. A struct by default is internal to the module it is defined in.","breadcrumbs":"Syntax Basics » Struct » Struct","id":"95","title":"Struct"},"96":{"body":"We described how struct definition works. Now let's see how to initialize a struct and use it. A struct can be initialized using the struct_name { field1: value1, field2: value2, ... } syntax. The fields can be initialized in any order, and all of the fields must be set. // Create an instance of the `Artist` struct.\nlet artist = Artist { name: string::utf8(b\"The Beatles\"),\n}; In the example above, we create an instance of the Artist struct and set the name field to a string \"The Beatles\". To access the fields of a struct, you can use the . operator followed by the field name. // Access the `name` field of the `Artist` struct.\nlet artist_name = artist.name; // Access a field of the `Artist` struct.\nassert!(artist.name == string::utf8(b\"The Beatles\"), 0); // Mutate the `name` field of the `Artist` struct.\nartist.name = string::utf8(b\"Led Zeppelin\"); // Check that the `name` field has been mutated.\nassert!(artist.name == string::utf8(b\"Led Zeppelin\"), 1); Only module defining the struct can access its fields (both mutably and immutably). So the above code should be in the same module as the Artist struct.","breadcrumbs":"Syntax Basics » Struct » Create and use an instance","id":"96","title":"Create and use an instance"},"97":{"body":"Structs are non-discardable by default, meaning that the initiated struct value must be used: either stored or unpacked . Unpacking a struct means deconstructing it into its fields. This is done using the let keyword followed by the struct name and the field names. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field.\nlet Artist { name } = artist; In the example above we unpack the Artist struct and create a new variable name with the value of the name field. Because the variable is not used, the compiler will raise a warning. To suppress the warning, you can use the underscore _ to indicate that the variable is intentionally unused. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field. The variable is intentionally unused.\nlet Artist { name: _ } = artist;","breadcrumbs":"Syntax Basics » Struct » Unpacking a struct","id":"97","title":"Unpacking a struct"},"98":{"body":"Move has a unique type system which allows defining type abilities . In the previous section , we introduced the struct definition and how to use it. However, the instances of the Artist and Record structs had to be unpacked for the code to compile. This is default behavior of a struct without abilities . In this section, we introduce the first ability - drop.","breadcrumbs":"Syntax Basics » Abilities: Drop » Abilities: Drop","id":"98","title":"Abilities: Drop"},"99":{"body":"Abilities are set in the struct definition using the has keyword followed by a list of abilities. The abilities are separated by commas. Move supports 4 abilities: copy, drop, key, and store. In this section, we cover the first two abilities: copy and drop. The last two abilities are covered in the programmability chapter , when we introduce Objects and storage operations. /// This struct has the `copy` and `drop` abilities.\nstruct VeryAble has copy, drop { // field: Type1, // field2: Type2, // ...\n}","breadcrumbs":"Syntax Basics » Abilities: Drop » Abilities syntax","id":"99","title":"Abilities syntax"}},"length":235,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"128":{"tf":2.449489742783178},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"163":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"96":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":8,"docs":{"121":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"108":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0}}},"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"46":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"46":{"tf":1.0}}},"6":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":3,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":5,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951}}},"2":{"4":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"128":{"tf":2.8284271247461903},"131":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"217":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}}},"3":{"df":1,"docs":{"23":{"tf":1.0}}},"4":{"df":1,"docs":{"23":{"tf":1.0}}},"5":{"df":1,"docs":{"75":{"tf":1.0}}},"6":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":32,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"9":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"2":{"df":1,"docs":{"2":{"tf":1.0}}},"3":{"df":1,"docs":{"2":{"tf":1.0}}},"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"14":{"tf":2.23606797749979},"153":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"171":{"tf":1.0}}},"4":{"df":1,"docs":{"200":{"tf":1.0}},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"144":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"187":{"tf":1.0},"231":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":6,"docs":{"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"114":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":3,"docs":{"79":{"tf":1.4142135623730951},"81":{"tf":2.0},"83":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":2,"docs":{"163":{"tf":1.0},"99":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"215":{"tf":1.0},"75":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"46":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}},"9":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"180":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"a":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"115":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":2.23606797749979},"170":{"tf":1.0},"172":{"tf":3.3166247903554},"174":{"tf":1.0},"180":{"tf":1.0},"190":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"53":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.8284271247461903}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":16,"docs":{"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":2.6457513110645907},"141":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":3.4641016151377544},"23":{"tf":1.0},"231":{"tf":2.23606797749979},"232":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"v":{"df":15,"docs":{"117":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"149":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"204":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"31":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"32":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"29":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"1":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"a":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"139":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"157":{"tf":1.0},"54":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}}}},"df":38,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.6457513110645907},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"42":{"tf":2.0},"43":{"tf":2.0},"46":{"tf":4.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":3.4641016151377544},"86":{"tf":2.23606797749979}}}}}}},"df":11,"docs":{"107":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":2,"docs":{"144":{"tf":2.449489742783178},"170":{"tf":2.449489742783178}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"216":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"72":{"tf":1.0}},"s":{"df":7,"docs":{"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"216":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0}}}},"c":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.449489742783178},"24":{"tf":1.0},"27":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"30":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"168":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"119":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"187":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":3,"docs":{"178":{"tf":1.0},"218":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"148":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"119":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"95":{"tf":3.0},"96":{"tf":2.8284271247461903},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":5,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"126":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"5":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":9,"docs":{"126":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"126":{"tf":2.0},"135":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"2":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"188":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"107":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"159":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.4142135623730951},"162":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"19":{"tf":1.0},"89":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},">":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"188":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"13":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":2,"docs":{"110":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"158":{"tf":2.8284271247461903},"160":{"tf":2.0},"32":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":4,"docs":{"127":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"223":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"128":{"tf":1.0},"144":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"130":{"tf":1.0},"161":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"229":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0}}}},"w":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"71":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"117":{"tf":1.4142135623730951},"14":{"tf":1.0},"171":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"226":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"209":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"210":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"119":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":3.3166247903554},"182":{"tf":1.0},"226":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"91":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"146":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"104":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"132":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"180":{"tf":1.0},"232":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"215":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":5,"docs":{"116":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"200":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"168":{"tf":1.0},"215":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"126":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.7320508075688772},"218":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.4142135623730951},"25":{"tf":2.0},"30":{"tf":2.0},"43":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":2.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"135":{"tf":1.0},"199":{"tf":1.0},"34":{"tf":1.7320508075688772},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"120":{"tf":3.1622776601683795},"122":{"tf":1.7320508075688772},"148":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"193":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"_":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"137":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"218":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"163":{"tf":5.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"189":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":3,"docs":{"146":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":3,"docs":{"158":{"tf":3.1622776601683795},"160":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"223":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":15,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":2.6457513110645907},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"25":{"tf":1.4142135623730951},"51":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.4142135623730951},"186":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"159":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"204":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":8,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"202":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"181":{"tf":1.4142135623730951},"202":{"tf":3.3166247903554},"203":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"161":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0}},"r":{"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":46,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":3.1622776601683795},"180":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"108":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":2.8284271247461903},"209":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.4142135623730951},"225":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"199":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"n":{"d":{"df":12,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"29":{"tf":2.8284271247461903},"74":{"tf":2.6457513110645907},"75":{"tf":2.23606797749979},"76":{"tf":3.0},"77":{"tf":2.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0}}},"x":{"df":5,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"138":{"tf":1.7320508075688772},"22":{"tf":1.0},"232":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"234":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":6,"docs":{"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"233":{"tf":1.0}}}}}},"i":{"d":{"df":6,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":2.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":2.0},"179":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"182":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":3.3166247903554},"171":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"182":{"tf":2.6457513110645907},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"125":{"tf":2.0},"126":{"tf":1.0},"230":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"138":{"tf":1.0},"145":{"tf":1.0}}},"t":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.605551275463989},"161":{"tf":2.6457513110645907},"165":{"tf":1.0},"172":{"tf":2.23606797749979},"190":{"tf":1.0},"234":{"tf":1.7320508075688772},"99":{"tf":2.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"214":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.7320508075688772},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.0},"232":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"178":{"tf":2.23606797749979},"180":{"tf":3.872983346207417}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"212":{"tf":1.0},"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"160":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"201":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"t":{"a":{"df":12,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"127":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"25":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"110":{"tf":1.4142135623730951},"15":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"163":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"210":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":45,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":3.0},"109":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"40":{"tf":3.0},"41":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"165":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"233":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"139":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"115":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"36":{"tf":1.0},"41":{"tf":2.23606797749979},"43":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"177":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.0},"211":{"tf":1.0},"231":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"182":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.4142135623730951},"155":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"19":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"142":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"c":{"df":5,"docs":{"15":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"15":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.8284271247461903},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"45":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":1,"docs":{"192":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"232":{"tf":1.0},"27":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"214":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"4":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":23,"docs":{"101":{"tf":3.3166247903554},"103":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"161":{"tf":2.6457513110645907},"168":{"tf":1.0},"172":{"tf":2.8284271247461903},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"172":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":1.0},"208":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"187":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"155":{"tf":1.0},"188":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"214":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"9":{"tf":1.0},"95":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"178":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":2.0},"116":{"tf":1.4142135623730951},"160":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"228":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":12,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"142":{"tf":1.0},"163":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"91":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"168":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.0},"22":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":2,"docs":{"139":{"tf":1.4142135623730951},"230":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"162":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"202":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"182":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"201":{"tf":3.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":23,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":2.449489742783178},"140":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"208":{"tf":1.0},"76":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":49,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":2.6457513110645907},"204":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":22,"docs":{"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":2.0},"202":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":5,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"138":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"125":{"tf":1.0},"162":{"tf":1.4142135623730951},"193":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"160":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"214":{"tf":1.0}}}},"s":{"df":2,"docs":{"185":{"tf":1.0},"202":{"tf":1.0}}}},"r":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"126":{"tf":3.605551275463989},"128":{"tf":2.23606797749979},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"88":{"tf":2.8284271247461903},"90":{"tf":2.23606797749979},"91":{"tf":3.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.6457513110645907}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"225":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"148":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"122":{"tf":1.0},"172":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"s":{"df":9,"docs":{"126":{"tf":1.0},"132":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"178":{"tf":2.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}},"_":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":37,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":20,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":24,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}}},"x":{"df":4,"docs":{"163":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"30":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"125":{"tf":2.0},"126":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}},"s":{"df":2,"docs":{"170":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"!":{"(":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.0}}}},"df":2,"docs":{"174":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":2,"docs":{"202":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"186":{"tf":1.0},"209":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"55":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":3,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"(":{"_":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":82,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"141":{"tf":3.3166247903554},"142":{"tf":3.0},"143":{"tf":2.23606797749979},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":3.1622776601683795},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.449489742783178},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.0},"77":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":2.6457513110645907}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"186":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":73,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":3.0},"148":{"tf":2.0},"150":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}}}},"g":{"a":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"204":{"tf":1.0},"207":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":3.0},"169":{"tf":1.7320508075688772},"170":{"tf":2.8284271247461903},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"185":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"50":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"161":{"tf":1.0},"175":{"tf":1.0},"34":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"204":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"df":9,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"57":{"tf":1.0},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0}},"n":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"86":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"155":{"tf":1.0},"62":{"tf":1.0}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"139":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"105":{"tf":2.0},"106":{"tf":1.0},"141":{"tf":1.0},"25":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"223":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"178":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"l":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"122":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"161":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"18":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"182":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"73":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":3,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"`":{"]":{"(":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"p":{"df":5,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"211":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"n":{"c":{"df":3,"docs":{"121":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"64":{"tf":1.0},"93":{"tf":1.0}}},"df":13,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"171":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"146":{"tf":3.4641016151377544},"147":{"tf":3.3166247903554},"148":{"tf":3.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"\"":{"\"":{">":{"0":{"df":0,"docs":{},"x":{"1":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{">":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"/":{"a":{">":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"<":{"/":{"a":{">":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"'":{"df":1,"docs":{"182":{"tf":1.0}}},"df":18,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"180":{"tf":2.23606797749979},"185":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"199":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"101":{"tf":2.449489742783178},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"234":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"163":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":2.0},"34":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"230":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":37,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":3.4641016151377544},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"25":{"tf":2.6457513110645907},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":13,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"170":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"122":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"122":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":9,"docs":{"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"180":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"172":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"188":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"137":{"tf":1.0},"159":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":2.23606797749979},"184":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"'":{"df":10,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":7,"docs":{"133":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":2.8284271247461903},"188":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"221":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"y":{"df":20,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.7320508075688772},"188":{"tf":3.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.7320508075688772},"212":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"200":{"tf":1.0},"209":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"'":{"df":22,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"133":{"tf":1.0},"141":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"2":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":9,"docs":{"129":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":2.0}}},"k":{"df":4,"docs":{"173":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.0},"45":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"52":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":3.4641016151377544}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":2.0},"147":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"128":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"161":{"tf":1.0},"217":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0}}},"p":{"df":8,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":2.8284271247461903},"128":{"tf":2.6457513110645907},"129":{"tf":3.4641016151377544},"130":{"tf":3.7416573867739413},"131":{"tf":2.449489742783178},"209":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"178":{"tf":2.0},"180":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"138":{"tf":2.0},"217":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"208":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":2,"docs":{"146":{"tf":2.0},"148":{"tf":1.4142135623730951}},"g":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"3":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"188":{"tf":2.6457513110645907},"189":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":3,"docs":{"19":{"tf":1.0},"199":{"tf":1.0},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"169":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"170":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951}}}}}}}},"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"117":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"111":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"202":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"19":{"tf":1.0},"29":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"130":{"tf":1.0},"15":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"57":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"66":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"170":{"tf":2.0},"188":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"138":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":3.605551275463989},"148":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"4":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":3.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"171":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"163":{"tf":2.23606797749979},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"222":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":92,"docs":{"101":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":2.8284271247461903},"104":{"tf":2.8284271247461903},"105":{"tf":3.605551275463989},"106":{"tf":2.449489742783178},"108":{"tf":3.1622776601683795},"109":{"tf":1.0},"110":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":1.0},"141":{"tf":2.449489742783178},"143":{"tf":2.23606797749979},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.23606797749979},"149":{"tf":2.6457513110645907},"15":{"tf":1.0},"150":{"tf":2.449489742783178},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"18":{"tf":2.449489742783178},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":3.1622776601683795},"191":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"30":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":3.605551275463989},"71":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":3.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"148":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":33,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"101":{"tf":1.0},"162":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"199":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"4":{":":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":93,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"154":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"167":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"127":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"169":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"144":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"180":{"tf":2.449489742783178},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"120":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"147":{"tf":2.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":2.23606797749979},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"229":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":2.449489742783178},"97":{"tf":3.1622776601683795}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"126":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"11":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"185":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"162":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"18":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"115":{"tf":1.4142135623730951},"189":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"108":{"tf":1.0},"121":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"166":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"68":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"114":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.4142135623730951},"187":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"89":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":34,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"220":{"tf":2.0},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"225":{"tf":2.449489742783178},"227":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":2.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"186":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"188":{"tf":1.0},"220":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"c":{"df":7,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"231":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0}}},"df":18,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"202":{"tf":1.0},"225":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"2":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":30,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":2.449489742783178},"84":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"122":{"tf":1.0}}}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}},"u":{"1":{"6":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"110":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":2.23606797749979},"118":{"tf":2.8284271247461903},"126":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"169":{"tf":1.4142135623730951},"226":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"159":{"tf":1.0},"23":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":7,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"233":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"128":{"tf":1.0},"230":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":2.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"223":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"155":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"178":{"tf":1.0},"180":{"tf":1.0},"220":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":50,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.449489742783178},"111":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.0},"169":{"tf":3.0},"188":{"tf":2.23606797749979},"39":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":3.1622776601683795},"172":{"tf":2.6457513110645907},"184":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"142":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"t":{"df":14,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.0},"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":3.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"122":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"229":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.0},"230":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"144":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"201":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":4.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.8284271247461903},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"170":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"105":{"tf":1.0},"117":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{">":{"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"b":{">":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"182":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"194":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"223":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":9,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"162":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"133":{"tf":1.4142135623730951},"163":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"161":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"178":{"tf":1.7320508075688772},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":26,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":3,"docs":{"177":{"tf":1.4142135623730951},"2":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"199":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"d":{"df":19,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":52,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":3.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":9,"docs":{"199":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"163":{"tf":2.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"139":{"tf":1.0},"226":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"160":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"189":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":6,"docs":{"117":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":2.8284271247461903},"98":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"79":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":2.0},"164":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"202":{"tf":2.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"110":{"tf":1.0},"174":{"tf":2.0},"176":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"181":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":1,"docs":{"107":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":1.0},"38":{"tf":1.4142135623730951},"5":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"201":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"130":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":2.6457513110645907},"26":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"188":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":14,"docs":{"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"2":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"147":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.0},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"223":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":38,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":3.605551275463989},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"144":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"49":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}}},"v":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"25":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"n":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"110":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":3,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"230":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"223":{"tf":1.0},"84":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"129":{"tf":1.0},"163":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":13,"docs":{"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"169":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":2.0},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":16,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}},"df":6,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"182":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"3":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":16,"docs":{"15":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":3.1622776601683795},"188":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"170":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"220":{"tf":1.4142135623730951},"233":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"76":{"tf":1.0}},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"182":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}},"df":3,"docs":{"182":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"112":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"131":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"221":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":25,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"194":{"tf":1.0},"224":{"tf":2.23606797749979},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"46":{"tf":1.0},"81":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.449489742783178},"3":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"29":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"130":{"tf":1.0},"77":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":2.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"181":{"tf":1.4142135623730951},"199":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"104":{"tf":1.0},"178":{"tf":1.0},"220":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":11,"docs":{"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"17":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":19,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"131":{"tf":1.0},"16":{"tf":1.0},"182":{"tf":1.4142135623730951},"201":{"tf":1.0},"217":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":2.23606797749979},"142":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"208":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"25":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"130":{"tf":1.0},"217":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":7,"docs":{"121":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}},"l":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":28,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"119":{"tf":3.0},"120":{"tf":2.6457513110645907},"121":{"tf":3.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"16":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"18":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"46":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":3.3166247903554},"148":{"tf":2.449489742783178},"150":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"77":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":3.605551275463989},"96":{"tf":3.3166247903554},"97":{"tf":2.8284271247461903},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":2.449489742783178}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"158":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":51,"docs":{"107":{"tf":2.0},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"222":{"tf":1.0}}}},"m":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}},"y":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"145":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":27,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"46":{"tf":1.7320508075688772},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}}}},"df":15,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"141":{"tf":1.7320508075688772},"178":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"230":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}},"n":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":7,"docs":{"168":{"tf":2.6457513110645907},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":1,"docs":{"126":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"196":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":51,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":4.123105625617661},"22":{"tf":4.58257569495584},"23":{"tf":3.605551275463989},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"159":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"232":{"tf":1.0},"29":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"155":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"126":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"16":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":2.449489742783178},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":3,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}}},"l":{"df":3,"docs":{"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"25":{"tf":1.0},"61":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"178":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"119":{"tf":1.4142135623730951},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":3.872983346207417},"183":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"27":{"tf":1.0}}}},"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"180":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"122":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":2.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"169":{"tf":2.0},"171":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":11,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"2":{"df":1,"docs":{"99":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":77,"docs":{"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":3.4641016151377544},"169":{"tf":4.0},"170":{"tf":2.6457513110645907},"171":{"tf":4.358898943540674},"172":{"tf":3.1622776601683795},"174":{"tf":2.449489742783178},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"22":{"tf":1.0},"233":{"tf":1.7320508075688772},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":3.1622776601683795},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":5,"docs":{"180":{"tf":1.0},"221":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":17,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"163":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"92":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":2.8284271247461903}},"i":{"d":{"df":12,"docs":{"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":2,"docs":{"120":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"154":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":12,"docs":{"105":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":9,"docs":{"141":{"tf":1.0},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}},"x":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"132":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"144":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.4142135623730951}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"170":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":2.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":6,"docs":{"218":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"39":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"26":{"tf":1.0}}}},"d":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}},"df":142,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":2.0},"15":{"tf":1.0},"150":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":2.23606797749979},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":2.0},"138":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"117":{"tf":2.449489742783178},"126":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"127":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.8284271247461903}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"113":{"tf":1.0},"122":{"tf":2.6457513110645907},"142":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":61,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.6457513110645907},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":3.0},"202":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"117":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.6457513110645907},"88":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"170":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"210":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"215":{"tf":1.0},"89":{"tf":1.0}},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"188":{"tf":1.0},"221":{"tf":1.0}}}}}},"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"89":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":14,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":3.872983346207417},"114":{"tf":2.449489742783178},"115":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"127":{"tf":1.0},"148":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"226":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.7320508075688772},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":3.605551275463989},"221":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":2.0},"41":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"df":8,"docs":{"107":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"63":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"147":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"141":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"182":{"tf":1.0},"229":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"113":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"y":{"df":28,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"v":{"df":4,"docs":{"128":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"208":{"tf":1.0},"21":{"tf":1.0},"93":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"230":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"189":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"204":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"223":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":1.7320508075688772},"172":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"233":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"202":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":16,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0}}},"l":{"d":{"df":13,"docs":{"121":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"120":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"185":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"126":{"tf":2.449489742783178},"128":{"tf":2.449489742783178},"129":{"tf":2.449489742783178},"130":{"tf":2.6457513110645907},"131":{"tf":2.8284271247461903},"132":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"y":{"df":7,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}},"df":1,"docs":{"80":{"tf":1.0}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"46":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"128":{"tf":2.449489742783178},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"163":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"96":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":8,"docs":{"121":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"108":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0}}},"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"46":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"46":{"tf":1.0}}},"6":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":3,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":5,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951}}},"2":{"4":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"128":{"tf":2.8284271247461903},"131":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"217":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}}},"3":{"df":1,"docs":{"23":{"tf":1.0}}},"4":{"df":1,"docs":{"23":{"tf":1.0}}},"5":{"df":1,"docs":{"75":{"tf":1.0}}},"6":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":32,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"9":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"2":{"df":1,"docs":{"2":{"tf":1.0}}},"3":{"df":1,"docs":{"2":{"tf":1.0}}},"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"14":{"tf":2.6457513110645907},"153":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"171":{"tf":1.0}}},"4":{"df":1,"docs":{"200":{"tf":1.0}},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"144":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"187":{"tf":1.0},"231":{"tf":2.0},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":6,"docs":{"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"114":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":3,"docs":{"79":{"tf":1.4142135623730951},"81":{"tf":2.0},"83":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":2,"docs":{"163":{"tf":1.0},"99":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"215":{"tf":1.0},"75":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"46":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"81":{"tf":1.4142135623730951}}},"9":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"180":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"a":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.4641016151377544},"115":{"tf":1.0},"160":{"tf":2.6457513110645907},"161":{"tf":2.449489742783178},"170":{"tf":1.0},"172":{"tf":3.3166247903554},"174":{"tf":1.0},"180":{"tf":1.0},"190":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"53":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":3.1622776601683795}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":18,"docs":{"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":3.0},"138":{"tf":2.8284271247461903},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":3.4641016151377544},"23":{"tf":1.0},"231":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"v":{"df":15,"docs":{"117":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"149":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"204":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"31":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"32":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"29":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"1":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"a":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"139":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"157":{"tf":1.0},"54":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}}}},"df":38,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.8284271247461903},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"42":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"46":{"tf":4.242640687119285},"47":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.8284271247461903},"73":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":3.7416573867739413},"86":{"tf":2.449489742783178}}}}}}},"df":13,"docs":{"107":{"tf":1.7320508075688772},"147":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":37,"docs":{"127":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":2,"docs":{"144":{"tf":2.449489742783178},"170":{"tf":2.449489742783178}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"216":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"72":{"tf":1.0}},"s":{"df":7,"docs":{"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0}}}},"c":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.449489742783178},"24":{"tf":1.0},"27":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"30":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"168":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"108":{"tf":1.7320508075688772},"119":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":15,"docs":{"187":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"df":3,"docs":{"178":{"tf":1.0},"218":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"148":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"119":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":2.0},"234":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"95":{"tf":3.0},"96":{"tf":2.8284271247461903},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":5,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"126":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"5":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":11,"docs":{"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":2.449489742783178},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":2.0}}}},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"126":{"tf":2.0},"135":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"2":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"188":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"107":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"159":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.4142135623730951},"162":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"19":{"tf":1.0},"89":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},">":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"188":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"13":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":113,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":2,"docs":{"110":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"158":{"tf":2.8284271247461903},"160":{"tf":2.0},"32":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":4,"docs":{"127":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"223":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"130":{"tf":1.0},"161":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"229":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0}}}},"w":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"71":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"117":{"tf":1.4142135623730951},"14":{"tf":1.0},"171":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"226":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":2.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"209":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"210":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"119":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":3.4641016151377544},"182":{"tf":1.0},"226":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":1.0},"91":{"tf":3.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"146":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"104":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"132":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"180":{"tf":1.0},"232":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"215":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":5,"docs":{"116":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"200":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"168":{"tf":1.0},"215":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"126":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.7320508075688772},"218":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"25":{"tf":2.0},"30":{"tf":2.0},"43":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":2.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"135":{"tf":1.0},"199":{"tf":1.0},"34":{"tf":1.7320508075688772},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"120":{"tf":3.3166247903554},"122":{"tf":1.7320508075688772},"148":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"193":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"_":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"137":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"218":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"163":{"tf":5.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"189":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":3,"docs":{"146":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":3,"docs":{"158":{"tf":3.1622776601683795},"160":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"223":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":15,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":2.6457513110645907},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"25":{"tf":1.4142135623730951},"51":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.4142135623730951},"186":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"159":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"204":{"tf":2.449489742783178},"208":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":8,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"202":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"181":{"tf":1.7320508075688772},"202":{"tf":3.3166247903554},"203":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"161":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0}},"r":{"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":46,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.0},"199":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"231":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":3.1622776601683795},"180":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"108":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":2.8284271247461903},"209":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":2.449489742783178},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.4142135623730951},"225":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"199":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"n":{"d":{"df":12,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"29":{"tf":3.0},"74":{"tf":3.0},"75":{"tf":2.6457513110645907},"76":{"tf":3.3166247903554},"77":{"tf":2.449489742783178}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.0},"206":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0}}},"x":{"df":5,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"126":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"138":{"tf":1.7320508075688772},"22":{"tf":1.0},"232":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"221":{"tf":2.449489742783178},"223":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":2.0},"147":{"tf":1.4142135623730951},"234":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":6,"docs":{"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"233":{"tf":1.0}}}}}},"i":{"d":{"df":6,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":2.449489742783178},"134":{"tf":2.0},"135":{"tf":2.0},"137":{"tf":1.0},"139":{"tf":2.23606797749979},"179":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"182":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":3.3166247903554},"171":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"182":{"tf":3.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"230":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"138":{"tf":1.0},"145":{"tf":1.0}}},"t":{"df":5,"docs":{"134":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.872983346207417},"161":{"tf":3.0},"165":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"190":{"tf":1.0},"234":{"tf":1.7320508075688772},"99":{"tf":2.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.7320508075688772},"160":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"214":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.7320508075688772},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.23606797749979},"232":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":2.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"96":{"tf":2.0},"97":{"tf":1.7320508075688772}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"178":{"tf":2.23606797749979},"180":{"tf":3.872983346207417}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"212":{"tf":1.0},"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"160":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"201":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"t":{"a":{"df":12,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"127":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"25":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"110":{"tf":1.4142135623730951},"15":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":2.23606797749979},"163":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"210":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":45,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":3.1622776601683795},"109":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":3.0},"40":{"tf":3.0},"41":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"233":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"139":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"36":{"tf":1.0},"41":{"tf":2.449489742783178},"43":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"177":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.23606797749979},"211":{"tf":1.0},"231":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"182":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.4142135623730951},"155":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"142":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"c":{"df":6,"docs":{"15":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.23606797749979},"30":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"15":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":3.0},"30":{"tf":2.449489742783178},"31":{"tf":1.0},"45":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":1,"docs":{"192":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"232":{"tf":1.0},"27":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"214":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":24,"docs":{"100":{"tf":1.0},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"161":{"tf":2.8284271247461903},"168":{"tf":1.0},"172":{"tf":2.8284271247461903},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.23606797749979}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"172":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":1.0},"208":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"187":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":13,"docs":{"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"155":{"tf":1.0},"188":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"130":{"tf":2.0},"132":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"212":{"tf":2.8284271247461903},"214":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"9":{"tf":1.0},"95":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"178":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":2.0},"116":{"tf":1.4142135623730951},"160":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"228":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":12,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"142":{"tf":1.0},"163":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.8284271247461903},"91":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"168":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.0},"22":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":2,"docs":{"139":{"tf":1.4142135623730951},"230":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"162":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"202":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"182":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"201":{"tf":3.3166247903554},"202":{"tf":1.7320508075688772},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":23,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"208":{"tf":1.0},"76":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"228":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":49,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":2.8284271247461903},"204":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":22,"docs":{"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":2.0},"202":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":5,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"138":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"125":{"tf":1.0},"162":{"tf":1.4142135623730951},"193":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"160":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"214":{"tf":1.0}}}},"s":{"df":2,"docs":{"185":{"tf":1.0},"202":{"tf":1.0}}}},"r":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"126":{"tf":3.605551275463989},"128":{"tf":2.23606797749979},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":3.0},"88":{"tf":3.1622776601683795},"89":{"tf":1.0},"90":{"tf":2.449489742783178},"91":{"tf":3.1622776601683795},"92":{"tf":2.0},"93":{"tf":3.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"225":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"122":{"tf":1.0},"172":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.8284271247461903},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"s":{"df":9,"docs":{"126":{"tf":1.0},"132":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"178":{"tf":2.449489742783178},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}},"_":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":37,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":20,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":41,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}}},"x":{"df":4,"docs":{"163":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"30":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}},"s":{"df":2,"docs":{"170":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"!":{"(":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.0}}}},"df":2,"docs":{"174":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":2,"docs":{"202":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"186":{"tf":1.0},"209":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"213":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"55":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":3,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"(":{"_":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":82,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"141":{"tf":3.605551275463989},"142":{"tf":3.3166247903554},"143":{"tf":2.6457513110645907},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":3.1622776601683795},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.449489742783178},"219":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.0},"77":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":2.8284271247461903}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"186":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":73,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":3.0},"148":{"tf":2.0},"150":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"g":{"a":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"204":{"tf":1.0},"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"167":{"tf":2.23606797749979},"168":{"tf":3.3166247903554},"169":{"tf":2.0},"170":{"tf":3.1622776601683795},"171":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"185":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"50":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"161":{"tf":1.0},"175":{"tf":1.0},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"204":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"df":9,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"57":{"tf":1.0},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0}},"n":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"86":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"155":{"tf":1.0},"62":{"tf":1.0}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"139":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"141":{"tf":1.0},"25":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":27,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"178":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"l":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"122":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"161":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"18":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"182":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"73":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":3,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"`":{"]":{"(":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":5,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"211":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"n":{"c":{"df":3,"docs":{"121":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"64":{"tf":1.0},"93":{"tf":1.0}}},"df":13,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"171":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"146":{"tf":3.4641016151377544},"147":{"tf":3.3166247903554},"148":{"tf":3.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"\"":{"\"":{">":{"0":{"df":0,"docs":{},"x":{"1":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{">":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"/":{"a":{">":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"<":{"/":{"a":{">":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"'":{"df":1,"docs":{"182":{"tf":1.0}}},"df":19,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"185":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979}},"e":{"a":{"df":4,"docs":{"11":{"tf":2.0},"199":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"101":{"tf":2.449489742783178},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"234":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"163":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":2.0},"34":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"230":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":37,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":2.6457513110645907},"105":{"tf":3.7416573867739413},"106":{"tf":2.449489742783178},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"25":{"tf":2.8284271247461903},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":13,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"170":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"122":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"122":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":9,"docs":{"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"180":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"172":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"188":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"5":{"tf":1.0},"6":{"tf":2.23606797749979},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}},"n":{"c":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":2.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"137":{"tf":1.0},"159":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":2.0},"51":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":2.449489742783178},"184":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"'":{"df":10,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":7,"docs":{"133":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":2.8284271247461903},"188":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":2.449489742783178}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"221":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":20,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.7320508075688772},"188":{"tf":3.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.7320508075688772},"212":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"200":{"tf":1.0},"209":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"'":{"df":22,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"133":{"tf":1.0},"141":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"2":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":3.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":9,"docs":{"129":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":2.0}}},"k":{"df":4,"docs":{"173":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"52":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":3.605551275463989}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":2.0},"147":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"128":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"161":{"tf":1.0},"217":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0}}},"p":{"df":8,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":3.0},"128":{"tf":2.8284271247461903},"129":{"tf":3.605551275463989},"130":{"tf":3.872983346207417},"131":{"tf":2.449489742783178},"209":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"178":{"tf":2.0},"180":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"138":{"tf":2.0},"217":{"tf":2.23606797749979}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"208":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":2,"docs":{"146":{"tf":2.0},"148":{"tf":1.4142135623730951}},"g":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"3":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"188":{"tf":2.6457513110645907},"189":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":3,"docs":{"19":{"tf":1.0},"199":{"tf":1.0},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"169":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"170":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"227":{"tf":2.0},"228":{"tf":1.7320508075688772}}}}}}}},"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"117":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"111":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"202":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"19":{"tf":1.0},"29":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"130":{"tf":1.0},"15":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"57":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"66":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"170":{"tf":2.0},"188":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"138":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":3.0},"147":{"tf":3.872983346207417},"148":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"4":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":3.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"171":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"141":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":2.23606797749979},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"222":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":93,"docs":{"101":{"tf":1.0},"102":{"tf":2.6457513110645907},"103":{"tf":3.1622776601683795},"104":{"tf":3.0},"105":{"tf":3.7416573867739413},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":1.0},"141":{"tf":2.449489742783178},"143":{"tf":2.23606797749979},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.23606797749979},"149":{"tf":2.6457513110645907},"15":{"tf":1.0},"150":{"tf":2.449489742783178},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"18":{"tf":2.6457513110645907},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":3.1622776601683795},"191":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"30":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":3.0},"70":{"tf":3.872983346207417},"71":{"tf":2.449489742783178},"72":{"tf":2.6457513110645907},"73":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"_":{"a":{"df":2,"docs":{"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":33,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"101":{"tf":1.0},"162":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"199":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"4":{":":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":98,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":2.449489742783178},"150":{"tf":1.0},"154":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"167":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.8284271247461903},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"127":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"169":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"144":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"180":{"tf":2.449489742783178},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"120":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.23606797749979},"107":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"147":{"tf":2.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":2.23606797749979},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"229":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":2.449489742783178},"97":{"tf":3.1622776601683795}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"126":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"11":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"185":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"162":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"18":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"78":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"115":{"tf":1.7320508075688772},"189":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"108":{"tf":1.0},"121":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"166":{"tf":1.4142135623730951},"43":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"68":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"114":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.4142135623730951},"187":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"78":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"89":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":36,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"220":{"tf":2.23606797749979},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"225":{"tf":2.6457513110645907},"227":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":2.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":3.0},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":2.8284271247461903},"63":{"tf":2.449489742783178},"64":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"186":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"188":{"tf":1.0},"220":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"c":{"df":7,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"231":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0}}},"df":18,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"202":{"tf":1.0},"225":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":2.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"2":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":30,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.0},"90":{"tf":2.449489742783178},"96":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"122":{"tf":1.0}}}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}},"u":{"1":{"6":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"110":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":2.449489742783178},"118":{"tf":3.1622776601683795},"126":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"169":{"tf":1.4142135623730951},"226":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"159":{"tf":1.0},"23":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":7,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"233":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"128":{"tf":1.0},"230":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"223":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"155":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"178":{"tf":1.0},"180":{"tf":1.0},"220":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":50,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.6457513110645907},"111":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":3.1622776601683795},"33":{"tf":2.8284271247461903},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.0},"169":{"tf":3.0},"188":{"tf":2.23606797749979},"39":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":3.3166247903554},"172":{"tf":2.8284271247461903},"184":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"142":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"t":{"df":14,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.0},"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"163":{"tf":3.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"17":{"tf":1.0},"178":{"tf":2.449489742783178},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"122":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"229":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.0},"230":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"144":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"201":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.4142135623730951},"29":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":4.123105625617661},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":2.8284271247461903},"64":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"170":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"105":{"tf":1.0},"117":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"210":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{">":{"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"b":{">":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"182":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"194":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"223":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":9,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"162":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"133":{"tf":1.4142135623730951},"163":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"116":{"tf":1.0},"161":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"178":{"tf":1.7320508075688772},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":26,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":35,"docs":{"177":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"199":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"d":{"df":19,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":52,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":3.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":9,"docs":{"199":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"163":{"tf":2.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"139":{"tf":1.0},"226":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"160":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"189":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"140":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":6,"docs":{"117":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":2.8284271247461903},"98":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"79":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"162":{"tf":2.23606797749979},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"202":{"tf":2.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"110":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"181":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":1,"docs":{"107":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":1.0},"38":{"tf":1.4142135623730951},"5":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"201":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"130":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":2.6457513110645907},"26":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"188":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":14,"docs":{"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"2":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"147":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.0},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"223":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":38,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":3.7416573867739413},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"144":{"tf":2.6457513110645907},"146":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"49":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}}},"v":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"25":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772}}}},"n":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"110":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":3,"docs":{"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"223":{"tf":1.0},"84":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"129":{"tf":1.0},"163":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":13,"docs":{"154":{"tf":2.6457513110645907},"155":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":2.8284271247461903},"159":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"169":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":2.0},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":16,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}},"df":6,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"182":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"3":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":3.1622776601683795},"188":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"170":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"220":{"tf":1.4142135623730951},"233":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"76":{"tf":1.0}},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"182":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}},"df":3,"docs":{"182":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"112":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"131":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"221":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":25,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"194":{"tf":1.0},"224":{"tf":2.449489742783178},"225":{"tf":2.0},"226":{"tf":1.7320508075688772},"46":{"tf":1.0},"81":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.6457513110645907},"3":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"29":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"130":{"tf":1.0},"77":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":2.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"181":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"104":{"tf":1.0},"178":{"tf":1.0},"220":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":11,"docs":{"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"17":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":19,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"131":{"tf":1.0},"16":{"tf":1.0},"182":{"tf":1.4142135623730951},"201":{"tf":1.0},"217":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":2.23606797749979},"142":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"208":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"25":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"130":{"tf":1.0},"217":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":7,"docs":{"121":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}},"l":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"119":{"tf":3.3166247903554},"120":{"tf":3.0},"121":{"tf":3.3166247903554},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"18":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"46":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":2.8284271247461903},"147":{"tf":3.4641016151377544},"148":{"tf":2.6457513110645907},"150":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"214":{"tf":2.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"77":{"tf":1.7320508075688772},"94":{"tf":2.0},"95":{"tf":3.872983346207417},"96":{"tf":3.4641016151377544},"97":{"tf":3.1622776601683795},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":2.6457513110645907}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"158":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":57,"docs":{"107":{"tf":2.0},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"119":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"55":{"tf":2.23606797749979},"56":{"tf":2.8284271247461903},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"222":{"tf":1.0}}}},"m":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"y":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"145":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":113,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"215":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"46":{"tf":1.7320508075688772},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}}}},"df":15,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"141":{"tf":1.7320508075688772},"178":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"230":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}},"n":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":7,"docs":{"168":{"tf":2.6457513110645907},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":1,"docs":{"126":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"196":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":51,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"21":{"tf":4.358898943540674},"22":{"tf":4.795831523312719},"23":{"tf":3.7416573867739413},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"159":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"232":{"tf":1.0},"29":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"155":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"126":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"16":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"202":{"tf":2.8284271247461903},"203":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":3,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}}},"l":{"df":3,"docs":{"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"25":{"tf":1.0},"61":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"178":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":30,"docs":{"119":{"tf":1.4142135623730951},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":4.123105625617661},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"52":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"27":{"tf":1.0}}}},"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"180":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"122":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":2.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"169":{"tf":2.0},"171":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":11,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"2":{"df":1,"docs":{"99":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":77,"docs":{"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":2.449489742783178},"115":{"tf":2.0},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":3.4641016151377544},"169":{"tf":4.123105625617661},"170":{"tf":2.6457513110645907},"171":{"tf":4.47213595499958},"172":{"tf":3.3166247903554},"174":{"tf":2.8284271247461903},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"22":{"tf":1.0},"233":{"tf":1.7320508075688772},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":3.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":3.1622776601683795},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":5,"docs":{"180":{"tf":1.0},"221":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":17,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"163":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"92":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":2.8284271247461903}},"i":{"d":{"df":12,"docs":{"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":2,"docs":{"120":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"154":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":12,"docs":{"105":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":9,"docs":{"141":{"tf":1.0},"197":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}},"x":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"132":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"144":{"tf":1.0},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.4142135623730951}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"170":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":8,"docs":{"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"39":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}},"df":145,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":2.0},"15":{"tf":1.0},"150":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":2.23606797749979},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"59":{"tf":2.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.23606797749979},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":2.0},"138":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"117":{"tf":2.449489742783178},"126":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"127":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":3.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.4142135623730951},"232":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"113":{"tf":1.0},"122":{"tf":2.6457513110645907},"142":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":61,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.6457513110645907},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":3.0},"202":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"117":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"170":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"210":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"215":{"tf":1.0},"89":{"tf":1.0}},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"188":{"tf":1.0},"221":{"tf":1.0}}}}}},"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"89":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":14,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"113":{"tf":4.123105625617661},"114":{"tf":2.8284271247461903},"115":{"tf":2.8284271247461903},"116":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"127":{"tf":1.0},"148":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"226":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.7320508075688772},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":3.7416573867739413},"221":{"tf":2.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"df":8,"docs":{"107":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"63":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"147":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"141":{"tf":1.0},"149":{"tf":2.6457513110645907},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"182":{"tf":1.0},"229":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"113":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"y":{"df":28,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"v":{"df":4,"docs":{"128":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"208":{"tf":1.0},"21":{"tf":1.0},"93":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"230":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"189":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"223":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":1.7320508075688772},"172":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"233":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"202":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":16,"docs":{"121":{"tf":1.4142135623730951},"129":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0}}},"l":{"d":{"df":15,"docs":{"121":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"120":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"185":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"126":{"tf":2.449489742783178},"128":{"tf":2.449489742783178},"129":{"tf":2.449489742783178},"130":{"tf":2.6457513110645907},"131":{"tf":2.8284271247461903},"132":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"y":{"df":7,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}},"df":1,"docs":{"80":{"tf":1.0}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"46":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"0":{"2":{"4":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.0}}},"3":{"df":1,"docs":{"232":{"tf":1.0}}},"8":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"160":{"tf":1.0},"234":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"231":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"185":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":4,"docs":{"107":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"138":{"tf":1.0},"232":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"158":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"223":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"231":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"29":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"206":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"227":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"193":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"43":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"231":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"101":{"tf":1.0},"161":{"tf":1.0},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"139":{"tf":1.0},"229":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"54":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"125":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.0},"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"152":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"140":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"185":{"tf":1.0},"205":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"210":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.0},"55":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"25":{"tf":1.0},"61":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"k":{"df":2,"docs":{"35":{"tf":1.0},"45":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":10,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"211":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"169":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"164":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"134":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"212":{"tf":1.0},"25":{"tf":1.0},"56":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"179":{"tf":1.0},"192":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"215":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"116":{"tf":1.0},"118":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"108":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"157":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"117":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"140":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"106":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"232":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"198":{"tf":1.0},"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"154":{"tf":1.0},"158":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"190":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"146":{"tf":1.0},"168":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":7,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"224":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"115":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"26":{"tf":1.0}}}},"df":7,"docs":{"118":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/sui/searchindex.json b/sui/searchindex.json new file mode 100644 index 00000000..e4115955 --- /dev/null +++ b/sui/searchindex.json @@ -0,0 +1 @@ +{"doc_urls":["introduction.html#introduction","foreword.html#foreword","history.html#history","before-we-begin/index.html#before-we-begin","before-we-begin/install-sui.html#install-sui","before-we-begin/install-sui.html#download-binary","before-we-begin/install-sui.html#install-using-homebrew-macos","before-we-begin/install-sui.html#build-using-cargo-macos-linux","before-we-begin/install-sui.html#troubleshooting","before-we-begin/ide-support.html#set-up-your-ide","before-we-begin/ide-support.html#vscode","before-we-begin/ide-support.html#intellij-idea","before-we-begin/ide-support.html#emacs","before-we-begin/ide-support.html#github-codespaces","before-we-begin/move-2024.html#move-2024","your-first-move/index.html#your-first-move","your-first-move/hello-world.html#hello-world","your-first-move/hello-world.html#initialize-a-project","your-first-move/hello-world.html#create-a-module","your-first-move/hello-world.html#dive-into-the-code","your-first-move/hello-world.html#compile-the-package","your-first-move/adding-tests.html#adding-tests","your-first-move/adding-tests.html#your-first-test","your-first-move/adding-tests.html#failed-experiment","your-first-move/debugging.html#debugging","your-first-move/debugging.html#new-import","your-first-move/debugging.html#correct-usage","your-first-move/debugging.html#hint","your-first-move/generating-docs.html#generating-documentation","your-first-move/generating-docs.html#adding-documentation-comments","your-first-move/generating-docs.html#generating-documentation-1","concepts/index.html#concepts","concepts/packages.html#packages","concepts/packages.html#package-structure","concepts/packages.html#published-package","concepts/packages.html#links","concepts/manifest.html#package-manifest","concepts/manifest.html#sections","concepts/manifest.html#package","concepts/manifest.html#dependencies","concepts/manifest.html#resolving-version-conflicts-with-override","concepts/manifest.html#dev-dependencies","concepts/manifest.html#addresses","concepts/manifest.html#dev-addresses","concepts/manifest.html#toml-styles","concepts/manifest.html#links","concepts/address.html#addresses","concepts/address.html#further-reading","concepts/modules.html#module","concepts/user-interaction.html#interacting-with-a-package","concepts/what-is-an-account.html#account","concepts/what-is-a-transaction.html#transaction","concepts/what-is-a-transaction.html#transaction-structure","concepts/object-model.html#object-model","hello-sui/index.html#your-first-sui-app","hello-sui/hello-sui.html#hello-sui","hello-sui/hello-sui.html#create-a-new-sui-package","hello-sui/hello-sui.html#implement-the-postcard-application","hello-sui/hello-sui.html#next-steps","hello-sui/module-structure.html#using-objects","hello-sui/module-structure.html#module","hello-sui/module-structure.html#imports","hello-sui/module-structure.html#postcard-is-an-object","hello-sui/module-structure.html#creating-an-object","hello-sui/module-structure.html#sending-a-postcard","hello-sui/module-structure.html#keeping-the-object","hello-sui/module-structure.html#updating-the-object","hello-sui/module-structure.html#next-steps","basic-syntax/index.html#getting-ready","basic-syntax/module.html#module","basic-syntax/module.html#module-declaration","basic-syntax/module.html#address--named-address","basic-syntax/module.html#module-members","basic-syntax/module.html#address-block","basic-syntax/comments.html#comments","basic-syntax/comments.html#line-comment","basic-syntax/comments.html#block-comment","basic-syntax/comments.html#doc-comment","basic-syntax/primitive-types.html#primitive-types","basic-syntax/primitive-types.html#variables-and-assignment","basic-syntax/primitive-types.html#booleans","basic-syntax/primitive-types.html#integer-types","basic-syntax/primitive-types.html#operations","basic-syntax/primitive-types.html#casting-with-as","basic-syntax/primitive-types.html#overflow","basic-syntax/address.html#address-type","basic-syntax/address.html#conversion","basic-syntax/expression.html#expression","basic-syntax/expression.html#empty-expression","basic-syntax/expression.html#literals","basic-syntax/expression.html#operators","basic-syntax/expression.html#blocks","basic-syntax/expression.html#function-calls","basic-syntax/expression.html#control-flow-expressions","basic-syntax/struct.html#custom-types-with-struct","basic-syntax/struct.html#struct","basic-syntax/struct.html#create-and-use-an-instance","basic-syntax/struct.html#unpacking-a-struct","basic-syntax/drop-ability.html#abilities-drop","basic-syntax/drop-ability.html#abilities-syntax","basic-syntax/drop-ability.html#no-abilities","basic-syntax/drop-ability.html#drop-ability","basic-syntax/importing-modules.html#importing-modules","basic-syntax/importing-modules.html#importing-a-module","basic-syntax/importing-modules.html#importing-members","basic-syntax/importing-modules.html#grouping-imports","basic-syntax/importing-modules.html#resolving-name-conflicts","basic-syntax/importing-modules.html#adding-an-external-dependency","basic-syntax/importing-modules.html#importing-a-module-from-another-package","basic-syntax/standard-library.html#standard-library","basic-syntax/standard-library.html#most-common-modules","basic-syntax/standard-library.html#importing-std-without-sui-framework","basic-syntax/vector.html#vector","basic-syntax/vector.html#vector-syntax","basic-syntax/vector.html#vector-operations","basic-syntax/vector.html#destroying-a-vector-of-non-droppable-types","basic-syntax/option.html#option","basic-syntax/option.html#in-practice","basic-syntax/option.html#using-option","basic-syntax/string.html#string","basic-syntax/string.html#strings-are-bytes","basic-syntax/string.html#working-with-utf-8-strings","basic-syntax/string.html#safe-utf-8-operations","basic-syntax/string.html#ascii-strings","basic-syntax/string.html#summary","basic-syntax/control-flow.html#control-flow","basic-syntax/control-flow.html#conditional-statements","basic-syntax/control-flow.html#repeating-statements-with-loops","basic-syntax/control-flow.html#the-while-loop","basic-syntax/control-flow.html#infinite-loop","basic-syntax/control-flow.html#exiting-a-loop-early","basic-syntax/control-flow.html#skipping-an-iteration","basic-syntax/control-flow.html#return","basic-syntax/constants.html#constants","basic-syntax/constants.html#naming-convention","basic-syntax/constants.html#constants-are-immutable","basic-syntax/assert-and-abort.html#assert-and-abort","basic-syntax/assert-and-abort.html#abort","basic-syntax/assert-and-abort.html#assert","basic-syntax/assert-and-abort.html#error-constants","basic-syntax/assert-and-abort.html#further-reading","basic-syntax/function.html#function","basic-syntax/function.html#function-declaration","basic-syntax/function.html#accessing-functions","basic-syntax/function.html#multiple-return-values","basic-syntax/struct-methods.html#struct-methods","basic-syntax/struct-methods.html#method-syntax","basic-syntax/struct-methods.html#method-aliases","basic-syntax/struct-methods.html#aliasing-an-external-modules-method","basic-syntax/visibility.html#visibility-modifiers","basic-syntax/visibility.html#internal-visibility","basic-syntax/visibility.html#public-visibility","basic-syntax/visibility.html#friend-visibility","basic-syntax/visibility.html#package-visibility","basic-syntax/ownership-and-scope.html#ownership-and-scope","basic-syntax/ownership-and-scope.html#ownership","basic-syntax/ownership-and-scope.html#returning-a-value","basic-syntax/ownership-and-scope.html#passing-by-value","basic-syntax/ownership-and-scope.html#scopes-with-blocks","basic-syntax/ownership-and-scope.html#copyable-types","basic-syntax/copy-ability.html#abilities-copy","basic-syntax/copy-ability.html#copying-and-drop","basic-syntax/references.html#references","basic-syntax/references.html#reference","basic-syntax/references.html#mutable-references","basic-syntax/references.html#dereference-and-copy","basic-syntax/references.html#notes","basic-syntax/generics.html#generics","basic-syntax/generics.html#generic-syntax","basic-syntax/generics.html#multiple-type-parameters","basic-syntax/generics.html#why-generics","basic-syntax/generics.html#phantom-type-parameters","basic-syntax/generics.html#constraints-on-type-parameters","basic-syntax/generics.html#further-reading","basic-syntax/type-reflection.html#type-reflection","basic-syntax/type-reflection.html#in-practice","basic-syntax/type-reflection.html#further-reading","programmability/index.html#advanced-programmability","programmability/fast-path.html#fast-path","programmability/fast-path.html#frozen-objects","programmability/fast-path.html#in-practice","programmability/fast-path.html#special-case-clock","programmability/transaction-context.html#transaction-context","programmability/transaction-context.html#reading-the-transaction-context","programmability/transaction-context.html#mutability","programmability/transaction-context.html#generating-unique-addresses","programmability/collections.html#collections","programmability/collections.html#vecset","programmability/collections.html#vecmap","programmability/dynamic-fields.html#dynamic-fields","programmability/dynamic-fields.html#structure","programmability/dynamic-fields.html#usage","programmability/dynamic-fields.html#dynamic-object-fields","programmability/dynamic-fields.html#custom-fields-for-keys","programmability/dynamic-fields.html#applications","programmability/testing.html#testing","programmability/testing.html#test-and-test_only","programmability/testing.html#unit-testing-with-dummy-context","programmability/testing.html#utilizing-the-test-scenario","programmability/testing.html#adding-examples","programmability/epoch-and-time.html#epoch-and-time","programmability/epoch-and-time.html#epoch","programmability/epoch-and-time.html#time","programmability/epoch-and-time.html#testing","programmability/witness-and-abstract-implementation.html#abstract-class","programmability/witness-and-abstract-implementation.html#generic-struct","programmability/witness-and-abstract-implementation.html#common-methods","programmability/witness-and-abstract-implementation.html#witness-gated-functions","programmability/witness-and-abstract-implementation.html#differences-from-oop","programmability/witness-and-abstract-implementation.html#usage-in-sui-framework","guides/index.html#guides","guides/2024-migration-guide.html#move-2024-migration-guide","guides/2024-migration-guide.html#using-the-new-edition","guides/2024-migration-guide.html#struct-visibility","guides/2024-migration-guide.html#struct-methods","guides/2024-migration-guide.html#borrowing-operator","guides/2024-migration-guide.html#method-aliases","guides/2024-migration-guide.html#macros","guides/upgradeability-practices.html#upgradability-practices","guides/upgradeability-practices.html#using-entry-and-friend-functions","guides/upgradeability-practices.html#versioning-objects","guides/upgradeability-practices.html#versioning-configuration-with-dynamic-fields","guides/upgradeability-practices.html#modular-architecture","guides/building-against-limits.html#building-against-limits","guides/building-against-limits.html#transaction-size","guides/building-against-limits.html#object-size","guides/building-against-limits.html#single-pure-argument-size","guides/building-against-limits.html#maximum-number-of-objects-created","guides/building-against-limits.html#maximum-number-of-events","guides/better-error-handling.html#better-error-handling","guides/better-error-handling.html#rule-1-handle-all-possible-scenarios","guides/better-error-handling.html#rule-2-abort-with-different-codes","guides/better-error-handling.html#rule-3-return-bool-instead-of-assert","appendix/glossary.html#glossary","appendix/glossary.html#abilities"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":23,"breadcrumbs":6,"title":1},"100":{"body":38,"breadcrumbs":5,"title":1},"101":{"body":133,"breadcrumbs":6,"title":2},"102":{"body":30,"breadcrumbs":6,"title":2},"103":{"body":63,"breadcrumbs":6,"title":2},"104":{"body":46,"breadcrumbs":6,"title":2},"105":{"body":109,"breadcrumbs":6,"title":2},"106":{"body":60,"breadcrumbs":7,"title":3},"107":{"body":87,"breadcrumbs":7,"title":3},"108":{"body":71,"breadcrumbs":8,"title":4},"109":{"body":22,"breadcrumbs":6,"title":2},"11":{"body":16,"breadcrumbs":7,"title":2},"110":{"body":77,"breadcrumbs":6,"title":2},"111":{"body":28,"breadcrumbs":9,"title":5},"112":{"body":18,"breadcrumbs":4,"title":1},"113":{"body":78,"breadcrumbs":5,"title":2},"114":{"body":56,"breadcrumbs":5,"title":2},"115":{"body":43,"breadcrumbs":8,"title":5},"116":{"body":80,"breadcrumbs":4,"title":1},"117":{"body":115,"breadcrumbs":4,"title":1},"118":{"body":54,"breadcrumbs":5,"title":2},"119":{"body":38,"breadcrumbs":4,"title":1},"12":{"body":13,"breadcrumbs":6,"title":1},"120":{"body":71,"breadcrumbs":5,"title":2},"121":{"body":60,"breadcrumbs":7,"title":4},"122":{"body":77,"breadcrumbs":7,"title":4},"123":{"body":3,"breadcrumbs":5,"title":2},"124":{"body":2,"breadcrumbs":4,"title":1},"125":{"body":48,"breadcrumbs":6,"title":2},"126":{"body":135,"breadcrumbs":6,"title":2},"127":{"body":58,"breadcrumbs":7,"title":3},"128":{"body":104,"breadcrumbs":5,"title":1},"129":{"body":98,"breadcrumbs":6,"title":2},"13":{"body":19,"breadcrumbs":7,"title":2},"130":{"body":99,"breadcrumbs":7,"title":3},"131":{"body":85,"breadcrumbs":6,"title":2},"132":{"body":86,"breadcrumbs":5,"title":1},"133":{"body":57,"breadcrumbs":4,"title":1},"134":{"body":25,"breadcrumbs":5,"title":2},"135":{"body":23,"breadcrumbs":5,"title":2},"136":{"body":0,"breadcrumbs":6,"title":2},"137":{"body":36,"breadcrumbs":5,"title":1},"138":{"body":41,"breadcrumbs":5,"title":1},"139":{"body":60,"breadcrumbs":6,"title":2},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":12,"breadcrumbs":6,"title":2},"141":{"body":98,"breadcrumbs":4,"title":1},"142":{"body":56,"breadcrumbs":5,"title":2},"143":{"body":40,"breadcrumbs":5,"title":2},"144":{"body":78,"breadcrumbs":6,"title":3},"145":{"body":23,"breadcrumbs":6,"title":2},"146":{"body":111,"breadcrumbs":6,"title":2},"147":{"body":191,"breadcrumbs":6,"title":2},"148":{"body":95,"breadcrumbs":8,"title":4},"149":{"body":35,"breadcrumbs":6,"title":2},"15":{"body":69,"breadcrumbs":4,"title":2},"150":{"body":41,"breadcrumbs":6,"title":2},"151":{"body":3,"breadcrumbs":6,"title":2},"152":{"body":3,"breadcrumbs":6,"title":2},"153":{"body":3,"breadcrumbs":6,"title":2},"154":{"body":25,"breadcrumbs":6,"title":2},"155":{"body":58,"breadcrumbs":5,"title":1},"156":{"body":29,"breadcrumbs":6,"title":2},"157":{"body":43,"breadcrumbs":6,"title":2},"158":{"body":98,"breadcrumbs":6,"title":2},"159":{"body":31,"breadcrumbs":6,"title":2},"16":{"body":14,"breadcrumbs":6,"title":2},"160":{"body":92,"breadcrumbs":6,"title":2},"161":{"body":49,"breadcrumbs":6,"title":2},"162":{"body":27,"breadcrumbs":4,"title":1},"163":{"body":180,"breadcrumbs":4,"title":1},"164":{"body":0,"breadcrumbs":5,"title":2},"165":{"body":0,"breadcrumbs":5,"title":2},"166":{"body":0,"breadcrumbs":4,"title":1},"167":{"body":30,"breadcrumbs":4,"title":1},"168":{"body":118,"breadcrumbs":5,"title":2},"169":{"body":151,"breadcrumbs":6,"title":3},"17":{"body":102,"breadcrumbs":6,"title":2},"170":{"body":101,"breadcrumbs":4,"title":1},"171":{"body":112,"breadcrumbs":6,"title":3},"172":{"body":89,"breadcrumbs":6,"title":3},"173":{"body":3,"breadcrumbs":5,"title":2},"174":{"body":49,"breadcrumbs":6,"title":2},"175":{"body":67,"breadcrumbs":5,"title":1},"176":{"body":10,"breadcrumbs":6,"title":2},"177":{"body":43,"breadcrumbs":4,"title":2},"178":{"body":110,"breadcrumbs":6,"title":2},"179":{"body":23,"breadcrumbs":6,"title":2},"18":{"body":70,"breadcrumbs":6,"title":2},"180":{"body":117,"breadcrumbs":5,"title":1},"181":{"body":24,"breadcrumbs":7,"title":3},"182":{"body":121,"breadcrumbs":6,"title":2},"183":{"body":28,"breadcrumbs":7,"title":3},"184":{"body":47,"breadcrumbs":5,"title":1},"185":{"body":57,"breadcrumbs":7,"title":3},"186":{"body":28,"breadcrumbs":4,"title":1},"187":{"body":76,"breadcrumbs":4,"title":1},"188":{"body":102,"breadcrumbs":4,"title":1},"189":{"body":34,"breadcrumbs":6,"title":2},"19":{"body":115,"breadcrumbs":6,"title":2},"190":{"body":24,"breadcrumbs":5,"title":1},"191":{"body":24,"breadcrumbs":5,"title":1},"192":{"body":7,"breadcrumbs":7,"title":3},"193":{"body":5,"breadcrumbs":7,"title":3},"194":{"body":27,"breadcrumbs":5,"title":1},"195":{"body":0,"breadcrumbs":4,"title":1},"196":{"body":0,"breadcrumbs":5,"title":2},"197":{"body":0,"breadcrumbs":7,"title":4},"198":{"body":0,"breadcrumbs":6,"title":3},"199":{"body":49,"breadcrumbs":5,"title":2},"2":{"body":20,"breadcrumbs":2,"title":1},"20":{"body":40,"breadcrumbs":6,"title":2},"200":{"body":28,"breadcrumbs":6,"title":2},"201":{"body":74,"breadcrumbs":5,"title":1},"202":{"body":143,"breadcrumbs":5,"title":1},"203":{"body":4,"breadcrumbs":5,"title":1},"204":{"body":73,"breadcrumbs":7,"title":2},"205":{"body":0,"breadcrumbs":7,"title":2},"206":{"body":0,"breadcrumbs":7,"title":2},"207":{"body":0,"breadcrumbs":8,"title":3},"208":{"body":44,"breadcrumbs":7,"title":2},"209":{"body":25,"breadcrumbs":8,"title":3},"21":{"body":90,"breadcrumbs":6,"title":2},"210":{"body":21,"breadcrumbs":2,"title":1},"211":{"body":21,"breadcrumbs":8,"title":4},"212":{"body":21,"breadcrumbs":7,"title":3},"213":{"body":19,"breadcrumbs":6,"title":2},"214":{"body":36,"breadcrumbs":6,"title":2},"215":{"body":28,"breadcrumbs":6,"title":2},"216":{"body":20,"breadcrumbs":6,"title":2},"217":{"body":30,"breadcrumbs":5,"title":1},"218":{"body":111,"breadcrumbs":5,"title":2},"219":{"body":6,"breadcrumbs":7,"title":4},"22":{"body":163,"breadcrumbs":6,"title":2},"220":{"body":69,"breadcrumbs":5,"title":2},"221":{"body":58,"breadcrumbs":7,"title":4},"222":{"body":12,"breadcrumbs":5,"title":2},"223":{"body":45,"breadcrumbs":7,"title":3},"224":{"body":19,"breadcrumbs":6,"title":2},"225":{"body":32,"breadcrumbs":6,"title":2},"226":{"body":43,"breadcrumbs":8,"title":4},"227":{"body":30,"breadcrumbs":8,"title":4},"228":{"body":14,"breadcrumbs":7,"title":3},"229":{"body":101,"breadcrumbs":7,"title":3},"23":{"body":108,"breadcrumbs":6,"title":2},"230":{"body":71,"breadcrumbs":9,"title":5},"231":{"body":82,"breadcrumbs":9,"title":5},"232":{"body":111,"breadcrumbs":10,"title":6},"233":{"body":31,"breadcrumbs":3,"title":1},"234":{"body":70,"breadcrumbs":3,"title":1},"24":{"body":32,"breadcrumbs":4,"title":1},"25":{"body":148,"breadcrumbs":5,"title":2},"26":{"body":22,"breadcrumbs":5,"title":2},"27":{"body":43,"breadcrumbs":4,"title":1},"28":{"body":20,"breadcrumbs":6,"title":2},"29":{"body":93,"breadcrumbs":7,"title":3},"3":{"body":22,"breadcrumbs":4,"title":2},"30":{"body":101,"breadcrumbs":6,"title":2},"31":{"body":30,"breadcrumbs":2,"title":1},"32":{"body":66,"breadcrumbs":3,"title":1},"33":{"body":52,"breadcrumbs":4,"title":2},"34":{"body":31,"breadcrumbs":4,"title":2},"35":{"body":5,"breadcrumbs":3,"title":1},"36":{"body":42,"breadcrumbs":4,"title":2},"37":{"body":0,"breadcrumbs":3,"title":1},"38":{"body":36,"breadcrumbs":3,"title":1},"39":{"body":59,"breadcrumbs":3,"title":1},"4":{"body":20,"breadcrumbs":6,"title":2},"40":{"body":45,"breadcrumbs":6,"title":4},"41":{"body":28,"breadcrumbs":4,"title":2},"42":{"body":21,"breadcrumbs":3,"title":1},"43":{"body":34,"breadcrumbs":4,"title":2},"44":{"body":56,"breadcrumbs":4,"title":2},"45":{"body":3,"breadcrumbs":3,"title":1},"46":{"body":99,"breadcrumbs":3,"title":1},"47":{"body":3,"breadcrumbs":4,"title":2},"48":{"body":17,"breadcrumbs":3,"title":1},"49":{"body":36,"breadcrumbs":5,"title":2},"5":{"body":18,"breadcrumbs":6,"title":2},"50":{"body":19,"breadcrumbs":3,"title":1},"51":{"body":26,"breadcrumbs":3,"title":1},"52":{"body":26,"breadcrumbs":4,"title":2},"53":{"body":73,"breadcrumbs":5,"title":2},"54":{"body":69,"breadcrumbs":6,"title":3},"55":{"body":19,"breadcrumbs":7,"title":2},"56":{"body":66,"breadcrumbs":9,"title":4},"57":{"body":159,"breadcrumbs":8,"title":3},"58":{"body":18,"breadcrumbs":7,"title":2},"59":{"body":21,"breadcrumbs":7,"title":2},"6":{"body":9,"breadcrumbs":8,"title":4},"60":{"body":22,"breadcrumbs":6,"title":1},"61":{"body":41,"breadcrumbs":6,"title":1},"62":{"body":47,"breadcrumbs":7,"title":2},"63":{"body":80,"breadcrumbs":7,"title":2},"64":{"body":52,"breadcrumbs":7,"title":2},"65":{"body":28,"breadcrumbs":7,"title":2},"66":{"body":34,"breadcrumbs":7,"title":2},"67":{"body":20,"breadcrumbs":7,"title":2},"68":{"body":19,"breadcrumbs":4,"title":2},"69":{"body":24,"breadcrumbs":4,"title":1},"7":{"body":18,"breadcrumbs":9,"title":5},"70":{"body":73,"breadcrumbs":5,"title":2},"71":{"body":32,"breadcrumbs":6,"title":3},"72":{"body":45,"breadcrumbs":5,"title":2},"73":{"body":54,"breadcrumbs":5,"title":2},"74":{"body":36,"breadcrumbs":4,"title":1},"75":{"body":44,"breadcrumbs":5,"title":2},"76":{"body":62,"breadcrumbs":5,"title":2},"77":{"body":48,"breadcrumbs":5,"title":2},"78":{"body":30,"breadcrumbs":6,"title":2},"79":{"body":56,"breadcrumbs":6,"title":2},"8":{"body":8,"breadcrumbs":5,"title":1},"80":{"body":42,"breadcrumbs":5,"title":1},"81":{"body":75,"breadcrumbs":6,"title":2},"82":{"body":59,"breadcrumbs":5,"title":1},"83":{"body":42,"breadcrumbs":5,"title":1},"84":{"body":27,"breadcrumbs":5,"title":1},"85":{"body":68,"breadcrumbs":6,"title":2},"86":{"body":59,"breadcrumbs":5,"title":1},"87":{"body":31,"breadcrumbs":4,"title":1},"88":{"body":46,"breadcrumbs":5,"title":2},"89":{"body":83,"breadcrumbs":4,"title":1},"9":{"body":41,"breadcrumbs":8,"title":3},"90":{"body":37,"breadcrumbs":4,"title":1},"91":{"body":54,"breadcrumbs":4,"title":1},"92":{"body":44,"breadcrumbs":5,"title":2},"93":{"body":42,"breadcrumbs":6,"title":3},"94":{"body":24,"breadcrumbs":6,"title":3},"95":{"body":141,"breadcrumbs":4,"title":1},"96":{"body":97,"breadcrumbs":6,"title":3},"97":{"body":80,"breadcrumbs":5,"title":2},"98":{"body":31,"breadcrumbs":6,"title":2},"99":{"body":49,"breadcrumbs":6,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Foreword » Foreword","id":"1","title":"Foreword"},"10":{"body":"VSCode is a free and open source IDE from Microsoft. Move Analyzer is a language server extension for Move maintained by MystenLabs . Move Syntax a simple syntax highlighting extension for Move by Damir Shamanaev .","breadcrumbs":"Before we begin » Set up your IDE » VSCode","id":"10","title":"VSCode"},"100":{"body":"A struct without abilities cannot be discarded, or copied, or stored in the storage. We call such a struct a Hot Potato . It is a joke, but it is also a good way to remember that a struct without abilities is like a hot potato - it needs to be passed around and handled properly. Hot Potato is one of the most powerful patterns in Move, we go in detail about it in the TODO: authorization patterns chapter.","breadcrumbs":"Syntax Basics » Abilities: Drop » No abilities","id":"100","title":"No abilities"},"101":{"body":"The drop ability - the simplest of them - allows the instance of a struct to be ignored or discarded . In many programming languages this behavior is considered default. However, in Move, a struct without the drop ability is not allowed to be ignored. This is a safety feature of the Move language, which ensures that all assets are properly handled. An attempt to ignore a struct without the drop ability will result in a compilation error. module book::drop_ability { /// This struct has the `drop` ability. struct IgnoreMe has drop { a: u8, b: u8, } /// This struct does not have the `drop` ability. struct NoDrop {} #[test] // Create an instance of the `IgnoreMe` struct and ignore it. // Even though we constructed the instance, we don't need to unpack it. fun test_ignore() { let no_drop = NoDrop {}; let _ = IgnoreMe { a: 1, b: 2 }; // no need to unpack // The value must be unpacked for the code to compile. let NoDrop {} = no_drop; // OK }\n} The drop ability is often used on custom collection types to eliminate the need for special handling of the collection when it is no longer needed. For example, a vector type has the drop ability, which allows the vector to be ignored when it is no longer needed. However, the biggest feature of Move's type system is the ability to not have drop. This ensures that the assets are properly handled and not ignored. A struct with a single drop ability is called a Witness . We explain the concept of a Witness in the Witness and Abstract Implementation section.","breadcrumbs":"Syntax Basics » Abilities: Drop » Drop ability","id":"101","title":"Drop ability"},"102":{"body":"Move achieves high modularity and code reuse by allowing module imports. Modules within the same package can import each other, and a new package can depend on already existing packages and use their modules too. This section will cover the basics of importing modules and how to use them in your own code.","breadcrumbs":"Syntax Basics » Importing Modules » Importing Modules","id":"102","title":"Importing Modules"},"103":{"body":"Modules defined in the same package can import each other. The use keyword is followed by the module path, which consists of the package address (or alias) and the module name separated by ::. File: sources/module_one.move // File: sources/module_one.move\nmodule book::module_one { /// Struct defined in the same module. public struct Character has drop {} /// Simple function that creates a new `Character` instance. public fun new(): Character { Character {} }\n} File: sources/module_two.move module book::module_two { use book::module_one; // importing module_one from the same package /// Calls the `new` function from the `module_one` module. public fun create_and_ignore() { let _ = module_one::new(); }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Importing a Module","id":"103","title":"Importing a Module"},"104":{"body":"You can also import specific members from a module. This is useful when you only need a single function or a single type from a module. The syntax is the same as for importing a module, but you add the member name after the module path. module book::more_imports { use book::module_one::new; // imports the `new` function from the `module_one` module use book::module_one::Character; // importing the `Character` struct from the `module_one` module /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Importing Members","id":"104","title":"Importing Members"},"105":{"body":"Imports can be grouped into a single use statement using the curly braces {}. This is useful when you need to import multiple members from the same module. Move allows grouping imports from the same module and from the same package. module book::grouped_imports { // imports the `new` function and the `Character` struct from /// the `module_one` module use book::module_one::{new, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n} Single function imports are less common in Move, since the function names can overlap and cause confusion. A recommended practice is to import the entire module and use the module path to access the function. Types have unique names and should be imported individually. To import members and the module itself in the group import, you can use the Self keyword. The Self keyword refers to the module itself and can be used to import the module and its members. module book::self_imports { // imports the `Character` struct, and the `module_one` module use book::module_one::{Self, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { module_one::new() }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Grouping Imports","id":"105","title":"Grouping Imports"},"106":{"body":"When importing multiple members from different modules, it is possible to have name conflicts. For example, if you import two modules that both have a function with the same name, you will need to use the module path to access the function. It is also possible to have modules with the same name in different packages. To resolve the conflict and avoid ambiguity, Move offers the as keyword to rename the imported member. module book::conflict_resolution { // `as` can be placed after any import, including group imports use book::module_one::{Self as mod, Character as Char}; /// Calls the `new` function from the `module_one` module. public fun create(): Char { mod::new_two() }\n}","breadcrumbs":"Syntax Basics » Importing Modules » Resolving Name Conflicts","id":"106","title":"Resolving Name Conflicts"},"107":{"body":"Every new package generated via the sui binary features a Move.toml file with a single dependency on the Sui Framework package. The Sui Framework depends on the Standard Library package. And both of these packages are available in default configuration. Package dependencies are defined in the Package Manifest as follows: [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nLocal = { local = \"../my_other_package\" } The dependencies section contains a list of package dependencies. The key is the name of the package, and the value is either a git import table or a local path. The git import contains the URL of the package, the subdirectory where the package is located, and the revision of the package. The local path is a relative path to the package directory. If a dependency is added to the Move.toml file, the compiler will automatically fetch (and later refetch) the dependencies when building the package.","breadcrumbs":"Syntax Basics » Importing Modules » Adding an External Dependency","id":"107","title":"Adding an External Dependency"},"108":{"body":"Normally, packages define their addresses in the [addresses] section, so you can use the alias instead of the address. For example, instead of 0x2::coin module, you would use sui::coin. The sui alias is defined in the Sui Framework package. Similarly, the std alias is defined in the Standard Library package and can be used to access the standard library modules. To import a module from another package, you use the use keyword followed by the module path. The module path consists of the package address (or alias) and the module name separated by ::. module book::imports { use std::string; // std = 0x1, string is a module in the standard library use sui::coin; // sui = 0x2, coin is a module in the Sui Framework\n}","breadcrumbs":"Syntax Basics » Importing Modules » Importing a Module from Another Package","id":"108","title":"Importing a Module from Another Package"},"109":{"body":"The Move Standard Library provides functionality for native types and operations. It is a standard collection of modules which does utilize the storage model, and operates on native types. It is the only dependency of the Sui Framework , and is imported together with it.","breadcrumbs":"Syntax Basics » Standard Library » Standard Library","id":"109","title":"Standard Library"},"11":{"body":"IntelliJ IDEA is a commercial IDE from JetBrains. Move Language Plugin provides a Move language extension for IntelliJ IDEA by Pontem Network .","breadcrumbs":"Before we begin » Set up your IDE » IntelliJ IDEA","id":"11","title":"IntelliJ IDEA"},"110":{"body":"In this book we go into detail about most of the modules in the standard library, however, it is also helpful to give an overview of the features, so that you can get a sense of what is available and which module implements that. Module Description Chapter std::debug Contains debugging functions Debugging std::type_name Allows runtime type reflection Generics std::string Provides basic string operations Strings std::ascii Provides basic ASCII operations Strings std::option Implements an Option Option std::vector Native operations on the vector type Vector std::hash Hashing functions: sha2_256 and sha3_256 Cryptography and Hashing std::bcs Contains the bcs::to_bytes() function BCS std::address Contains a single address::length function Address std::bit_vector Provides operations on bit vectors - std::fixed_point32 Provides the FixedPoint32 type -","breadcrumbs":"Syntax Basics » Standard Library » Most Common Modules","id":"110","title":"Most Common Modules"},"111":{"body":"The Move Standard Library can be imported to the package directly. However, std alone is not enough to build a meaningful application, as it does not provide any storage capabilities, and can't interact with the on-chain state. MoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" }","breadcrumbs":"Syntax Basics » Standard Library » Importing std without Sui Framework","id":"111","title":"Importing std without Sui Framework"},"112":{"body":"Vectors are a native way to store collections of elements in Move. They are similar to arrays in other programming languages, but with a few differences. In this section, we introduce the vector type and its operations.","breadcrumbs":"Syntax Basics » Vector » Vector","id":"112","title":"Vector"},"113":{"body":"The vector type is defined using the vector keyword followed by the type of the elements in angle brackets. The type of the elements can be any valid Move type, including other vectors. Move has a vector literal syntax that allows you to create vectors using the vector keyword followed by square brackets containing the elements (or no elements for an empty vector). /// An empty vector of bool elements.\nlet empty: vector = vector[]; /// A vector of u8 elements.\nlet v: vector = vector[10, 20, 30]; /// A vector of vector elements.\nlet vv: vector> = vector[ vector[10, 20], vector[30, 40]\n]; The vector type is a built-in type in Move, and does not need to be imported from a module. However, vector operations are defined in the std::vector module, and you need to import the module to use them.","breadcrumbs":"Syntax Basics » Vector » Vector syntax","id":"113","title":"Vector syntax"},"114":{"body":"The standard library provides methods to manipulate vectors. The following are some of the most commonly used operations: push_back: Adds an element to the end of the vector. pop_back: Removes the last element from the vector. length: Returns the number of elements in the vector. is_empty: Returns true if the vector is empty. remove: Removes an element at a given index. module book::play_vec { #[test] fun vector_methods_test() { let mut v = vector[10u8, 20, 30]; assert!(v.length() == 3, 0); assert!(!v.is_empty(), 1); v.push_back(40); let last_value = v.pop_back(); assert!(last_value == 40, 2); }\n}","breadcrumbs":"Syntax Basics » Vector » Vector operations","id":"114","title":"Vector operations"},"115":{"body":"A vector of non-droppable types cannot be discarded. If you define a vector of types without drop ability, the vector value cannot be ignored. However, if the vector is empty, compiler requires an explicit call to destroy_empty function. module book::non_droppable_vec { struct NoDrop {} #[test] fun test_destroy_empty() { let v = vector[]; // while we know that `v` is empty, we still need to call // the explicit `destroy_empty` function to discard the vector. v.destroy_empty(); }\n}","breadcrumbs":"Syntax Basics » Vector » Destroying a Vector of non-droppable types","id":"115","title":"Destroying a Vector of non-droppable types"},"116":{"body":"Option is a type that represents an optional value which may or may not exist. The concept of Option in Move is borrowed from Rust, and it is a very useful primitive in Move. Option is defined in the Standard Library, and is defined as follows: /// Abstraction of a value that may or may not be present.\nstruct Option has copy, drop, store { vec: vector\n} The Option is a generic type which takes a type parameter Element. It has a single field vec which is a vector of Element. Vector can have length 0 or 1, and this is used to represent the presence or absence of a value. Option type has two variants: Some and None. Some variant contains a value and None variant represents the absence of a value. The Option type is used to represent the absence of a value in a type-safe way, and it is used to avoid the need for empty or undefined values.","breadcrumbs":"Syntax Basics » Option » Option","id":"116","title":"Option"},"117":{"body":"To showcase why Option type is necessary, let's look at an example. Consider an application which takes a user input and stores it in a variable. Some fields are required, and some are optional. For example, a user's middle name is optional. While we could use an empty string to represent the absence of a middle name, it would require extra checks to differentiate between an empty string and a missing middle name. Instead, we can use the Option type to represent the middle name. module book::user_registry { use std::string::String; use std::option::Option; /// A struct representing a user record. struct User has copy, drop { first_name: String, middle_name: Option, last_name: String, } /// Create a new `User` struct with the given fields. public fun register( first_name: String, middle_name: Option, last_name: String, ): User { User { first_name, middle_name, last_name } }\n} In the example above, the middle_name field is of type Option. This means that the middle_name field can either contain a String value or be empty. This makes it clear that the middle name is optional, and it avoids the need for extra checks to differentiate between an empty string and a missing middle name.","breadcrumbs":"Syntax Basics » Option » In Practice","id":"117","title":"In Practice"},"118":{"body":"To use the Option type, you need to import the std::option module and use the Option type. You can then create an Option value using the some or none methods. use std::option; // `option::some` creates an `Option` value with a value.\nlet opt_name = option::some(b\"Alice\"); // `option.is_some()` returns true if option contains a value.\nassert!(opt_name.is_some(), 1); // internal value can be `borrow`ed and `borrow_mut`ed.\nassert!(option.borrow() == &b\"Alice\", 0); // `option.extract` takes the value out of the option.\nlet inner = opt_name.extract(); // `option.is_none()` returns true if option is None.\nassert!(opt_name.is_none(), 2);","breadcrumbs":"Syntax Basics » Option » Using Option","id":"118","title":"Using Option"},"119":{"body":"While Move does not have a built-in to represent strings, it does have a string module in the Standard Library that provides a String type. The string module represents UTF-8 encoded strings, and another module, ascii, provides an ASCII-only String type. Sui execution environment also allows Strings as transaction arguments, so in many cases, String does not to be constructed in the Transaction Block .","breadcrumbs":"Syntax Basics » String » String","id":"119","title":"String"},"12":{"body":"Emacs is a free and open source text editor. move-mode is a Move mode for Emacs by Ashok Menon .","breadcrumbs":"Before we begin » Set up your IDE » Emacs","id":"12","title":"Emacs"},"120":{"body":"No matter which type of string you use, it is important to know that strings are just bytes. The wrappers provided by the string and ascii modules are just that: wrappers. They do provide extra checks and functionality than a vector of bytes, but under the hood, they are just vectors of bytes. module book::string_bytes { /// Anyone can implement a custom string-like type by wrapping a vector. struct MyString { bytes: vector, } /// Implement a `from_bytes` function to convert a vector of bytes to a string. public fun from_bytes(bytes: vector): MyString { MyString { bytes } } /// Implement a `bytes` function to convert a string to a vector of bytes. public fun bytes(self: &MyString): &vector { &self.bytes }\n} Both standard types provide conversions from and to vectors of bytes.","breadcrumbs":"Syntax Basics » String » Strings are bytes","id":"120","title":"Strings are bytes"},"121":{"body":"While there are two types of strings in the standard library, the string module should be considered the default. It has native implementations of many common operations, and hence is more efficient than the ascii module. To create a string or perform operations on it, you must import the string module: module book::strings { use std::string::{Self, String}; #[test] fun using_strings() { // strings are normally created using the `utf8` function let mut hello = string::utf8(b\"Hello\"); let world = string::utf8(b\", World!\"); // strings can be concatenated using the `append_utf8` function let hello_world = hello.append_utf8(*world.bytes()); // just like any other type, strings can be compared assert!(hello_world == string::utf8(b\"Hello, World!\"), 0x0); }\n}","breadcrumbs":"Syntax Basics » String » Working with UTF-8 Strings","id":"121","title":"Working with UTF-8 Strings"},"122":{"body":"The default utf8 method is potentially unsafe, as it does not check that the bytes passed to it are valid UTF-8. If you are not sure that the bytes you are passing are valid UTF-8, you should use the try_utf8 method instead. It returns an Option, which is None if the bytes are not valid UTF-8: The try_* pattern is used throughout the standard library to indicate that a function may fail. For more information, see the Error Handling section. module book::safe_strings { use std::string::{Self, String}; #[test] fun safe_strings() { // this is a valid UTF-8 string let hello = string::try_utf8(b\"Hello\"); assert!(hello.is_some(), 0); // abort if the value is not valid UTF-8 // this is not a valid UTF-8 string let invalid = string::try_utf8(b\"\\xFF\"); assert!(invalid.is_none(), 0); // abort if the value is valid UTF-8 }\n}","breadcrumbs":"Syntax Basics » String » Safe UTF-8 Operations","id":"122","title":"Safe UTF-8 Operations"},"123":{"body":"TODO: ASCII strings","breadcrumbs":"Syntax Basics » String » ASCII Strings","id":"123","title":"ASCII Strings"},"124":{"body":"TODO: summary","breadcrumbs":"Syntax Basics » String » Summary","id":"124","title":"Summary"},"125":{"body":"Control flow statements are used to control the flow of execution in a program. They are used to make decisions, to repeat a block of code, and to exit a block of code early. Move has the following control flow statements (explained in detail below): if and if-else - making decisions on whether to execute a block of code loop and while loops - repeating a block of code break and continue statements - exiting a loop early return statement - exiting a function early","breadcrumbs":"Syntax Basics » Control Flow » Control Flow","id":"125","title":"Control Flow"},"126":{"body":"The if expression is used to make decisions in a program. It evaluates a boolean expression and executes a block of code if the expression is true. Paired with else, it can execute a different block of code if the expression is false. The syntax for the if expression is: if () ;\nif () else ; Just like any other expression, if requires a semicolon, if there are other expressions following it. The else keyword is optional, except for the case when the resulting value is assigned to a variable. We will cover this below. module book::if_condition { #[test] fun test_if() { let x = 5; // `x > 0` is a boolean expression. if (x > 0) { std::debug::print(&b\"X is bigger than 0\".to_string()) }; }\n} Let's see how we can use if and else to assign a value to a variable: module book::if_else { #[test] fun test_if_else() { let x = 5; let y = if (x > 0) { 1 } else { 0 }; assert!(y == 1, 0); }\n} Here we assign the value of the if expression to the variable y. If x is greater than 0, y will be assigned the value 1, otherwise 0. The else block is necessary, because both branches must return a value of the same type. If we omit the else block, the compiler will throw an error. Conditional expressions are one of the most important control flow statements in Move. They can use either user provided input or some already stored data to make decisions. In particular, they are used in the assert! macro to check if a condition is true, and if not, to abort execution. We will get to it very soon!","breadcrumbs":"Syntax Basics » Control Flow » Conditional Statements","id":"126","title":"Conditional Statements"},"127":{"body":"Loops are used to execute a block of code multiple times. Move has two built-in types of loops: loop and while. In many cases they can be used interchangeably, but usually while is used when the number of iterations is known in advance, and loop is used when the number of iterations is not known in advance or there are multiple exit points. Loops are helpful when dealing with collections, such as vectors, or when we want to repeat a block of code until a certain condition is met. However, it is important to be careful with loops, as they can lead to infinite loops, which can lead to gas exhaustion and the transaction being aborted.","breadcrumbs":"Syntax Basics » Control Flow » Repeating Statements with Loops","id":"127","title":"Repeating Statements with Loops"},"128":{"body":"The while statement is used to execute a block of code as long as a boolean expression is true. Just like we've seen with if, the boolean expression is evaluated before each iteration of the loop. Just like conditional statements, the while loop is an expression and requires a semicolon if there are other expressions following it. The syntax for the while loop is: while () ; Here is an example of a while loop with a very simple condition: module book::while_loop { // This function iterates over the `x` variable until it reaches 10, the // return value is the number of iterations it took to reach 10. // // If `x` is 0, then the function will return 10. // If `x` is 5, then the function will return 5. fun while_loop(x: u8): u8 { let mut y = 0; // This will loop until `x` is 10. // And will never run if `x` is 10 or more. while (x < 10) { y = y + 1; }; y } #[test] fun test_while() { assert!(while_loop(0) == 10, 0); // 10 times assert!(while_loop(5) == 5, 0); // 5 times assert!(while_loop(10) == 0, 0); // loop never executed }\n}","breadcrumbs":"Syntax Basics » Control Flow » The while loop","id":"128","title":"The while loop"},"129":{"body":"Now let's imagine a scenario where the boolean expression is always true. For example, if we literally passed true to the while condition. As you might expect, this would create an infinite loop, and this is almost what the loop statement works like. module book::infinite_while { #[test] fun test_infinite_while() { let mut x = 0; // This will loop forever. while (true) { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); }\n} An infinite while, or while without a condition, is a loop. The syntax for it is simple: loop ; Let's rewrite the previous example using loop instead of while: module book::infinite_loop { #[test] fun test_infinite_loop() { let mut x = 0; // This will loop forever. loop { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); }\n} Infinite loops on their own are not very useful in Move, since every operation in Move costs gas, and an infinite loop will lead to gas exhaustion. However, they can be used in combination with break and continue statements to create more complex loops.","breadcrumbs":"Syntax Basics » Control Flow » Infinite loop","id":"129","title":"Infinite loop"},"13":{"body":"Web based IDE from Github, can be run right in the browser and provides almost a full-featured VSCode experience. Github Codespaces Move Syntax is also available in the extensions marketplace.","breadcrumbs":"Before we begin » Set up your IDE » Github Codespaces","id":"13","title":"Github Codespaces"},"130":{"body":"As we already mentioned, infinite loops are rather useless on their own. And that's where we introduce the break and continue statements. They are used to exit a loop early, and to skip the rest of the current iteration, respectively. Syntax for the break statement is: break; The break statement is used to stop the execution of a loop and exit it early. It is often used in combination with a conditional statement to exit the loop when a certain condition is met. To illustrate this point, let's turn the infinite loop from the previous example into something that looks and behaves more like a while loop: module book::break_loop { #[test] fun test_break_loop() { let mut x = 0; // This will loop until `x` is 5. loop { x = x + 1; // If `x` is 5, then exit the loop. if (x == 5) { break; // Exit the loop. } }; assert!(x == 5, 0); }\n} Almost identical to the while loop, right? The break statement is used to exit the loop when x is 5. If we remove the break statement, the loop will run forever, just like the previous example.","breadcrumbs":"Syntax Basics » Control Flow » Exiting a Loop Early","id":"130","title":"Exiting a Loop Early"},"131":{"body":"The continue statement is used to skip the rest of the current iteration and start the next one. Similarly to break, it is used in combination with a conditional statement to skip the rest of the iteration when a certain condition is met. Syntax for the continue statement is continue; The example below skips odd numbers and prints only even numbers from 0 to 10: module book::continue_loop { #[test] fun test_continue_loop() { let mut x = 0; // This will loop until `x` is 10. loop { x = x + 1; // If `x` is odd, then skip the rest of the iteration. if (x % 2 == 1) { continue; // Skip the rest of the iteration. } std::debug::print(&x); // If `x` is 10, then exit the loop. if (x == 10) { break; // Exit the loop. } }; assert!(x == 10, 0); // 10 }\n} break and continue statements can be used in both while and loop loops.","breadcrumbs":"Syntax Basics » Control Flow » Skipping an Iteration","id":"131","title":"Skipping an Iteration"},"132":{"body":"The return statement is used to exit a function early and return a value. It is often used in combination with a conditional statement to exit the function when a certain condition is met. The syntax for the return statement is: return ; Here is an example of a function that returns a value when a certain condition is met: module book::return_statement { // This function returns `true` if `x` is greater than 0 and not 5, // otherwise it returns `false`. fun is_positive(x: u8): bool { if (x == 5) { return false; } if (x > 0) { return true; }; false } #[test] fun test_return() { assert!(is_positive(5), false); assert!(is_positive(0), false); }\n} Unlike in other languages, the return statement is not required for the last expression in a function. The last expression in a function block is automatically returned. However, the return statement is useful when we want to exit a function early if a certain condition is met.","breadcrumbs":"Syntax Basics » Control Flow » Return","id":"132","title":"Return"},"133":{"body":"Constants are immutable values that are defined at the module level. They often serve as a way to give names to values that are used throughout a module. For example, if there's a default price for a product, you might define a constant for it. Constants are internal to the module and can not be accessed from other modules. module book::shop_price { use sui::coin::{Self, Coin}; use sui::sui::SUI; /// The price of an item in the shop. const ITEM_PRICE: u64 = 100; /// An item sold in the shop. struct Item { /* ... */ } /// Purchase an item from the shop. public fun purchase(coin: Coin): Item { assert!(coin.value() == ITEM_PRICE, 0); Item { /* ... */ } }\n}","breadcrumbs":"Syntax Basics » Constants » Constants","id":"133","title":"Constants"},"134":{"body":"Constants are named using UPPER_SNAKE_CASE. This is a convention that is used throughout the Move codebase. It's a way to make constants stand out from other identifiers in the code. Move compiler will error if the first letter of a constant is not an uppercase letter.","breadcrumbs":"Syntax Basics » Constants » Naming Convention","id":"134","title":"Naming Convention"},"135":{"body":"Constants can't be changed and assigned new values. They are part of the package bytecode, and inherently immutable. module book::immutable_constants { const ITEM_PRICE: u64 = 100; // emits an error fun change_price() { ITEM_PRICE = 200; }\n}","breadcrumbs":"Syntax Basics » Constants » Constants are Immutable","id":"135","title":"Constants are Immutable"},"136":{"body":"","breadcrumbs":"Syntax Basics » Assert and Abort » Assert and Abort","id":"136","title":"Assert and Abort"},"137":{"body":"The abort keyword is used to abort the execution of a transaction. It is used in combination with an abort code, which will be returned to the caller of the transaction. The abort code is an integer of type u64 and can be any value. let user_has_access = true; // abort with a predefined constant if `user_has_access` is false\nif (!user_has_access) { abort 0\n}; // there's an alternative syntax using parenthesis`\nif (user_has_access) { abort(0)\n}; /* ... */","breadcrumbs":"Syntax Basics » Assert and Abort » Abort","id":"137","title":"Abort"},"138":{"body":"The assert! macro is a built-in macro that can be used to assert a condition. If the condition is false, the transaction will abort with the given abort code. The assert! macro is a convenient way to abort a transaction if a condition is not met. The macro shortens the code otherwise written with an if expression + abort. // aborts if `user_has_access` is false with abort code 0\nassert!(user_has_access, 0); // expands into:\nif (!user_has_access) { abort 0\n};","breadcrumbs":"Syntax Basics » Assert and Abort » assert!","id":"138","title":"assert!"},"139":{"body":"To make error codes more descriptive, it is a good practice to define error constants. Error constants are defined as const declarations and are usually prefixed with E followed by a camel case name. Error constatns are no different from other constants and don't have special handling. So their addition is purely a practice for better code readability. /// Error code for when the user has no access.\nconst ENoAccess: u64 = 0;\n/// Trying to access a field that does not exist.\nconst ENoField: u64 = 1; // asserts are way more readable now\nassert!(user_has_access, ENoAccess);\nassert!(field_exists, ENoField);","breadcrumbs":"Syntax Basics » Assert and Abort » Error constants","id":"139","title":"Error constants"},"14":{"body":"Move 2024 is the new version of the Move language that is maintained by Mysten Labs. All of the examples in this book are written in Move 2024. If you're used to the pre-2024 version of Move, please, refer to the Move 2024 Migration Guide to learn about the differences between the two versions.","breadcrumbs":"Before we begin » Move 2024 » Move 2024","id":"14","title":"Move 2024"},"140":{"body":"We suggest reading the Better Error Handling guide to learn about best practices for error handling in Move.","breadcrumbs":"Syntax Basics » Assert and Abort » Further reading","id":"140","title":"Further reading"},"141":{"body":"Functions are the building blocks of Move programs. They are called from user transactions and from other functions and group executable code into reusable units. Functions can take arguments and return a value. They are declared with the fun keyword at the module level. Just like any other module member, by default they're private and can only be accessed from within the module. module book::math { /// Function takes two arguments of type `u64` and returns their sum. /// The `public` visibility modifier makes the function accessible from /// outside the module. public fun add(a: u64, b: u64): u64 { a + b } #[test] fun test_add() { let sum = add(1, 2); assert!(sum == 3, 0); }\n} In this example, we define a function add that takes two arguments of type u64 and returns their sum. The function is called from the test_add function, which is a test function located in the same module. In the test we compare the result of the add function with the expected value and abort the execution if the result is different.","breadcrumbs":"Syntax Basics » Function » Function","id":"141","title":"Function"},"142":{"body":"There's a convention to call functions in Move with the snake_case naming convention. This means that the function name should be all lowercase with words separated by underscores. For example, do_something, add, get_balance, is_authorized, and so on. A function is declared with the fun keyword followed by the function name (a valid Move identifier), a list of arguments in parentheses, and a return type. The function body is a block of code that contains a sequence of statements and expressions. The last expression in the function body is the return value of the function. fun return_nothing() { // empty expression, function returns `()`\n}","breadcrumbs":"Syntax Basics » Function » Function declaration","id":"142","title":"Function declaration"},"143":{"body":"Just like any other module member, functions can be imported and accessed via a path. The path consists of the module path and the function name separated by ::. For example, if you have a function called add in the math module in the book package, the path to it will be book::math::add, or, if the module is imported, math::add. module book::use_math { use book::math; fun call_add() { // function is called via the path let sum = math::add(1, 2); }\n}","breadcrumbs":"Syntax Basics » Function » Accessing functions","id":"143","title":"Accessing functions"},"144":{"body":"Move functions can return multiple values, which is useful when you need to return more than one value from a function. The return type of the function is a tuple of types. The return value is a tuple of expressions. fun get_name_and_age(): (vector, u8) { (b\"John\", 25)\n} Result of a function call with tuple return has to be unpacked into variables via let (tuple) syntax: // declare name and age as immutable\nlet (name, age) = get_name_and_age(); If any of the declared values need to be declared as mutable, the mut keyword is placed before the variable name: // declare name as mutable, age as immutable\nlet (mut name, age) = get_name_and_age(); If some of the arguments are not used, they can be ignored with the _ symbol: // ignore the name, declare age as mutable\nlet (_, mut age) = get_name_and_age();","breadcrumbs":"Syntax Basics » Function » Multiple return values","id":"144","title":"Multiple return values"},"145":{"body":"Move Compiler supports receiver syntax , which allows defining methods which can be called on instances of a struct. This is similar to the method syntax in other programming languages. It is a convenient way to define functions which operate on the fields of a struct.","breadcrumbs":"Syntax Basics » Struct Methods » Struct Methods","id":"145","title":"Struct Methods"},"146":{"body":"If the first argument of a function is a struct internal to the module, then the function can be called using the . operator. If the function uses a struct from another module, then method won't be associated with the struct by default. In this case, the function can be called using the standard function call syntax. When a module is imported, the methods are automatically associated with the struct. module book::hero { /// A struct representing a hero. struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } /// A method which casts a spell, consuming mana. public fun heal_spell(hero: &mut Hero) { hero.health = hero.health + 10; hero.mana = hero.mana - 10; } /// A method which returns the health of the hero. public fun health(hero: &Hero): u8 { hero.health } /// A method which returns the mana of the hero. public fun mana(hero: &Hero): u8 { hero.mana } #[test] // Test the methods of the `Hero` struct. fun test_methods() { let mut hero = new(); hero.heal_spell(); assert!(hero.health() == 110, 1); assert!(hero.mana() == 90, 2); }\n}","breadcrumbs":"Syntax Basics » Struct Methods » Method syntax","id":"146","title":"Method syntax"},"147":{"body":"For modules that define multiple structs and their methods, it is possible to define method aliases to avoid name conflicts, or to provide a better-named method for a struct. The syntax for aliases is: // for local method association\nuse fun as .; // exported alias\npublic use fun as .; Public aliases are only allowed for structs defined in the same module. If a struct is defined in another module, an alias can still be created but cannot be made public. In the example below, we changed the hero module and added another type - Villain. Both Hero and Villain have similar field names and methods. And to avoid name conflicts, we prefixed methods with hero_ and villain_ respectively. However, we can create aliases for these methods so that they can be called on the instances of the structs without the prefix. module book::hero_and_villain { /// A struct representing a hero. struct Hero has drop { health: u8, } /// A struct representing a villain. struct Villain has drop { health: u8, } /// Create a new Hero. public fun new_hero(): Hero { Hero { health: 100 } } /// Create a new Villain. public fun new_villain(): Villain { Villain { health: 100 } } // Alias for the `hero_health` method. Will be imported automatically when // the module is imported. public use fun hero_health as Hero.health; public fun hero_health(hero: &Hero): u8 { hero.health } // Alias for the `villain_health` method. Will be imported automatically // when the module is imported. public use fun villain_health as Villain.health; public fun villain_health(villain: &Villain): u8 { villain.health } #[test] // Test the methods of the `Hero` and `Villain` structs. fun test_associated_methods() { let mut hero = new_hero(); assert!(hero.health() == 100, 1); let mut villain = new_villain(); assert!(villain.health() == 100, 3); }\n} As you can see, in the test function, we called the health method on the instances of Hero and Villain without the prefix. The compiler will automatically associate the methods with the structs.","breadcrumbs":"Syntax Basics » Struct Methods » Method Aliases","id":"147","title":"Method Aliases"},"148":{"body":"It is also possible to associate a function defined in another module with a struct from the current module. Following the same approach, we can create an alias for the method defined in another module. Let's use the bcs::to_bytes method from the Standard Library and associate it with the Hero struct. It will allow serializing the Hero struct to a vector of bytes. module book::hero_to_bytes { use std::bcs; // Alias for the `bcs::to_bytes` method. Imported aliases should be defined // in the top of the module. public use fun bcs::to_bytes as Hero.to_bytes; /// A struct representing a hero. struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } // Alias for the `bcs::to_string` method. public use fun bcs::to_bytes as Hero.to_bytes; #[test] // Test the methods of the `Hero` struct. fun test_hero_serialize() { let mut hero = new(); let serialized = hero.to_bytes(); assert!(serialized.length() == 3, 1); }\n}","breadcrumbs":"Syntax Basics » Struct Methods » Aliasing an external module's method","id":"148","title":"Aliasing an external module's method"},"149":{"body":"Every module member has a visibility. By default, all module members are private - meaning they are only accessible within the module they are defined in. However, you can add a visibility modifier to make a module member public - visible outside the module, or friend - visible in \"friend\" modules within the same package, or entry - can be called from a transaction but can't be called from other modules.","breadcrumbs":"Syntax Basics » Visibility Modifiers » Visibility Modifiers","id":"149","title":"Visibility Modifiers"},"15":{"body":"In this section you'll get to experience the Move language and the Move compiler first-hand. You'll learn how to create a package, write a simple module, test it and generate documentation. You can also use this section as a quick CLI reference for your own projects. This guide mentions topics which you will learn later in this book. If you are not familiar with some of the concepts, don't worry, you'll learn them later. Try to focus on the task at hand and don't get distracted by the details. It is important that you have a working Move environment. If you haven't set it up yet, please refer to the Install Sui section. This section is divided into the following parts (in order): Hello World Adding Tests Debugging Generating Docs","breadcrumbs":"Your First Move » Your first Move","id":"15","title":"Your first Move"},"150":{"body":"A function or a struct defined in a module which has no visibility modifier is private . module book::internal_visbility { // This function can be called from other functions in the same module fun internal() { /* ... */ } // Same module -> can call internal() fun call_internal() { internal(); }\n} Move compiler won't allow this code to compile: module book::try_calling_internal { use book::internal_visbility; // Different module -> can't call internal() fun try_calling_internal() { internal_visbility::internal(); }\n}","breadcrumbs":"Syntax Basics » Visibility Modifiers » Internal Visibility","id":"150","title":"Internal Visibility"},"151":{"body":"TODO: public visibility","breadcrumbs":"Syntax Basics » Visibility Modifiers » Public Visibility","id":"151","title":"Public Visibility"},"152":{"body":"TODO: friend visibility","breadcrumbs":"Syntax Basics » Visibility Modifiers » Friend Visibility","id":"152","title":"Friend Visibility"},"153":{"body":"TODO: 2024 public(package)","breadcrumbs":"Syntax Basics » Visibility Modifiers » Package Visibility","id":"153","title":"Package Visibility"},"154":{"body":"Every variable in Move has a scope and an owner. The scope is the range of code where the variable is valid, and the owner is the scope that this variable belongs to. Once the owner scope ends, the variable is dropped. This is a fundamental concept in Move, and it is important to understand how it works.","breadcrumbs":"Syntax Basics » Ownership and Scope » Ownership and Scope","id":"154","title":"Ownership and Scope"},"155":{"body":"A variable defined in a function scope is owned by this scope. The runtime goes through the function scope and executes every expression and statement. Once the function scope end, the variables defined in it are dropped or deallocated. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function } // a is dropped here #[test] fun test_owner() { owner(); // a is not valid here }\n} In the example above, the variable a is owned by the owner function, and the variable b is owned by the other function. When each of these functions are called, the variables are defined, and when the function ends, the variables are discarded.","breadcrumbs":"Syntax Basics » Ownership and Scope » Ownership","id":"155","title":"Ownership"},"156":{"body":"If we changed the owner function to return the variable a, then the ownership of a would be transferred to the caller of the function. module book::ownership { public fun owner(): u8 { let a = 1; // a defined here a // scope ends, a is returned } #[test] fun test_owner() { let a = owner(); // a is valid here } // a is dropped here\n}","breadcrumbs":"Syntax Basics » Ownership and Scope » Returning a Value","id":"156","title":"Returning a Value"},"157":{"body":"Additionally, if we passed the variable a to another function, the ownership of a would be transferred to this function. When performing this operation, we move the value from one scope to another. This is also called move semantics . module book::ownership { public fun owner(): u8 { let a = 10; a } // a is returned public fun take_ownership(v: u8) { // v is owned by `take_ownership` } // v is dropped here #[test] fun test_owner() { let a = owner(); take_ownership(a); // a is not valid here }\n}","breadcrumbs":"Syntax Basics » Ownership and Scope » Passing by Value","id":"157","title":"Passing by Value"},"158":{"body":"Function has a main scope, and it can also have sub-scopes via the use of blocks. A block is a sequence of statements and expressions, and it has its own scope. Variables defined in a block are owned by this block, and when the block ends, the variables are dropped. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function's scope { let b = 2; // b is owned by the block { let c = 3; // c is owned by the block }; // c is dropped here }; // b is dropped here // a = b; // error: b is not valid here // a = c; // error: c is not valid here } // a is dropped here\n} However, shall we use the return value of a block, the ownership of the variable is transferred to the caller of the block. module book::ownership { public fun owner(): u8 { let a = 1; // a is owned by the `owner` function's scope let b = { let c = 2; // c is owned by the block c // c is returned }; // c is dropped here a + b // both a and b are valid here }\n}","breadcrumbs":"Syntax Basics » Ownership and Scope » Scopes with Blocks","id":"158","title":"Scopes with Blocks"},"159":{"body":"Some types in Move are copyable , which means that they can be copied without transferring the ownership. This is useful for types that are small and cheap to copy, such as integers and booleans. Move compiler will automatically copy these types when they are passed to a function or returned from a function, or when they're moved to a scope and then accessed in their original scope.","breadcrumbs":"Syntax Basics » Ownership and Scope » Copyable Types","id":"159","title":"Copyable Types"},"16":{"body":"It's time to write your first Move program. We'll start with the classic \"Hello World\" program which returns a String.","breadcrumbs":"Your First Move » Hello World! » Hello World","id":"16","title":"Hello World"},"160":{"body":"In Move, the copy ability on a type indicates that the instance or the value of the type can be copied. While this behavior may feel very natural when working with numbers or other simple types, it is not the default for custom types in Move. This is because Move is designed to express digital assets and resources, and inability to copy is a key element of the resource model. However, Move type system allows you to define custom types with the copy ability. public struct Copyable has copy {} In the example above, we define a custom type Copyable with the copy ability. This means that instances of Copyable can be copied, both implicitly and explicitly. let a = Copyable {};\nlet b = a; // `a` is copied to `b`\nlet c = *&b; // explicit copy via dereference operator In the example above, a is copied to b implicitly, and then explicitly copied to c using the dereference operator. If Copyable did not have the copy ability, the code would not compile, and the Move compiler would raise an error.","breadcrumbs":"Syntax Basics » Abilities: Copy » Abilities: Copy","id":"160","title":"Abilities: Copy"},"161":{"body":"The copy ability is closely related to drop ability . If a type has the copy ability, very likely that it should have drop too. This is because the drop ability is required to clean up the resources when the instance is no longer needed. If a type has only copy , then managing its instances gets more complicated, as the values cannot be ignored. public struct Value has copy, drop {} All of the primitive types in Move behave as if they have the copy and drop abilities. This means that they can be copied and dropped, and the Move compiler will handle the memory management for them.","breadcrumbs":"Syntax Basics » Abilities: Copy » Copying and Drop","id":"161","title":"Copying and Drop"},"162":{"body":"In the previous section we explained the ownership and scope in Move. We showed how the value is moved to a new scope, and how it changes the owner. In this section, we will explain how to borrow a reference to a value to avoid moving it, and how Move's borrow checker ensures that the references are used correctly.","breadcrumbs":"Syntax Basics » References » References","id":"162","title":"References"},"163":{"body":"References are a way to borrow a value without changing its owner. Immutable references allow the function to read the value without changing it or moving it. And mutable references allow the function to read and modify the value without moving it. To illustrate this, let's consider a simple example - an application for a metro (subway) pass. We will look at 4 different scenarios: Card can be purchased at the kiosk for a fixed price Card can be shown to inspectors to prove that the passenger has a valid pass Card can be used at the turnstile to enter the metro, and spend a ride Card can be recycled once it's empty module book::references { /// Error code for when the card is empty. const ENoUses: u64 = 0; /// Number of uses for a metro pass card. const USES: u8 = 3; /// A metro pass card struct Card { uses: u8 } /// Purchase a metro pass card. public fun purchase(/* pass a Coin */): Card { Card { uses: USES } } /// Show the metro pass card to the inspector. public fun show(card: &Card): bool { card.uses > 0 } /// Use the metro pass card at the turnstile to enter the metro. public fun enter_metro(card: &mut Card) { assert!(card.uses > 0, ENoUses); card.uses = card.uses - 1; } /// Recycle the metro pass card. public fun recycle(card: Card) { assert!(card.uses == 0, ENoUses); let Card { uses: _ } = card; } #[test] fun test_card() { // declaring variable as mutable because we modify it let mut card = purchase(); card.enter_metro(); // modify the card but don't move it assert!(card.show(), true); // read the card! card.enter_metro(); // modify the card but don't move it card.enter_metro(); // modify the card but don't move it card.recycle(); // move the card out of the scope }\n}","breadcrumbs":"Syntax Basics » References » Reference","id":"163","title":"Reference"},"164":{"body":"","breadcrumbs":"Syntax Basics » References » Mutable References","id":"164","title":"Mutable References"},"165":{"body":"","breadcrumbs":"Syntax Basics » References » Dereference and Copy","id":"165","title":"Dereference and Copy"},"166":{"body":"","breadcrumbs":"Syntax Basics » References » Notes","id":"166","title":"Notes"},"167":{"body":"Generics are a way to define a type or function that can work with any type. This is useful when you want to write a function which can be used with different types, or when you want to define a type that can hold any other type. Generics are the foundation of many advanced features in Move, such as collections, abstract implementations, and more.","breadcrumbs":"Syntax Basics » Generics » Generics","id":"167","title":"Generics"},"168":{"body":"To define a generic type or function, a type signature needs to have a list of generic parameters enclosed in angle brackets (< and >). The generic parameters are separated by commas. /// Container for any type `T`.\nstruct Container has drop { value: T,\n} /// Function that creates a new `Container` with a generic value `T`.\npublic fun new(value: T): Container { Container { value }\n} In the example above, Container is a generic type with a single type parameter T, the value field of the container stores the T. The new function is a generic function with a single type parameter T, and it returns a Container with the given value. Generic types must be initialed with a concrete type, and generic functions must be called with a concrete type. #[test]\nfun test_generic() { // these three lines are equivalent let container: Container = new(10); // type inference let container = new(10); // create a new `Container` with a `u8` value let container = new(10u8); assert!(container.value == 10, 0x0);\n} In the test function test_generic we demonstrate three equivalent ways to create a new Container with a u8 value. Because numeric types need to be inferred, we specify the type of the number literal.","breadcrumbs":"Syntax Basics » Generics » Generic Syntax","id":"168","title":"Generic Syntax"},"169":{"body":"You can define a type or function with multiple type parameters. The type parameters are then separated by commas. /// A pair of values of any type `T` and `U`.\nstruct Pair { first: T, second: U,\n} /// Function that creates a new `Pair` with two generic values `T` and `U`.\npublic fun new_pair(first: T, second: U): Pair { Pair { first, second }\n} In the example above, Pair is a generic type with two type parameters T and U, and the new_pair function is a generic function with two type parameters T and U. The function returns a Pair with the given values. The order of the type parameters is important, and it should match the order of the type parameters in the type signature. #[test]\nfun test_generic() { // these three lines are equivalent let pair: Pair = new_pair(10, true); // type inference let pair = new_pair(10, true); // create a new `Pair` with a `u8` and `bool` values let pair = new_pair(10u8, true); assert!(pair.first == 10, 0x0); assert!(pair.second, 0x0);\n} If we added another instance where we swapped type parameters in the new_pair function, and tried to compare two types, we'd see that the type signatures are different, and cannot be compared. #[test]\nfun test_swap_type_params() { let pair1: Pair = new_pair(10u8, true); let pair2: Pair = new_pair(true, 10u8); // this line will not compile // assert!(pair1 == pair2, 0x0);\n} Types for variables pair1 and pair2 are different, and the comparison will not compile.","breadcrumbs":"Syntax Basics » Generics » Multiple Type Parameters","id":"169","title":"Multiple Type Parameters"},"17":{"body":"First, you need to initialize a new project. Assuming you have Sui installed , run the following command: $ sui move new hello_world Sui CLI has a move subcommand which is used to work with Move packages. The new subcommand creates a new package with the given name in a new directory. In our case, the package name is hello_world, and it is located in the hello_world directory. To make sure that the package was created successfully, we can check the contents of the current directory, and see that there is a new hello_world path. $ ls | grep hello_world\nhello_world If the output looks like this, then everything is fine, and we can proceed. The folder structure of the package is the folowing: hello_world\n├── Move.toml\n├── src/\n│ └── hello_world.move\n└── tests/ └── hello_world_tests.move The address I'm using in this book is always 0x0 and the name for it is \"book\". You can use any address you want, but make sure to change it in the examples. To make the examples work as is, please, add the following address to the [addresses] section in the Move.toml: # Move.toml\n[addresses]\nstd = \"0x1\"\nbook = \"0x0\"","breadcrumbs":"Your First Move » Hello World! » Initialize a project","id":"17","title":"Initialize a project"},"170":{"body":"In the examples above we focused on instantiating generic types and calling generic functions to create instances of these types. However, the real power of generics is the ability to define shared behavior for the base, generic type, and then use it independently of the concrete types. This is especially useful when working with collections, abstract implementations, and other advanced features in Move. /// A user record with name, age, and some generic metadata\nstruct User { name: String, age: u8, /// Varies depending on application. metadata: T,\n} In the example above, User is a generic type with a single type parameter T, with shared fields name and age, and the generic metadata field which can store any type. No matter what the metadata is, all of the instances of User will have the same fields and methods. /// Updates the name of the user.\npublic fun update_name(user: &mut User, name: String) { user.name = name;\n} /// Updates the age of the user.\npublic fun update_age(user: &mut User, age: u8) { user.age = age;\n}","breadcrumbs":"Syntax Basics » Generics » Why Generics?","id":"170","title":"Why Generics?"},"171":{"body":"In some cases, you may want to define a generic type with a type parameter that is not used in the fields or methods of the type. This is called a phantom type parameter . Phantom type parameters are useful when you want to define a type that can hold any other type, but you want to enforce some constraints on the type parameter. /// A generic type with a phantom type parameter.\nstruct Coin { value: u64\n} The Coin type here does not contain any fields or methods that use the type parameter T. It is used to differentiate between different types of coins, and to enforce some constraints on the type parameter T. struct USD {}\nstruct EUR {} #[test]\nfun test_phantom_type() { let coin1: Coin = Coin { value: 10 }; let coin2: Coin = Coin { value: 20 };\n} In the example above, we demonstrate how to create two different instances of Coin with different phantom type parameters USD and EUR. The type parameter T is not used in the fields or methods of the Coin type, but it is used to differentiate between different types of coins. It will make sure that the USD and EUR coins are not mixed up.","breadcrumbs":"Syntax Basics » Generics » Phantom Type Parameters","id":"171","title":"Phantom Type Parameters"},"172":{"body":"Type parameters can be constrained to have certain abilities. This is useful when you need the inner type to allow certain behavior, such as copy or drop . The syntax for constraining a type parameter is T: + . /// A generic type with a type parameter that has the `drop` ability.\nstruct Droppable { value: T,\n} /// A generic struct with a type parameter that has the `copy` and `drop` abilities.\nstruct CopyableDroppable { value: T, // T must have the `copy` and `drop` abilities\n} Move Compiler will enforce that the type parameter T has the specified abilities. If the type parameter does not have the specified abilities, the code will not compile. /// Type without any abilities.\nstruct NoAbilities {} #[test]\nfun test_constraints() { // Fails - `NoAbilities` does not have the `drop` ability let droppable = Droppable { value: 10 }; // Fails - `NoAbilities` does not have the `copy` and `drop` abilities let copyable_droppable = CopyableDroppable { value: 10 };\n}","breadcrumbs":"Syntax Basics » Generics » Constraints on Type Parameters","id":"172","title":"Constraints on Type Parameters"},"173":{"body":"TODO: add links to","breadcrumbs":"Syntax Basics » Generics » Further Reading","id":"173","title":"Further Reading"},"174":{"body":"In programming languages reflection is the ability of a program to examine and modify its own structure and behavior. In Move, there's a limited form of reflection that allows you to inspect the type of a value at runtime. This is useful when you need to store type information in a homogeneous collection, or when you need to check if a type belongs to a package. Type reflection is implemented in the Standard Library module std::type_name. Expressed very roughly, it gives a single function get() which returns the name of the type T.","breadcrumbs":"Syntax Basics » Type Reflection » Type Reflection","id":"174","title":"Type Reflection"},"175":{"body":"The module is pretty straightforward, and operations allowed on the result are limited to getting a string representation and extracting the module and address of the type. module book::type_reflection { use std::type_name; /// A function that returns the name of the type `T` and its module and address. public fun i_dont_know_you(): (String, String, String) { let type_name: TypeName = type_name::get(); // there's a way to borrow let str: &String = type_name.borrow_string(); let module_name: String = type_name.get_module(); let address_str: String = type_name.get_address(); // and a way to consume the value let str = type_name.into_string(); (str, module_name, address_str) } #[test_only] struct MyType {} #[test] fun test_type_reflection() { let (type_name, module_name, address_str) = i_dont_know_you(); // assert!(module_name == b\"type_reflection\".to_string(), 1); }\n}","breadcrumbs":"Syntax Basics » Type Reflection » In practice","id":"175","title":"In practice"},"176":{"body":"Type reflection is an important part of the language, and it is a crucial part of some of the more advanced patterns.","breadcrumbs":"Syntax Basics » Type Reflection » Further reading","id":"176","title":"Further reading"},"177":{"body":"In previous chapters we've covered the basics of Move and Sui Storage Model . Now it's time to dive deeper into the advanced topics of Sui programmability. This chapter introduces more complex concepts, practices and features of Move and Sui that are essential for building more sophisticated applications. It is intended for developers who are already familiar with the basics of Move and Sui, and are looking to expand their knowledge and skills.","breadcrumbs":"Advanced Programmability » Advanced Programmability","id":"177","title":"Advanced Programmability"},"178":{"body":"Due to the object model and the data organization model of Sui, some operations can be performed in a more efficient and parallelized way. This is called the fast path . Transaction that touches shared state requires consensus because it can be accessed by multiple parties at the same time. However, if the transaction only touches the private state (owned objects), there is no need for consensus. This is the fast path. We have a favorite example for this: a coffee machine and a coffee cup. The coffee machine placed in the office is a shared resource - everyone can use it, but there can be only one user at a time. The coffee cup, on the other hand, is a private resource - it belongs to a specific person, and only that person can use it. To make coffee, one needs to use the coffee machine and wait if there's someone else using it. However, once the coffee is made and poured into the cup, the person can take the cup and drink the coffee without waiting for anyone else. The same principle applies to Sui. If a transaction only touches the private state (the cup with coffee), it can be executed without consensus. If it touches the shared state (the coffee machine), it requires consensus. This is the fast path.","breadcrumbs":"Advanced Programmability » Fast Path » Fast Path","id":"178","title":"Fast Path"},"179":{"body":"Consensus is only required for mutating the shared state. If the object is immutable, it is treated as a \"constant\" and can be accessed in parallel. Frozen objects can be used to share unchangable data between multiple parties without requiring consensus.","breadcrumbs":"Advanced Programmability » Fast Path » Frozen objects","id":"179","title":"Frozen objects"},"18":{"body":"Let's create a new module called hello_world. To do so, create a new file in the sources folder called hello_world.move. So that the structure looks like this: sources/ hello_world.move\nMove.toml And then add the following code to the hello_world.move file: // sources/hello_world.move\nmodule book::hello_world { use std::string::{Self, String}; public fun hello_world(): String { string::utf8(b\"Hello, World!\") }\n} While it's not a hard restriction, it's is considered a good practice to name the module the same as the file. So, in our case, the module name is hello_world and the file name is hello_world.move. The module name and function names should be in snake_case - all lowercase letters with underscores between words. You can read more about coding conventions in the Coding Conventions section.","breadcrumbs":"Your First Move » Hello World! » Create a module","id":"18","title":"Create a module"},"180":{"body":"module book::coffee_machine { use sui::object::{Self, UID}; use sui::tx_context::TxContext; /// Coffee machine is a shared object, hence requires `key` ability. struct CoffeeMachine has key { id: UID, counter: u16 } /// Cup is an owned object. struct Cup has key, store { id: UID, has_coffee: bool } /// Initialize the module and share the `CoffeeMachine` object. fun init(ctx: &mut TxContext) { transfer::share_object(CoffeeMachine { id: object::new(ctx), counter: 0 }); } /// Take a cup out of thin air. This is a fast path operation. public fun take_cup(ctx: &mut TxContext): Cup { Cup { id: object::new(ctx), has_coffee: false } } /// Make coffee and pour it into the cup. Requires consensus. public fun make_coffee(mut machine: &mut CoffeeMachine, mut cup: &mut Cup) { machine.counter = machine.counter + 1; cup.has_coffee = true; } /// Drink coffee from the cup. This is a fast path operation. public fun drink_coffee(mut cup: &mut Cup) { cup.has_coffee = false; } /// Put the cup back. This is a fast path operation. public fun put_back(cup: Cup) { let Cup { id, has_coffee: _ } = cup; object::delete(id); }\n}","breadcrumbs":"Advanced Programmability » Fast Path » In practice","id":"180","title":"In practice"},"181":{"body":"The Clock object with the reserved address 0x6 is a special case of a shared object which maintains the fast path. While being a shared object, it cannot be passed by a mutable reference in a regular transaction. An attempt to do so will not succeed, and the transaction will be rejected.","breadcrumbs":"Advanced Programmability » Fast Path » Special case: Clock","id":"181","title":"Special case: Clock"},"182":{"body":"Every transaction has the execution context. The context is a set of pre-defined variables that are available to the program during execution. For example, every transaction has a sender address, and the transaction context contains a variable that holds the sender address. The transaction context is available to the program through the TxContext struct. The struct is defined in the sui::tx_context module and contains the following fields: File: sui-framework/tx_context.move /// Information about the transaction currently being executed.\n/// This cannot be constructed by a transaction--it is a privileged object created by\n/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`.\nstruct TxContext has drop { /// The address of the user that signed the current transaction sender: address, /// Hash of the current transaction tx_hash: vector, /// The current epoch number epoch: u64, /// Timestamp that the epoch started at epoch_timestamp_ms: u64, /// Counter recording the number of fresh id's created while executing /// this transaction. Always 0 at the start of a transaction ids_created: u64\n} Transaction context cannot be constructed manually or directly modified. It is created by the system and passed to the function as a reference in a transaction. Any function called in a Transaction Block has access to the context and can pass it into the nested calls. TxContext has to be the last argument in the function signature.","breadcrumbs":"Advanced Programmability » Transaction Context » Transaction Context","id":"182","title":"Transaction Context"},"183":{"body":"With only exception of the ids_created, all of the fields in the TxContext have getters. The getters are defined in the sui::tx_context module and are available to the program. The getters don't require &mut because they don't modify the context. public fun some_action(ctx: &TxContext) { let _me = ctx.sender() let _epoch = ctx.epoch(); let _digest = ctx.digest(); // ...\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Reading the Transaction Context","id":"183","title":"Reading the Transaction Context"},"184":{"body":"The TxContext is required to create new objects (or just UIDs) in the system. New UIDs are derived from the transaction digest, and for the digest to be unique, there needs to be a changing parameter. Sui uses the ids_created field for that. Every time a new UID is created, the ids_created field is incremented by one. This way, the digest is always unique. Internally, it is represented as the derive_id function: File: sui-framework/tx_context.move native fun derive_id(tx_hash: vector, ids_created: u64): address;","breadcrumbs":"Advanced Programmability » Transaction Context » Mutability","id":"184","title":"Mutability"},"185":{"body":"The underlying derive_id function can also be utilized in your program to generate unique addresses. The function itself is not exposed, but a wrapper function fresh_object_address is available in the sui::tx_context module. It may be useful if you need to generate a unique identifier in your program. File: sui-framework/tx_context.move /// Create an `address` that has not been used. As it is an object address, it will never\n/// occur as the address for a user.\n/// In other words, the generated address is a globally unique object ID.\npublic fun fresh_object_address(ctx: &mut TxContext): address { let ids_created = ctx.ids_created; let id = derive_id(*&ctx.tx_hash, ids_created); ctx.ids_created = ids_created + 1; id\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Generating unique addresses","id":"185","title":"Generating unique addresses"},"186":{"body":"Collection types are a fundamental part of any programming language. They are used to store a collection of data, such as a list of items. The vector type has already been covered in the vector section , and in this chapter we will cover the collection types offered by the Sui Framework. VecSet VecMap","breadcrumbs":"Advanced Programmability » Collections » Collections","id":"186","title":"Collections"},"187":{"body":"VecSet is a collection type that stores a set of unique items. It is similar to a vector, but it does not allow duplicate items. This makes it useful for storing a collection of unique items, such as a list of unique IDs or addresses. module book::collections { use sui::vec_set::{Self, VecSet}; struct App has drop { /// `VecSet` used in the struct definition subscribers: VecSet
} #[test] fun vec_set_playground() { let set = vec_set::empty(); // create an empty set let set = vec_set::sigleton(1); // create a set with a single item set.insert(2); // add an item to the set set.insert(3); assert!(set.contains(1), 0); // check if an item is in the set assert!(set.size() == 3, 1); // get the number of items in the set assert!(!set.is_empty(), 2); // check if the set is empty set.remove(2); // remove an item from the set }\n}","breadcrumbs":"Advanced Programmability » Collections » VecSet","id":"187","title":"VecSet"},"188":{"body":"VecMap is a collection type that stores a map of key-value pairs. It is similar to a VecSet, but it allows you to associate a value with each item in the set. This makes it useful for storing a collection of key-value pairs, such as a list of addresses and their balances, or a list of user IDs and their associated data. Keys in a VecMap are unique, and each key can only be associated with a single value. If you try to insert a key-value pair with a key that already exists in the map, the old value will be replaced with the new value. module book::collections { use std::string::String; use sui::vec_map::{Self, VecMap}; struct Metadata has drop { name: String /// `VecMap` used in the struct definition attributes: VecMap } #[test] fun vec_map_playground() { let mut map = vec_map::empty(); // create an empty map map.insert(2, b\"two\".to_string()); // add a key-value pair to the map map.insert(3, b\"three\".to_string()); assert!(map.contains(1), 0); // check if a key is in the map map.remove(&2); // remove a key-value pair from the map }\n}","breadcrumbs":"Advanced Programmability » Collections » VecMap","id":"188","title":"VecMap"},"189":{"body":"Sui Object model allows objects to be attached to other objects as dynamic fields . The behavior is similar to how a Map works in other programming languages, however, the types of attached objects can be any. This allows for a wide range of use cases, such as attaching an accessory to a character, or storing large, non-heterogeneous collections in a single object.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields","id":"189","title":"Dynamic Fields"},"19":{"body":"Let's take a closer look at the code we just wrote: module book::hello_world {\n} The first line of code declares a module called hello_world stored at the address book. The contents of the module go inside the curly braces {}. The last line closes the module declaration with a closing curly brace }. We will go through the module declaration in more detail in the Modules section. Then we import two members of the std::string module (which is part of the std package). The string module contains the String type, and the Self keyword imports the module itself, so we can use its functions. use std::string::{Self, String}; Then we define a hello_world function using the keyword fun which takes no arguments and returns a String type. The public keyword marks the visibility of the function - \"public\" functions can be accessed by other modules. The function body is inside the curly braces {}. In the Function section we will learn more about functions. public fun hello_world(): String { string::utf8(b\"Hello, World!\") } The function body consists of a single function call to the string::utf8 function and returns a String type. The expression is a bytestring literal b\"Hello World!\".","breadcrumbs":"Your First Move » Hello World! » Dive into the code","id":"19","title":"Dive into the code"},"190":{"body":"Dynamic fields are attached to an object via a key , which can be any type with the store , copy and drop abilities. The key is used to access the attached object, and can be used to update or remove it. The attached object can be any type, if it has the store ability.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Structure","id":"190","title":"Structure"},"191":{"body":"Dynamic fields are defined in the sui::dynamic_field module. module book::accessories { struct Character has key { id: UID, name: String } /// An accessory that can be attached to a character. struct Accessory has store { type: String, name: String, }\n}","breadcrumbs":"Advanced Programmability » Dynamic Fields » Usage","id":"191","title":"Usage"},"192":{"body":"TODO: dynamic object fields discoverability benefits of DOFs","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Object Fields","id":"192","title":"Dynamic Object Fields"},"193":{"body":"TODO: explain how custom fields ca","breadcrumbs":"Advanced Programmability » Dynamic Fields » Custom Fields for Keys","id":"193","title":"Custom Fields for Keys"},"194":{"body":"Dynamic fields are used for: Heterogeneous collections Storing large data that does not fit into the object limit size Attaching objects to other objects as a part of application logic Extending existing types with additional data Storing data that is not always present","breadcrumbs":"Advanced Programmability » Dynamic Fields » Applications","id":"194","title":"Applications"},"195":{"body":"","breadcrumbs":"Advanced Programmability » Testing » Testing","id":"195","title":"Testing"},"196":{"body":"","breadcrumbs":"Advanced Programmability » Testing » #[test] and #[test_only]","id":"196","title":"#[test] and #[test_only]"},"197":{"body":"","breadcrumbs":"Advanced Programmability » Testing » Unit Testing with Dummy Context","id":"197","title":"Unit Testing with Dummy Context"},"198":{"body":"","breadcrumbs":"Advanced Programmability » Testing » Utilizing the Test Scenario","id":"198","title":"Utilizing the Test Scenario"},"199":{"body":"When publishing a package that is intented to be used (an NFT protocol or a library), it is important to showcase how this package can be used. This is where examples come in handy. There's no special functionality for examples in Move, however, there are some conventions that are used to mark examples. First of all, only sources are included into the package bytecode, so any code placed in a different directory will not be included, but will be tested! This is why placing examples into a separate examples/ directory is a good idea. sources/ protocol.move library.move\ntests/ protocol_test.move\nexamples/ my_example.move\nMove.toml","breadcrumbs":"Advanced Programmability » Testing » Adding Examples","id":"199","title":"Adding Examples"},"2":{"body":"2019 - Libra is announced 2019 - Move a Language with Programmable Resources 2022 - The Diem Association is closed, Move is open sourced 2023 - ... 2024 - Move 2024 is released","breadcrumbs":"History » History","id":"2","title":"History"},"20":{"body":"To compile the package, run the following command: $ sui move build If you see this (or - for other binaries - similar) output, then everything is fine, and the code compiled successfully: > UPDATING GIT DEPENDENCY https://github.com/move-language/move.git\n> INCLUDING DEPENDENCY MoveStdlib\n> BUILDING Book Congratulations! You've just compiled your first Move program. Now, let's add a test and some logging so we see that it works.","breadcrumbs":"Your First Move » Hello World! » Compile the package","id":"20","title":"Compile the package"},"200":{"body":"Sui has two ways of accessing the current time: Epoch and Time. The former represents operational periods in the system and changed roughly every 24 hours. The latter represents the current time in milliseconds since the Unix Epoch. Both can be accessed freely in the program.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch and Time","id":"200","title":"Epoch and Time"},"201":{"body":"Epochs are used to separate the system into operational periods. During an epoch the validator set is fixed, however, at the epoch boundary, the validator set can be changed. Epochs play a crucial role in the consensus algorithm and are used to determine the current validator set. They are also used as measurement in the staking mechanism. Epoch can be read from the transaction context : public fun current_epoch(ctx: &TxContext) { let epoch = ctx.epoch(); // ...\n} It is also possible to get the unix timestamp of the epoch start: public fun current_epoch_start(ctx: &TxContext) { let epoch_start = ctx.epoch_timestamp_ms(); // ...\n} Normally, epochs are used in staking and system operations, however, in custom scenarios they can be used to emulate 24h periods. They are cricital if an application relies on the staking logic or needs to know the current validator set.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch","id":"201","title":"Epoch"},"202":{"body":"For a more precise time measurement, Sui provides the Clock object. It is a system object that is updated during checkpoints by the system, which stores the current time in milliseconds since the Unix Epoch. The Clock object is defined in the sui::clock module and has a reserved address 0x6. Clock is a shared object and normally would require consensus to access. However, Clock is special, and the system won't allow accessing it mutably, so that the only way to access it is immutably. This limitation allows parallel access to the Clock object and makes it a fast path operation . File: sui-framework/clock.move /// Singleton shared object that exposes time to Move calls. This\n/// object is found at address 0x6, and can only be read (accessed\n/// via an immutable reference) by entry functions.\n///\n/// Entry Functions that attempt to accept `Clock` by mutable\n/// reference or value will fail to verify, and honest validators\n/// will not sign or execute transactions that use `Clock` as an\n/// input parameter, unless it is passed by immutable reference.\nstruct Clock has key { id: UID, /// The clock's timestamp, which is set automatically by a /// system transaction every time consensus commits a /// schedule, or by `sui::clock::increment_for_testing` during /// testing. timestamp_ms: u64,\n} There is only one public function available in the Clock module - timestamp_ms. It returns the current time in milliseconds since the Unix Epoch. /// Clock needs to be passed as an immutable reference.\npublic fun current_time(clock: &Clock) { let _time = clock.timestamp_ms(); // ...\n}","breadcrumbs":"Advanced Programmability » Epoch and Time » Time","id":"202","title":"Time"},"203":{"body":"TODO: how to use Clock in tests.","breadcrumbs":"Advanced Programmability » Epoch and Time » Testing","id":"203","title":"Testing"},"204":{"body":"Some of the language features combined together can create patterns that are similar to other programming languages. The simplest example would be \"getters and setters\" - functions that get and set the value of a field. This pattern is possible, because struct fields are private by default, and can only be accessed through functions. However, there are more advanced patterns, such as the abstract class. An abstract class is a class that cannot be instantiated, but can be inherited from. While Move does not have inheritance, it has generic structs, which can be instantiated with different types. This allows us to create a generic struct that can be used as an abstract class. Combined with a set of Witness-gated functions, this allows us to create a generic struct with a generic implementation. Some of the methods in this approach will be shared and available to all implementations, while others will be abstract and will need to be implemented by the concrete implementations.","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Abstract Class","id":"204","title":"Abstract Class"},"205":{"body":"","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Generic Struct","id":"205","title":"Generic Struct"},"206":{"body":"","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Common methods","id":"206","title":"Common methods"},"207":{"body":"","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Witness-gated Functions","id":"207","title":"Witness-gated Functions"},"208":{"body":"While this approach imitates the abstract class pattern well, it is not the same as the abstract class in OOP. The main difference is that the abstract class in OOP and its implementors have different type. In Move, the base type stays the same, and the implementors set a generic type parameter. Another notable difference is that due to lack of dynamic dispatch and interfaces, the implemented methods are not available through the base type and can even be missing.","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Differences from OOP","id":"208","title":"Differences from OOP"},"209":{"body":"The Sui Framework uses this pattern to implement the Coin type and the underlying Balance. Its variation is also used in the Closed Loop Token implementation, however, the latter is a bit more complex, because it uses the Request pattern to dynamically implement the interface.","breadcrumbs":"Advanced Programmability » Witness and Abstract Implementation » Usage in Sui Framework","id":"209","title":"Usage in Sui Framework"},"21":{"body":"To run a Move program there needs to be an environment which stores packages and executes transactions. The best way to test a Move program is to write some tests and run them locally. Move has built-in testing functionality, and the tests are written in Move as well. In this section, we will learn how to write tests for our hello_world module. First, let's try to run tests. All of the Move binaries support the test command, and this is the command we will use to run tests: $ sui move test If you see similar output, then everything is fine, and the test command has run successfully: INCLUDING DEPENDENCY MoveStdlib\nBUILDING Book Samples\nRunning Move unit tests\nTest result: OK. Total tests: 0; passed: 0; failed: 0 As you can see, the test command has run successfully, but it didn't find any tests. Let's add some tests to our module.","breadcrumbs":"Your First Move » Adding Tests » Adding Tests","id":"21","title":"Adding Tests"},"210":{"body":"This section contains a collection of guides that cover various aspects of programming on Sui. They are intended to provide a deeper understanding of Sui blockchain and Move language, while also aiming at practical challenges and solutions.","breadcrumbs":"Guides » Guides","id":"210","title":"Guides"},"211":{"body":"Move 2024 is the new edition of the Move language that is maintained by Mysten Labs. This guide is intended to help you understand the differences between the 2024 edition and the previous version of the Move language.","breadcrumbs":"Guides » 2024 Migration Guide » Move 2024 Migration Guide","id":"211","title":"Move 2024 Migration Guide"},"212":{"body":"To use the new edition, you need to specify the edition in the move file. The edition is specified in the move file using the edition keyword. Currently, the only available edition is 2024.alpha. edition = \"2024.alpha\";","breadcrumbs":"Guides » 2024 Migration Guide » Using the New Edition","id":"212","title":"Using the New Edition"},"213":{"body":"In Move 2024, structs get a visibility modifier. Just like functions, structs can be public, friend, or private. // Move 2020\nstruct Book {} // Move 2024\npublic struct Book {}","breadcrumbs":"Guides » 2024 Migration Guide » Struct Visibility","id":"213","title":"Struct Visibility"},"214":{"body":"In the new edition, functions which have a struct as the first argument are associated with the struct. This means that the function can be called using the dot notation. Methods defined in the same module with the type are automatically exported. public fun count(c: &Counter): u64 { /* ... */ } fun use_counter() { // move 2020 let count = counter::count(&c); // move 2024 let count = c.count();\n}","breadcrumbs":"Guides » 2024 Migration Guide » Struct Methods","id":"214","title":"Struct Methods"},"215":{"body":"The borrow and borrow_mut functions (when defined) can be accessed using the square brackets. Just like the method syntax, the borrowing functions are associated with the type. fun play_vec() { let v = vector[1,2,3,4]; let first = v[0]; // calls vector::borrow(v, 0) v[0] = 5; // calls vector::borrow_mut(v, 0)\n}","breadcrumbs":"Guides » 2024 Migration Guide » Borrowing Operator","id":"215","title":"Borrowing Operator"},"216":{"body":"In Move 2024, generic methods can be associated with types. The alias can be defined for any type privately to the module, or publicly, if the type is defined in the same module. use fun my_custom_function as vector.do_magic;","breadcrumbs":"Guides » 2024 Migration Guide » Method Aliases","id":"216","title":"Method Aliases"},"217":{"body":"Macros are introduced in Move 2024. And assert! is no longer a built-in function - Instead, it's a macro. // can be called as for!(0, 10, |i| call(i));\nmacro fun for($start: u64, $stop: u64, $body: |u64|) { let mut i = $start; let stop = $stop; while (i < stop) { $body(i); i = i + 1 }\n}","breadcrumbs":"Guides » 2024 Migration Guide » Macros","id":"217","title":"Macros"},"218":{"body":"To talk about best practices for upgradability, we need to first understand what can be upgraded in a package. The base premise of upgradability is that an upgrade should not break public compatibility with the previous version. The parts of the module which can be used in dependent packages should not change their static signature. This applies to modules - a module can not be removed from a package, public structs - they can be used in function signatures and public functions - they can be called from other packages. // module can not be removed from the package\nmodule book::upgradable { // dependencies can be changed use sui::tx_context::TxContext; use sui::object::UID; // public structs can not be removed and can't be changed public struct Book has key { id: UID } // public functions can not be removed and their signature can never change public fun create_book(ctx: &mut TxContext): Book { create_book_internal(ctx) } // friend-only functions can be removed and changed public(friend) fun create_book_friend(ctx: &mut TxContext): Book { create_book_internal(ctx) } // entry functions can be removed and changed as long they're not public entry fun create_book_entry(ctx: &mut TxContext): Book { create_book_internal(ctx) } // private functions can be removed and changed fun create_book_internal(ctx: &mut TxContext): Book { abort 0 }\n}","breadcrumbs":"Guides » Upgradability Practices » Upgradability Practices","id":"218","title":"Upgradability Practices"},"219":{"body":"TODO: Add a section about entry and friend functions","breadcrumbs":"Guides » Upgradability Practices » Using entry and friend functions","id":"219","title":"Using entry and friend functions"},"22":{"body":"When the test command runs, it looks for all tests in all files in the directory. Tests can be either placed separate modules or in the same module as the code they test. First, let's add a test function to the hello_world module: module book::hello_world { use std::string::{Self, String}; public fun hello_world(): String { string::utf8(b\"Hello, World!\") } #[test] fun test_is_hello_world() { let expected = string::utf8(b\"Hello, World!\"); assert!(hello_world() == expected, 0) }\n} The test function is a function with a #[test] attribute. Normally it takes no arguments (but it can take arguments in some cases - you'll learn more about it closer to the end of this book) and returns nothing. Tests placed in the same module as the code they test are called \"unit tests\". They can access all functions and types in the module. We'll go through them in more detail in the Test section. #[test] fun test_is_hello_world() { let expected = string::utf8(b\"Hello, World!\"); assert!(hello_world() == expected, 0) } Inside the test function, we define the expected outcome by creating a String with the expected value and assign it to the expected variable. Then we use the special built-in assert!() which takes two arguments: a conditional expression and an error code. If the expression evaluates to false, then the test fails with the given error code. The equality operator == compares the actual and expected values and returns true if they are equal. We'll learn more about expressions in the Expression and Scope section. Now let's run the test command again: $ sui move test You should see this output, which means that the test has run successfully: ...\nTest result: OK. Total tests: 1; passed: 1; failed: 0","breadcrumbs":"Your First Move » Adding Tests » Your first test","id":"22","title":"Your first test"},"220":{"body":"To discard previous versions of the package, the objects can be versioned. As long as the object contains a version field, and the code which uses the object expects and asserts a specific version, the code can be force-migrated to the new version. Normally, after an upgrade, admin functions can be used to update the version of the shared state, so that the new version of code can be used, and the old version aborts with a version mismatch. module book::versioned_state { const EVersionMismatch: u64 = 0; const VERSION: u8 = 1; /// The shared state (can be owned too) struct SharedState has key { id: UID, version: u8, /* ... */ } public fun mutate(state: &mut SharedState) { assert!(state.version == VERSION, EVersionMismatch); // ... }\n}","breadcrumbs":"Guides » Upgradability Practices » Versioning objects","id":"220","title":"Versioning objects"},"221":{"body":"There's a common pattern in Sui which allows changing the stored configuration of an object while retaining the same object signature. This is done by keeping the base object simple and versioned and adding an actual configuration object as a dynamic field. Using this anchor pattern, the configuration can be changed with package upgrades while keeping the same base object signature. module book::versioned_config { /// The base object struct Config has key { id: UID, version: u16 } /// The actual configuration struct ConfigV1 has store { data: Bag, metadata: VecMap } // ...\n}","breadcrumbs":"Guides » Upgradability Practices » Versioning configuration with dynamic fields","id":"221","title":"Versioning configuration with dynamic fields"},"222":{"body":"TODO: add two patterns for modular architecture: object capability (SuiFrens) and witness registry (SuiNS)","breadcrumbs":"Guides » Upgradability Practices » Modular architecture","id":"222","title":"Modular architecture"},"223":{"body":"To guarantee the safety and security of the network, Sui has certain limits and restrictions. These limits are in place to prevent abuse and to ensure that the network remains stable and efficient. This guide provides an overview of these limits and restrictions, and how to build your application to work within them. The limits are defined in the protocol configuration and are enforced by the network. If any of the limits are exceeded, the transaction will either be rejected or aborted. The limits, being a part of the protocol, can only be changed through a network upgrade.","breadcrumbs":"Guides » Building against Limits » Building against Limits","id":"223","title":"Building against Limits"},"224":{"body":"The size of a transaction is limited to 128KB. This includes the size of the transaction payload, the size of the transaction signature, and the size of the transaction metadata. If a transaction exceeds this limit, it will be rejected by the network.","breadcrumbs":"Guides » Building against Limits » Transaction Size","id":"224","title":"Transaction Size"},"225":{"body":"The size of an object is limited to 256KB. This includes the size of the object data. If an object exceeds this limit, it will be rejected by the network. While a single object cannot bypass this limit, for more extensive storage options, one could use a combination of a base object with other attached to it using dynamic fields (eg Bag).","breadcrumbs":"Guides » Building against Limits » Object Size","id":"225","title":"Object Size"},"226":{"body":"The size of a single pure argument is limited to 16KB. A transaction argument bigger than this limit will result in execution failure. So in order to create a vector of more than ~500 addresses (given that a single address is 32 bytes), it needs to be joined dynamically either in Transaction Block or in a Move function. Standard functions like vector::append() can join two vectors of ~16KB resulting in a ~32KB of data as a single value.","breadcrumbs":"Guides » Building against Limits » Single Pure Argument Size","id":"226","title":"Single Pure Argument Size"},"227":{"body":"The maximum number of objects that can be created in a single transaction is 2048. If a transaction attempts to create more than 2048 objects, it will be rejected by the network. This also affects dynamic fields , as both the key and the value are objects. So the maximum number of dynamic fields that can be created in a single transaction is 1024.","breadcrumbs":"Guides » Building against Limits » Maximum Number of Objects created","id":"227","title":"Maximum Number of Objects created"},"228":{"body":"The maximum number of events that can be emitted in a single transaction is 1024. If a transaction attempts to emit more than 1024 events, it will be aborted.","breadcrumbs":"Guides » Building against Limits » Maximum Number of Events","id":"228","title":"Maximum Number of Events"},"229":{"body":"Whenever execution encounters an abort, transaction fails and abort code is returned to the caller. Move VM returns the module name that aborted the transaction and the abort code. This behavior is not fully transparent to the caller of the transaction, especially when a single function contains multiple calls to the same function which may abort. In this case, the caller will not know which call aborted the transaction, and it will be hard to debug the issue or provide meaningful error message to the user. module book::module_a { use book::module_b; public fun do_something() { let field_1 = module_b::get_field(1); // may abort with 0 /* ... a lot of logic ... */ let field_2 = module_b::get_field(2); // may abort with 0 /* ... some more logic ... */ let field_3 = module_b::get_field(3); // may abort with 0 }\n} The example above illustrates the case when a single function contains multiple calls which may abort. If the caller of the do_something function receives an abort code 0, it will be hard to understand which call to module_b::get_field aborted the transaction. To address this problem, there are common patterns that can be used to improve error handling.","breadcrumbs":"Guides » Better error handling » Better error handling","id":"229","title":"Better error handling"},"23":{"body":"Try replacing the equality operator == inside the assert! with the inequality operator != and run the test command again. assert!(hello_world() != expected, 0) You should see this output, which means that the test has failed: Running Move unit tests\n[ FAIL ] 0x0::hello_world::test_is_hello_world Test failures: Failures in 0x0::hello_world: ┌── test_is_hello_world ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/your-first-move/hello_world.move:14:9\n│ │\n│ 12 │ fun test_is_hello_world() {\n│ │ ------------------- In this function in 0x0::hello_world\n│ 13 │ let expected = string::utf8(b\"Hello, World!\");\n│ 14 │ assert!(hello_world() != expected, 0)\n│ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Test was not expected to error, but it aborted with code 0 originating in the module 00000000000000000000000000000000::hello_world rooted here\n│\n│\n└────────────────── Test result: FAILED. Total tests: 1; passed: 0; failed: 1 Tests are used to verify the execution of the code. If the code is correct, the test should pass, otherwise it should fail. In this case, the test failed because we intentionally made a mistake in the test code. However, normally you should write tests that check the correctness of the code, not the other way around! In the next section, we will learn how to debug Move programs and print intermediate values to the console.","breadcrumbs":"Your First Move » Adding Tests » Failed experiment","id":"23","title":"Failed experiment"},"230":{"body":"It is considered a good practice to provide a safe \"check\" function that returns a boolean value indicating whether an operation can be performed safely. If the module_b provides a function has_field that returns a boolean value indicating whether a field exists, the do_something function can be rewritten as follows: module book::module_a { use book::module_b; const ENoField: u64 = 0; public fun do_something() { assert!(module_b::has_field(1), ENoField); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(1), ENoField); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(1), ENoField); let field_3 = module_b::get_field(3); }\n} By adding custom checks before each call to module_b::get_field, the developer of the module_a takes control over the error handling. And it allows implementing the second rule.","breadcrumbs":"Guides » Better error handling » Rule 1: Handle all possible scenarios","id":"230","title":"Rule 1: Handle all possible scenarios"},"231":{"body":"The second trick, once the abort codes are handled by the caller module, is to use different abort codes for different scenarios. This way, the caller module can provide a meaningful error message to the user. The module_a can be rewritten as follows: module book::module_a { use book::module_b; const ENoFieldA: u64 = 0; const ENoFieldB: u64 = 1; const ENoFieldC: u64 = 2; public fun do_something() { assert!(module_b::has_field(1), ENoFieldA); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(1), ENoFieldB); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(1), ENoFieldC); let field_3 = module_b::get_field(3); }\n} Now, the caller module can provide a meaningful error message to the user. If the caller receives an abort code 0, it can be translated to \"Field 1 does not exist\". If the caller receives an abort code 1, it can be translated to \"Field 2 does not exist\". And so on.","breadcrumbs":"Guides » Better error handling » Rule 2: Abort with different codes","id":"231","title":"Rule 2: Abort with different codes"},"232":{"body":"A developer is often tempted to add a public function that would assert all the conditions and abort the execution. However, it is a better practice to create a function that returns a boolean value instead. This way, the caller module can handle the error and provide a meaningful error message to the user. module book::some_app_assert { const ENotAuthorized: u64 = 0; public fun do_a() { assert_is_authorized(); // ... } public fun do_b() { assert_is_authorized(); // ... } /// Don't do this public fun assert_is_authorized() { assert!(/* some condition */ true, ENotAuthorized); }\n} This module can be rewritten as follows: module book::some_app { const ENotAuthorized: u64 = 0; public fun do_a() { assert!(is_authorized(), ENotAuthorized); // ... } public fun do_b() { assert!(is_authorized(), ENotAuthorized); // ... } public fun is_authorized(): bool { /* some condition */ true } // a private function can still be used to avoid code duplication for a case // when the same condition with the same abort code is used in multiple places fun assert_is_authorized() { assert!(is_authorized(), ENotAuthorized); }\n} Utilizing these three rules will make the error handling more transparent to the caller of the transaction, and it will allow other developers to use custom abort codes in their modules.","breadcrumbs":"Guides » Better error handling » Rule 3: Return bool instead of assert","id":"232","title":"Rule 3: Return bool instead of assert"},"233":{"body":"Fast Path - term used to describe a transaction that does not involve shared objects, and can be executed without the need for consensus. Internal Type - type that is defined within the module. Fields of this type can not be accessed from outside the module, and, in case of \"key\"-only abilities, can not be used in public_* transfer functions.","breadcrumbs":"Appendix » Glossary » Glossary","id":"233","title":"Glossary"},"234":{"body":"key - ability that allows the struct to be used as a key in the storage. On Sui, the key ability marks an object and requires the first field to be a id: UID. store - ability that allows the struct to be stored inside other objects. This ability relaxes restrictions applied to internal structs, allowing public_* transfer functions to accept them as arguments. It also enables the object to be stored as a dynamic field. copy - ability that allows the struct to be copied. On Sui, the copy ability conflicts with the key ability, and can not be used together with it. drop - ability that allows the struct to be ignored or discarded. On Sui, the drop ability cannot be used together with the key ability, as objects are not allowed to be ignored.","breadcrumbs":"Appendix » Glossary » Abilities","id":"234","title":"Abilities"},"24":{"body":"Now that we have a package with a module and a test, let's take a slight detour and learn how to debug Move programs. Move Compiler has a built-in debugging tool that allows you to print intermediate values to the console. This is especially useful when you are writing tests and want to see what's going on inside the program.","breadcrumbs":"Your First Move » Debugging » Debugging","id":"24","title":"Debugging"},"25":{"body":"To use the debug module, we need to import it in our module. Imports are usually grouped together for readability and they are placed at the top of the module. Let's add the import statement to the hello_world module: module book::hello_world { use std::string::{Self, String}; use std::debug; // the added import! Having imported the std::debug module, we can now use its functions. Let's add a debug::print function call to the hello_world function. To achieve that we need to change the function body. Instead of returning the value right away we will assign it to a variable, print it to the console and then return it: public fun hello_world(): String { let result = string::utf8(b\"Hello, World!\"); debug::print(&result); result } First, run the build command: $ sui move build The output does not contain anything unusual, because our code was never executed. But running build is an important part of the routine - this way we make sure that the changes we added can compile. Let's run the test command now: $ sui move test The output of the test command now contains the \"Hello, World!\" string: INCLUDING DEPENDENCY MoveNursery\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING Book Samples\nRunning Move unit tests\n[debug] \"Hello, World!\"\n[ PASS ] 0x0::hello_world::test_is_hello_world\nTest result: OK. Total tests: 1; passed: 1; failed: 0 Now every time the hello_world function is run in tests, you'll see the \"Hello, World!\" string in the output.","breadcrumbs":"Your First Move » Debugging » New import","id":"25","title":"New import"},"26":{"body":"Debug should only be used in local environment and never published on-chain. Usually, during the publish, the debug module is either removed from the package or the publishing fails with an error. There's no way to use this functionality on-chain.","breadcrumbs":"Your First Move » Debugging » Correct usage","id":"26","title":"Correct usage"},"27":{"body":"There's one trick that allows you to save some time while debugging. Instead of adding a module-level import, use a fully qualified function name. This way you don't need to add an import statement to the module, but you can still use the debug::print function: std::debug::print(&my_variable); Be mindful that the value passed into debug should be a reference (the & symbol in front of the variable name). If you pass a value, the compiler will emit an error.","breadcrumbs":"Your First Move » Debugging » Hint","id":"27","title":"Hint"},"28":{"body":"Move CLI has a built-in tool for generating documentation for Move modules. The tool is included into the binary and available out of the box. In this section we will learn how to generate documentation for our hello_world module.","breadcrumbs":"Your First Move » Generating Docs » Generating Documentation","id":"28","title":"Generating Documentation"},"29":{"body":"To generate documentation for a module, we need to add documentation comments to the module and its functions. Documentation comments are written in Markdown and start with /// (three slashes). For example, let's add a documentation comment to the hello_world module: /// This module contains a function that returns a string \"Hello, World!\".\nmodule book::hello_world { Doc comments placed above the module are linked to the module itself, while doc comments placed above the function are linked to the function. /// As the name says: returns a string \"Hello, World!\". public fun hello_world(): String { string::utf8(b\"Hello, World!\") } If a documented member has an attribute, such as #[test] in the example below, the doc comment must be placed after the attribute: While it is possible to document #[test] functions, doc comments for tests will not be included in the generated documentation. #[test] /// This is a test for the `hello_world` function. fun test_is_hello_world() { let expected = string::utf8(b\"Hello, World!\"); let actual = hello_world(); assert!(actual == expected, 0) }","breadcrumbs":"Your First Move » Generating Docs » Adding documentation comments","id":"29","title":"Adding documentation comments"},"3":{"body":"This chapter covers the prerequisites for the Move language: how to set up your IDE, how to install the compiler and what is Move 2024. If you are already familiar with these topics or have a CLI installed, you can skip this chapter and proceed to the next one .","breadcrumbs":"Before we begin » Before we begin","id":"3","title":"Before we begin"},"30":{"body":"To generate documentation for a module, we need to run the sui move build command with a --doc flag. Let's run the command: $ sui move build --doc\n...\n...\nBUILDING Book Samples Alternatively, you can use move test --doc - this can be useful if you want to test and generate documentation at the same time. For example, as a part of your CI/CD pipeline. Once the build is complete, the documentation will be available in the build/docs directory. Each modile will have its own .md file. The documentation for the hello_world module will be available in the build/docs/hello_world.md file. Click to see an example of the `hello_world.md` contents # Module `0x0::hello_world`\nThis module contains a function that returns a string \"Hello, World!\".\n- [Function `hello_world`](#0x0_hello_world_hello_world)\n
use 0x1::debug;\nuse 0x1::string;\n
\n ## Function `hello_world`\nAs the name says: returns a string \"Hello, World!\".\n
fun hello_world(): string::String\n
\n
\nImplementation\n
fun hello_world(): String { let result = string::utf8(b\"Hello, World!\"); debug::print(&result); result\n}\n
\n
","breadcrumbs":"Your First Move » Generating Docs » Generating documentation","id":"30","title":"Generating documentation"},"31":{"body":"In this chapter you will learn about the basic concepts of Sui and Move. You will learn what is a package, how to interact with it, what is an account and a transaction, and how data is stored on Sui. While this chapter is not a complete reference, and you should refer to the Sui Documentation for that, it will give you a good understanding of the basic concepts required to write Move programs on Sui.","breadcrumbs":"Concepts » Concepts","id":"31","title":"Concepts"},"32":{"body":"Move is a language for writing smart contracts - programs that stored and run on the blockchain. A single program is organized into a package. A package is published on the blockchain and is identified by an address . A published package can be interacted with by sending transactions calling its functions. It can also act as a dependency for other packages. To create a new package, use the sui move new command. To learn more about the command, run sui move new --help. Package consists of modules - separate scopes that contain functions, types, and other items. package 0x... module a struct A1 fun hello_world() module b struct B1 fun hello_package()","breadcrumbs":"Concepts » What is a Package » Packages","id":"32","title":"Packages"},"33":{"body":"Locally, a package is a directory with a Move.toml file and a sources directory. The Move.toml file - called the \"package manifest\" - contains metadata about the package, and the sources directory contains the source code for the modules. Packages usually looks like this: sources/ my_module.move another_module.move ...\ntests/ ...\nexamples/ using_my_module.move\nMove.toml The tests directory is optional and contains tests for the package. Code placed into the tests directory is not published on-chain and is only availably in tests. The examples directory can be used for code examples, and is also not published on-chain.","breadcrumbs":"Concepts » What is a Package » Package Structure","id":"33","title":"Package Structure"},"34":{"body":"During development, package doesn't have an address and it needs to be set to 0x0. Once a package is published, it gets a single unique address on the blockchain containing its modules' bytecode. A published package becomes immutable and can be interacted with by sending transactions. 0x... my_module: another_module: ","breadcrumbs":"Concepts » What is a Package » Published Package","id":"34","title":"Published Package"},"35":{"body":"Package Manifest Address Publishing a Package","breadcrumbs":"Concepts » What is a Package » Links","id":"35","title":"Links"},"36":{"body":"The Move.toml is a manifest file that describes the package and its dependencies. It is written in TOML format and contains multiple sections, the most important of which are [package], [dependencies] and [addresses]. [package]\nname = \"my_project\"\nversion = \"0.0.0\"\nedition = \"2024\" [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } [addresses]\nstd = \"0x1\"\nalice = \"0xA11CE\" [dev-addresses]\nalice = \"0xB0B\"","breadcrumbs":"Concepts » Manifest » Package Manifest","id":"36","title":"Package Manifest"},"37":{"body":"","breadcrumbs":"Concepts » Manifest » Sections","id":"37","title":"Sections"},"38":{"body":"The [package] section is used to describe the package. None of the fields in this section are published on chain, but they are used in tooling and release management; they also specify the Move edition for the compiler. name - the name of the package when it is imported; version - the version of the package, can be used in release management; edition - the edition of the Move language; currently, the only valid value is 2024.","breadcrumbs":"Concepts » Manifest » Package","id":"38","title":"Package"},"39":{"body":"The [dependencies] section is used to specify the dependencies of the project. Each dependency is specified as a key-value pair, where the key is the name of the dependency, and the value is the dependency specification. The dependency specification can be a git repository URL or a path to the local directory. # git repository\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } # local directory\nMyPackage = { local = \"../my-package\" } Packages also import addresses from other packages. For example, the Sui dependency adds the std and sui addresses to the project. These addresses can be used in the code as aliases for the addresses.","breadcrumbs":"Concepts » Manifest » Dependencies","id":"39","title":"Dependencies"},"4":{"body":"Move is a compiled language, so you need to install a compiler to be able to write and run Move programs. The compiler is included into the Sui binary, which can be installed or downloaded using one of the methods below.","breadcrumbs":"Before we begin » Install Sui » Install Sui","id":"4","title":"Install Sui"},"40":{"body":"Sometimes dependencies have conflicting versions of the same package. For example, if you have two dependencies that use different versions of the Sui package, you can override the dependency in the [dependencies] section. To do so, add the override field to the dependency. The version of the dependency specified in the [dependencies] section will be used instead of the one specified in the dependency itself. [dependencies]\nSui = { override = true, git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }","breadcrumbs":"Concepts » Manifest » Resolving version conflicts with override","id":"40","title":"Resolving version conflicts with override"},"41":{"body":"It is possible to add [dev-dependencies] section to the manifest. It is used to override dependencies in the dev and test modes. For example, if you want to use a different version of the Sui package in the dev mode, you can add a custom dependency specification to the [dev-dependencies] section.","breadcrumbs":"Concepts » Manifest » Dev-dependencies","id":"41","title":"Dev-dependencies"},"42":{"body":"The [addresses] section is used to add aliases for the addresses. Any address can be specified in this section, and then used in the code as an alias. For example, if you add alice = \"0xA11CE\" to this section, you can use alice as 0xA11CE in the code.","breadcrumbs":"Concepts » Manifest » Addresses","id":"42","title":"Addresses"},"43":{"body":"The [dev-addresses] section is the same as [addresses], but only works for the test and dev modes. Important to note that it is impossible to introduce new aliases in this section, only override the existing ones. So in the example above, if you add alice = \"0xB0B\" to this section, the alice address will be 0xB0B in the test and dev modes, and 0xA11CE in the regular build.","breadcrumbs":"Concepts » Manifest » Dev-addresses","id":"43","title":"Dev-addresses"},"44":{"body":"The TOML format supports two styles for tables: inline and multiline. The examples above are using the inline style, but it is also possible to use the multiline style. You wouldn't want to use it for the [package] section, but it can be useful for the dependencies. # Inline style\n[dependencies]\nSui = { override = true, git = \"\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nMyPackage = { local = \"../my-package\" } # Multiline style\n[dependencies.Sui]\noverride = true\ngit = \"https://github.com/MystenLabs/sui.git\"\nsubdir = \"crates/sui-framework/packages/sui-framework\"\nrev = \"framework/testnet\" [dependencies.MyPackage]\nlocal = \"../my-package\"","breadcrumbs":"Concepts » Manifest » TOML styles","id":"44","title":"TOML styles"},"45":{"body":"Packages in the Move Documentation","breadcrumbs":"Concepts » Manifest » Links","id":"45","title":"Links"},"46":{"body":"Address is a unique identifier of a location on the blockchain. It is used to identify packages , accounts , and objects . Address has a fixed size of 32 bytes and is usually represented as a hexadecimal string prefixed with 0x. Addresses are case insensitive. 0xe51ff5cd221a81c3d6e22b9e670ddf99004d71de4f769b0312b68c7c4872e2f1 The address above is an example of a valid address. It is 64 characters long (32 bytes) and is prefixed with 0x. Sui also has reserved addresses that are used to identify standard packages and objects. Reserved addresses are typically simple values that are easy to remember and type. For example, the address of the Standard Library is 0x1. Addresses, shorter than 32 bytes, are padded with zeros to the left. 0x1 = 0x0000000000000000000000000000000000000000000000000000000000000001 Here are some examples of reserved addresses: 0x1 - address of the Sui Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x5 - address of the Sui System object 0x6 - address of the system Clock object 0x403 - address of the DenyList system object","breadcrumbs":"Concepts » Addresses » Addresses","id":"46","title":"Addresses"},"47":{"body":"Address type in Move","breadcrumbs":"Concepts » Addresses » Further reading","id":"47","title":"Further reading"},"48":{"body":"Module is the basic unit of organization in a package. A module is a separate scope that contains functions, types, and other items. A package consists of one or more modules.","breadcrumbs":"Concepts » Module » Module","id":"48","title":"Module"},"49":{"body":"Accounts interact with the blockchain by sending transactions . Transactions can call functions in a package, and can also deploy new packages. On Sui, a single transaction can contain multiple operations, we call them \"commands\". A command can be a call to a function, a deployment of a new package, upgrade of an existing one, or a combination of these. Commands can return values, which can be used in subsequent commands.","breadcrumbs":"Concepts » Interacting with a Package » Interacting with a Package","id":"49","title":"Interacting with a Package"},"5":{"body":"You can download the latest Sui binary from the releases page . The binary is available for macOS, Linux and Windows. For education purposes and development, we recommend using the mainnet version.","breadcrumbs":"Before we begin » Install Sui » Download Binary","id":"5","title":"Download Binary"},"50":{"body":"An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an address .","breadcrumbs":"Concepts » Account » Account","id":"50","title":"Account"},"51":{"body":"Transaction is a fundamental concept in the blockchain world. It is a way to interact with a blockchain. Transactions are used to change the state of the blockchain, and they are the only way to do so. In Move, transactions are used to call functions in a package, deploy new packages, and upgrade existing ones.","breadcrumbs":"Concepts » Transaction » Transaction","id":"51","title":"Transaction"},"52":{"body":"Transactions consist of: a sender - the account that signs the transaction a list (or a chain) of commands - the operations to be executed command inputs - the arguments for the commands a gas object - the object used to pay for the transaction gas price and budget - the cost of the transaction","breadcrumbs":"Concepts » Transaction » Transaction Structure","id":"52","title":"Transaction Structure"},"53":{"body":"Sui does not have global storage. Instead, storage is split into a pool of objects. Some of the objects are owned by accounts and available only to them, and some are shared and can be accessed by anyone on the network. There's also a special kind of shared immutable objects, also called frozen , which can't be modified, and act as public chain-wide constants. Each object has a unique 32-byte identifier - UID, it is used to access and reference the object. Sui object consists of: UID - 32-byte unique identifier (address) Type - Move type with the key ability Owner - can be shared, account_address, object_owner or immutable Digest - hash of the object's content Version - acts as a nonce Content - the actual data represented as BCS","breadcrumbs":"Concepts » Object Model » Object Model","id":"53","title":"Object Model"},"54":{"body":"In this chapter we illustrate the concepts of Sui by building a simple application. Unlike the Hello World example which aims to illustrate Move Compiler, this application is focused on Sui specifics. It is also more complex - it uses objects , and we will publish and use it on Sui. The goal of this mini-project is to demonstrate the process of building, testing, and publishing a Sui application. The result is a simple but complete application that you can use as a starting point for your projects or as a playground to experiment with Sui as you learn. The chapter is split into the following parts (in order): Hello Sui! Build and Publish Testing Additionally, there's a section with ideas for further development of the application which you may get back to as you progress through the book.","breadcrumbs":"Your First Sui App » Your First Sui App","id":"54","title":"Your First Sui App"},"55":{"body":"Just like we did with the Hello World example, we will start by initializing a new package using the Sui CLI, then we will implement a simple application that creates a \"Postcard\" - a digital postcard that can be sent to a friend.","breadcrumbs":"Your First Sui App » Hello Sui! » Hello Sui!","id":"55","title":"Hello Sui!"},"56":{"body":"Sui packages are no different to regular Move packages, and can be initialized using the sui CLI. The following command will create a new package called postcard: $ sui new postcard This will create a new directory called postcard with the following structure: postcard\n├── Move.toml\n├── src/\n│ └── postcard.move\n└── tests/ └── postcard_tests.move The package manifest - Move.toml - already contains all required dependencies for Sui, and the src/postcard.move file is pre-created with a simple module layout. In case the Move.toml file does not feature the edition field, please, add it manually. The edition field under the [package] section should be set to 2024.beta. Like this: edition = \"2024.beta\"","breadcrumbs":"Your First Sui App » Hello Sui! » Create a new Sui package","id":"56","title":"Create a new Sui package"},"57":{"body":"The Postcard application will be a simple module that defines an object , and a set of functions to create, modify and send the postcard to any address . Let's start by inserting the code. Replace the contents of the src/postcard.move file with the following: module postcard::postcard { use std::string::String; use sui::object::UID; use sui::transfer; use sui::tx_context::TxContext; use fun sui::object::new as TxContext.new; /// The Postcard object. public struct Postcard has key { /// The unique identifier of the Object. /// Created using the `object::new()` function. id: UID, /// The message to be printed on the gift card. message: String, } /// Create a new Postcard with a message. public fun new(message: String, ctx: &mut TxContext): Postcard { Postcard { id: ctx.new(), message, } } /// Send the Postcard to the specified address. public fun send_to(card: Postcard, to: address) { transfer::transfer(card, to) } /// Keep the Postcard for yourself. public fun keep(card: Postcard, ctx: &TxContext) { transfer::transfer(card, ctx.sender()) } /// Update the message on the Postcard. public fun update(card: &mut Postcard, message: String) { card.message = message }\n} To make sure that everything is working as expected, run this command: $ sui move build You should see this output, indicating that the package was built successfully. There shouldn't be any errors following the BUILDING postcard line: > $ sui move build\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING postcard If you do see errors, please, double check the code and the steps you've taken to create the package. It's very likely a typo in one of the commands.","breadcrumbs":"Your First Sui App » Hello Sui! » Implement the Postcard application","id":"57","title":"Implement the Postcard application"},"58":{"body":"In the next section we will take a closer look at the structure of the postcard.move file and explain the code we've just inserted. We will also discuss the imports and the object definition in more detail.","breadcrumbs":"Your First Sui App » Hello Sui! » Next steps","id":"58","title":"Next steps"},"59":{"body":"Let's take a look at the code we've inserted into the postcard.move file. We will discuss the structure of the module and the code in more detail, and explain the way the Postcard object is created, used and stored.","breadcrumbs":"Your First Sui App » Using Objects » Using Objects","id":"59","title":"Using Objects"},"6":{"body":"You can install Sui using the Homebrew package manager. brew install sui","breadcrumbs":"Before we begin » Install Sui » Install using Homebrew (MacOS)","id":"6","title":"Install using Homebrew (MacOS)"},"60":{"body":"First line of the file is the module declaration. The address of the module is package - a name defined in the Move.toml file. The module name is also postcard. The module body is enclosed in curly braces {}. module postcard::postcard {","breadcrumbs":"Your First Sui App » Using Objects » Module","id":"60","title":"Module"},"61":{"body":"In the top of the module we import types and other modules from the Standard Library (std) and from the Sui Framework (sui). The Sui Framework is required to define and create objects as it contains the UID and TxContext types - two essential types for objects. We also import the sui::transfer module - this module contains storage and transfer functions. use std::string::String; use sui::object::UID; use sui::transfer; use sui::tx_context::TxContext;","breadcrumbs":"Your First Sui App » Using Objects » Imports","id":"61","title":"Imports"},"62":{"body":"A public struct Postcard, that goes after imports, is an object. A struct with the key ability is an object on Sui. As such, its first field must be id of type UID (that we imported from the Sui Framework). The id field is the unique identifier and an address of the object. /// The Postcard object. public struct Postcard has key { /// The unique identifier of the Object. /// Created using the `object::new()` function. id: UID, /// The message to be printed on the gift card. message: String, }","breadcrumbs":"Your First Sui App » Using Objects » Postcard is an Object","id":"62","title":"Postcard is an Object"},"63":{"body":"Sui has no global storage , and the objects are stored independently of their package. This is why we defined a single Postcard and not a collection \"Postcards\". Objects have to be created and stored in the storage before they can be used. The new function is a public function that creates a new instance of the Postcard object and returns it to the caller. It takes two arguments: the message of type String, which is the message on the postcard, and the ctx of type TxContext, a standard type that is automatically inserted by the Sui runtime. /// Create a new Postcard with a message. public fun new(message: String, ctx: &mut TxContext): Postcard { Postcard { id: ctx.new(), message, } } When initializing an instance of Postcard we pass the fields of the struct as arguments, the id is generated from the TxContext argument via the ctx.new() call. And the message is taken as-is from the message argument.","breadcrumbs":"Your First Sui App » Using Objects » Creating an Object","id":"63","title":"Creating an Object"},"64":{"body":"Objects can't be ignored, so when the function new is called, the returned Postcard needs to be stored. And here's when the sui::transfer module comes into play. The sui::transfer::transfer function is used to store the object at the specified address. /// Send the Postcard to the specified address. public fun send_to(card: Postcard, to: address) { transfer::transfer(card, to) } The function takes the Postcard as the first argument and a value of the address type as the second argument. Both are passed into the transfer function to send — and hence, store — the object to the specified address.","breadcrumbs":"Your First Sui App » Using Objects » Sending a Postcard","id":"64","title":"Sending a Postcard"},"65":{"body":"A very common scenario is transfering the object to the caller. This can be done by calling the send_to function with the sender address. It can be read from the ctx argument, which is a TxContext type. /// Keep the Postcard for yourself. public fun keep(card: Postcard, ctx: &TxContext) { transfer::transfer(card, ctx.sender()) }","breadcrumbs":"Your First Sui App » Using Objects » Keeping the Object","id":"65","title":"Keeping the Object"},"66":{"body":"The update function is another public function that takes a mutable reference to the Postcard and a String argument. It updates the message field of the Postcard. Because the Postcard is passed by a reference, the owner is not changed, and the object is not moved. /// Update the message on the Postcard. public fun update(card: &mut Postcard, message: String) { card.message = message }","breadcrumbs":"Your First Sui App » Using Objects » Updating the Object","id":"66","title":"Updating the Object"},"67":{"body":"In the next section we will write a simple test for the Postcard module to see how it works. Later we will publish the package on Sui DevNet and learn how to use the Sui CLI to interact with the package.","breadcrumbs":"Your First Sui App » Using Objects » Next steps","id":"67","title":"Next steps"},"68":{"body":"Now that we know what a package, account and storage are, let's get to the basics and learn to write some code. This section covers: types functions structs constants control flow tests","breadcrumbs":"Syntax Basics » Getting Ready","id":"68","title":"Getting Ready"},"69":{"body":"Module is the base unit of code organization in Move. Modules are used to group and isolate code, and all of the members of the module are private to the module by default. In this section you will learn how to define a module, how to declare its members and how to access them from other modules.","breadcrumbs":"Syntax Basics » Module » Module","id":"69","title":"Module"},"7":{"body":"You can install and build Sui locally by using the Cargo package manager (requires Rust) cargo install --git https://github.com/MystenLabs/sui.git --bin sui --branch mainnet","breadcrumbs":"Before we begin » Install Sui » Build using Cargo (MacOS, Linux)","id":"7","title":"Build using Cargo (MacOS, Linux)"},"70":{"body":"Modules are declared using the module keyword followed by the package address, module name and the module body inside the curly braces {}. The module name should be in snake_case - all lowercase letters with underscores between words. Modules names must be unique in the package. Usually, a single file in the sources/ folder contains a single module. The file name should match the module name - for example, a donut_shop module should be stored in the donut_shop.move file. You can read more about coding conventions in the Coding Conventions section. module book::my_module { // module body\n} Structs, functions and constants, imports and friend declarations are all part of the module: Structs Functions Constants Imports Friend declarations Method Aliases","breadcrumbs":"Syntax Basics » Module » Module declaration","id":"70","title":"Module declaration"},"71":{"body":"Module address can be specified as both: an address literal (does not require the @ prefix) or a named address specified in the Package Manifest . In the example below, both are identical because there's a book = \"0x0\" record in the [addresses] section of the Move.toml. module book::my_module { // module body\n} module 0x0::address_literal_example { // module body\n}","breadcrumbs":"Syntax Basics » Module » Address / Named address","id":"71","title":"Address / Named address"},"72":{"body":"Module members are declared inside the module body. To illustrate that, let's define a simple module with a struct, a function and a constant: module book::my_module_with_members { // import use book::my_module; // friend declaration friend book::constants; // a constant const CONST: u8 = 0; // a struct public struct Struct {} // method alias public use fun function as Struct.struct_fun; // function fun function(_: &Struct) { /* function body */ }\n}","breadcrumbs":"Syntax Basics » Module » Module members","id":"72","title":"Module members"},"73":{"body":"Before the introduction of the address::module_name syntax, modules were organized into address {} blocks. This way of code organization is still available today, but is not used widely. Modern practices imply having a single module per file, so the address {} block is rather a redundant construct. Module addresses can be omitted if modules are organized into address {} blocks. address book { // address block module another_module { // module body\n} module yet_another_module { // module body\n}\n} The modules defined in this code sample will be accessible as: book::another_module book::yet_another_module","breadcrumbs":"Syntax Basics » Module » Address block","id":"73","title":"Address block"},"74":{"body":"Comments are a way to add notes or document your code. They are ignored by the compiler and don't result in the Move bytecode. You can use comments to explain what your code does, to add notes to yourself or other developers, to temporarily remove a part of your code, or to generate documentation. There are three types of comments in Move: line comment, block comment, and doc comment.","breadcrumbs":"Syntax Basics » Comments » Comments","id":"74","title":"Comments"},"75":{"body":"#[allow(unused_function)]\nmodule book::comments_line { fun some_function() { // this is a comment line }\n} You can use double slash // to comment out the rest of the line. Everything after // will be ignored by the compiler. #[allow(unused_function, unused_variable)]\nmodule book::comments_line_2 { // let's add a note to everything! fun some_function_with_numbers() { let a = 10; // let b = 10 this line is commented and won't be executed let b = 5; // here comment is placed after code a + b; // result is 15, not 10! }\n}","breadcrumbs":"Syntax Basics » Comments » Line comment","id":"75","title":"Line comment"},"76":{"body":"Block comments are used to comment out a block of code. They start with /* and end with */. Everything between /* and */ will be ignored by the compiler. You can use block comments to comment out a single line or multiple lines. You can even use them to comment out a part of a line. #[allow(unused_function)]\nmodule book::comments_block { fun /* you can comment everywhere */ go_wild() { /* here there everywhere */ let a = 10; let b = /* even here */ 10; /* and again */ a + b; } /* you can use it to remove certain expressions or definitions fun empty_commented_out() { } */\n} This example is a bit extreme, but it shows how you can use block comments to comment out a part of a line.","breadcrumbs":"Syntax Basics » Comments » Block comment","id":"76","title":"Block comment"},"77":{"body":"Documentation comments are special comments that are used to generate documentation for your code. They are similar to block comments, but they start with three slashes /// and are placed before the definition of the item they document. #[allow(unused_function, unused_const, unused_variable, unused_field)]\n/// Module has documentation!\nmodule book::comments_doc { /// This is a 0x0 address constant! const AN_ADDRESS: address = @0x0; /// This is a struct! public struct AStruct { /// This is a field of a struct! a_field: u8, } /// This function does something! /// And it's documented! fun do_something() {}\n}","breadcrumbs":"Syntax Basics » Comments » Doc comment","id":"77","title":"Doc comment"},"78":{"body":"For simple values, Move has a number of built-in primitive types. They're the base that makes up all other types. The primitive types are: Booleans Unsigned Integers Address - covered in the next section However, before we get to the types, let's first look at how to declare and assign variables in Move.","breadcrumbs":"Syntax Basics » Primitive Types » Primitive Types","id":"78","title":"Primitive Types"},"79":{"body":"Variables are declared using the let keyword. They are immutable by default, but can be made mutable using the let mut keyword. The syntax for the let mut statement is: let [: ] = ;\nlet mut [: ] = ; Where: - the name of the variable - the type of the variable, optional - the value to be assigned to the variable let x: bool = true;\nlet mut y: u8 = 42; A mutable variable can be reassigned using the = operator. y = 43; Variables can also be shadowed by re-declaring. let x: u8 = 42;\nlet x: u8 = 43;","breadcrumbs":"Syntax Basics » Primitive Types » Variables and assignment","id":"79","title":"Variables and assignment"},"8":{"body":"For troubleshooting the installation process, please refer to the Install Sui Guide.","breadcrumbs":"Before we begin » Install Sui » Troubleshooting","id":"8","title":"Troubleshooting"},"80":{"body":"The bool type represents a boolean value - yes or no, true or false. It has two possible values: true and false which are keywords in Move. For booleans, there's no need to explicitly specify the type - the compiler can infer it from the value. let x = true;\nlet y = false; Booleans are often used to store flags and to control the flow of the program. Please, refer to the Control Flow section for more information.","breadcrumbs":"Syntax Basics » Primitive Types » Booleans","id":"80","title":"Booleans"},"81":{"body":"Move supports unsigned integers of various sizes: from 8-bit to 256-bit. The integer types are: u8 - 8-bit u16 - 16-bit u32 - 32-bit u64 - 64-bit u128 - 128-bit u256 - 256-bit let x: u8 = 42;\nlet y: u16 = 42;\n// ...\nlet z: u256 = 42; Unlike booleans, integer types need to be inferred. In most of the cases, the compiler will infer the type from the value, usually defaulting to u64. However, sometimes the compiler is unable to infer the type and will require an explicit type annotation. It can either be provided during assignment or by using a type suffix. // Both are equivalent\nlet x: u8 = 42;\nlet x = 42u8;","breadcrumbs":"Syntax Basics » Primitive Types » Integer Types","id":"81","title":"Integer Types"},"82":{"body":"Move supports the standard arithmetic operations for integers: addition, subtraction, multiplication, division, and remainder. The syntax for these operations is: Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0 The type of the operands must match , otherwise, the compiler will raise an error. The result of the operation will be of the same type as the operands. To perform operations on different types, the operands need to be cast to the same type.","breadcrumbs":"Syntax Basics » Primitive Types » Operations","id":"82","title":"Operations"},"83":{"body":"Move supports explicit casting between integer types. The syntax for it is: ( as ) Note, that it requires parentheses around the expression to prevent ambiguity. let x: u8 = 42;\nlet y: u16 = (x as u16); A more complex example, preventing overflow: let x: u8 = 255;\nlet y: u8 = 255;\nlet z: u16 = (x as u16) + ((y as u16) * 2);","breadcrumbs":"Syntax Basics » Primitive Types » Casting with as","id":"83","title":"Casting with as"},"84":{"body":"Move does not support overflow / underflow, an operation that results in a value outside the range of the type will raise a runtime error. This is a safety feature to prevent unexpected behavior. let x = 255u8;\nlet y = 1u8; // This will raise an error\nlet z = x + y;","breadcrumbs":"Syntax Basics » Primitive Types » Overflow","id":"84","title":"Overflow"},"85":{"body":"To represent addresses , Move uses a special type called address. It is a 32 byte value that can be used to represent any address on the blockchain. Addresses are used in two syntax forms: hexadecimal addresses prefixed with 0x and named addresses. // address literal\nlet value: address = @0x1; // named address registered in Move.toml\nlet value = @std;\nlet other = @sui; An address literal starts with the @ symbol followed by a hexadecimal number or an identifier. The hexadecimal number is interpreted as a 32 byte value. The identifier is looked up in the Move.toml file and replaced with the corresponding address by the compiler. If the identifier is not found in the Move.toml file, the compiler will throw an error.","breadcrumbs":"Syntax Basics » Address Type » Address Type","id":"85","title":"Address Type"},"86":{"body":"Sui Framework offers a set of helper functions to work with addresses. Given that the address type is a 32 byte value, it can be converted to a u256 type and vice versa. It can also be converted to and from a vector type. Example: Convert an address to a u256 type and back. use sui::address; let addr_as_u256: u256 = address::to_u256(@0x1);\nlet addr = address::from_u256(addr_as_u256); Example: Convert an address to a vector type and back. use sui::address; let addr_as_u8: vector = address::to_bytes(@0x1);\nlet addr = address::from_bytes(addr_as_u8); Example: Convert an address into a string. use sui::address;\nuse std::string; let addr_as_string: String = address::to_string(@0x1);","breadcrumbs":"Syntax Basics » Address Type » Conversion","id":"86","title":"Conversion"},"87":{"body":"In programming languages expression is a unit of code which returns a value, in Move, almost everything is an expression, - with the sole exception of let statement which is a declaration. In this section, we cover the types of expressions and introduce the concept of scope. Expressions are sequenced with semicolons ;. If there's \"no expression\" after the semicolon, the compiler will insert an empty expression ().","breadcrumbs":"Syntax Basics » Expression » Expression","id":"87","title":"Expression"},"88":{"body":"The very base of the expression is the empty expression. It is a valid expression that does nothing and returns nothing. An empty expression is written as empty parentheses (). It's rarely the case when you need to use an empty expression. The compiler automatically inserts empty expressions where needed, for example in an empty Scope . Though, it may be helpful to know that it exists. Parentheses are also used to group expressions to control the order of evaluation. // variable `a` has no value;\nlet a = (); // similarly, we could write:\nlet a;","breadcrumbs":"Syntax Basics » Expression » Empty Expression","id":"88","title":"Empty Expression"},"89":{"body":"In the Primitive Types section, we introduced the basic types of Move. And to illustrate them, we used literals. A literal is a notation for representing a fixed value in the source code. Literals are used to initialize variables and to pass arguments to functions. Move has the following literals: true and false for boolean values 0, 1, 123123 or other numeric for integer values 0x0, 0x1, 0x123 or other hexadecimal for integer values b\"bytes_vector\" for byte vector values x\"0A\" HEX literal for byte values let b = true; // true is a literal\nlet n = 1000; // 1000 is a literal\nlet h = 0x0A; // 0x0A is a literal\nlet v = b\"hello\"; // b'hello' is a byte vector literal\nlet x = x\"0A\"; // x'0A' is a byte vector literal\nlet c = vector[1, 2, 3]; // vector[] is a vector literal","breadcrumbs":"Syntax Basics » Expression » Literals","id":"89","title":"Literals"},"9":{"body":"There are two most popular IDEs for Move development: VSCode and IntelliJ IDEA. Both of them provide basic features like syntax highlighting and error messages, though they differ in their additional features. Whatever IDE you choose, you'll need to use the terminal to run the Move CLI . IntelliJ Plugin does not support Move 2024 edition fully, some syntax won't get highlighted and not supported.","breadcrumbs":"Before we begin » Set up your IDE » Set up your IDE","id":"9","title":"Set up your IDE"},"90":{"body":"Ariphmetic, logical, and bitwise operators are used to perform operations on values. The result of an operation is a value, so operators are also expressions. let sum = 1 + 2; // 1 + 2 is an expression\nlet sum = (1 + 2); // the same expression with parentheses\nlet is_true = true && false; // true && false is an expression\nlet is_true = (true && false); // the same expression with parentheses","breadcrumbs":"Syntax Basics » Expression » Operators","id":"90","title":"Operators"},"91":{"body":"A block is a sequence of statements and expressions, and it returns the value of the last expression in the block. A block is written as a pair of curly braces {}. A block is an expression, so it can be used anywhere an expression is expected. // block with an empty expression, however, the compiler will\n// insert an empty expression automatically: `let none = { () }`\nlet none = {}; // block with let statements and an expression.\nlet sum = { let a = 1; let b = 2; a + b // last expression is the value of the block\n}; let none = { let a = 1; let b = 2; a + b; // not returned - semicolon. // compiler automatically inserts an empty expression `()`\n};","breadcrumbs":"Syntax Basics » Expression » Blocks","id":"91","title":"Blocks"},"92":{"body":"We go into detail about functions in the Functions section. However, we already used function calls in the previous sections, so it's worth mentioning them here. A function call is an expression that calls a function and returns the value of the last expression in the function body. fun add(a: u8, b: u8): u8 { a + b\n} #[test]\nfun some_other() { let sum = add(1, 2); // add(1, 2) is an expression with type u8\n}","breadcrumbs":"Syntax Basics » Expression » Function Calls","id":"92","title":"Function Calls"},"93":{"body":"Control flow expressions are used to control the flow of the program. They are also expressions, so they return a value. We cover control flow expressions in the Control Flow section. Here's a very brief overview: // if is an expression, so it returns a value; if there are 2 branches,\n// the types of the branches must match.\nif (bool_expr) expr1 else expr2; // while is an expression, but it returns `()`.\nwhile (bool_expr) expr; // loop is an expression, but returns `()` as well.\nloop expr;","breadcrumbs":"Syntax Basics » Expression » Control Flow Expressions","id":"93","title":"Control Flow Expressions"},"94":{"body":"Move type system shines when it comes to defining custom types. User defined types can be custom tailored to the specific needs of the application. Not just on the data level, but also in its behavior. In this section we introduce the struct definition and how to use it.","breadcrumbs":"Syntax Basics » Struct » Custom Types with Struct","id":"94","title":"Custom Types with Struct"},"95":{"body":"To define a custom type, you can use the struct keyword followed by the name of the type. After the name, you can define the fields of the struct. Each field is defined with the field_name: field_type syntax. Field definitions must be separated by commas. The fields can be of any type, including other structs. Note: Move does not support recursive structs, meaning a struct cannot contain itself as a field. /// A struct representing an artist.\npublic struct Artist { /// The name of the artist. name: String,\n} /// A struct representing a music record.\npublic struct Record { /// The title of the record. title: String, /// The artist of the record. Uses the `Artist` type. artist: Artist, /// The year the record was released. year: u16, /// Whether the record is a debut album. is_debut: bool, /// The edition of the record. edition: Option,\n} In the example above, we define a Record struct with five fields. The title field is of type String, the artist field is of type Artist, the year field is of type u16, the is_debut field is of type bool, and the edition field is of type Option. The edition field is of type Option to represent that the edition is optional. Structs are private by default, meaning they cannot be imported and used outside of the module they are defined in. Their fields are also private and can't be accessed from outside the module. See visibility for more information on different visibility modifiers. A struct by default is internal to the module it is defined in.","breadcrumbs":"Syntax Basics » Struct » Struct","id":"95","title":"Struct"},"96":{"body":"We described how struct definition works. Now let's see how to initialize a struct and use it. A struct can be initialized using the struct_name { field1: value1, field2: value2, ... } syntax. The fields can be initialized in any order, and all of the fields must be set. // Create an instance of the `Artist` struct.\nlet artist = Artist { name: string::utf8(b\"The Beatles\"),\n}; In the example above, we create an instance of the Artist struct and set the name field to a string \"The Beatles\". To access the fields of a struct, you can use the . operator followed by the field name. // Access the `name` field of the `Artist` struct.\nlet artist_name = artist.name; // Access a field of the `Artist` struct.\nassert!(artist.name == string::utf8(b\"The Beatles\"), 0); // Mutate the `name` field of the `Artist` struct.\nartist.name = string::utf8(b\"Led Zeppelin\"); // Check that the `name` field has been mutated.\nassert!(artist.name == string::utf8(b\"Led Zeppelin\"), 1); Only module defining the struct can access its fields (both mutably and immutably). So the above code should be in the same module as the Artist struct.","breadcrumbs":"Syntax Basics » Struct » Create and use an instance","id":"96","title":"Create and use an instance"},"97":{"body":"Structs are non-discardable by default, meaning that the initiated struct value must be used: either stored or unpacked . Unpacking a struct means deconstructing it into its fields. This is done using the let keyword followed by the struct name and the field names. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field.\nlet Artist { name } = artist; In the example above we unpack the Artist struct and create a new variable name with the value of the name field. Because the variable is not used, the compiler will raise a warning. To suppress the warning, you can use the underscore _ to indicate that the variable is intentionally unused. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field. The variable is intentionally unused.\nlet Artist { name: _ } = artist;","breadcrumbs":"Syntax Basics » Struct » Unpacking a struct","id":"97","title":"Unpacking a struct"},"98":{"body":"Move has a unique type system which allows defining type abilities . In the previous section , we introduced the struct definition and how to use it. However, the instances of the Artist and Record structs had to be unpacked for the code to compile. This is default behavior of a struct without abilities . In this section, we introduce the first ability - drop.","breadcrumbs":"Syntax Basics » Abilities: Drop » Abilities: Drop","id":"98","title":"Abilities: Drop"},"99":{"body":"Abilities are set in the struct definition using the has keyword followed by a list of abilities. The abilities are separated by commas. Move supports 4 abilities: copy, drop, key, and store. In this section, we cover the first two abilities: copy and drop. The last two abilities are covered in the programmability chapter , when we introduce Objects and storage operations. /// This struct has the `copy` and `drop` abilities.\nstruct VeryAble has copy, drop { // field: Type1, // field2: Type2, // ...\n}","breadcrumbs":"Syntax Basics » Abilities: Drop » Abilities syntax","id":"99","title":"Abilities syntax"}},"length":235,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"128":{"tf":2.449489742783178},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"163":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"96":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":8,"docs":{"121":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"108":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0}}},"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"46":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"46":{"tf":1.0}}},"6":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":3,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":5,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951}}},"2":{"4":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"128":{"tf":2.8284271247461903},"131":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"217":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}}},"3":{"df":1,"docs":{"23":{"tf":1.0}}},"4":{"df":1,"docs":{"23":{"tf":1.0}}},"5":{"df":1,"docs":{"75":{"tf":1.0}}},"6":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":32,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"9":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"2":{"df":1,"docs":{"2":{"tf":1.0}}},"3":{"df":1,"docs":{"2":{"tf":1.0}}},"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"14":{"tf":2.23606797749979},"153":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"171":{"tf":1.0}}},"4":{"df":1,"docs":{"200":{"tf":1.0}},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"144":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"187":{"tf":1.0},"231":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":6,"docs":{"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"114":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":3,"docs":{"79":{"tf":1.4142135623730951},"81":{"tf":2.0},"83":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":2,"docs":{"163":{"tf":1.0},"99":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"215":{"tf":1.0},"75":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"46":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}},"9":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"180":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"a":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"115":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":2.23606797749979},"170":{"tf":1.0},"172":{"tf":3.3166247903554},"174":{"tf":1.0},"180":{"tf":1.0},"190":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"53":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.8284271247461903}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":16,"docs":{"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":2.6457513110645907},"141":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":3.4641016151377544},"23":{"tf":1.0},"231":{"tf":2.23606797749979},"232":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"v":{"df":15,"docs":{"117":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"149":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"204":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"31":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"32":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"29":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"1":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"a":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"139":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"157":{"tf":1.0},"54":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}}}},"df":38,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.6457513110645907},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"42":{"tf":2.0},"43":{"tf":2.0},"46":{"tf":4.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":3.4641016151377544},"86":{"tf":2.23606797749979}}}}}}},"df":11,"docs":{"107":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":2,"docs":{"144":{"tf":2.449489742783178},"170":{"tf":2.449489742783178}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"216":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"72":{"tf":1.0}},"s":{"df":7,"docs":{"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"216":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0}}}},"c":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.449489742783178},"24":{"tf":1.0},"27":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"30":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"168":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"119":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"187":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":3,"docs":{"178":{"tf":1.0},"218":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"148":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"119":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"95":{"tf":3.0},"96":{"tf":2.8284271247461903},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":5,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"126":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"5":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":9,"docs":{"126":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"126":{"tf":2.0},"135":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"2":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"188":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"107":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"159":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.4142135623730951},"162":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"19":{"tf":1.0},"89":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},">":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"188":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"13":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":2,"docs":{"110":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"158":{"tf":2.8284271247461903},"160":{"tf":2.0},"32":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":4,"docs":{"127":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"223":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"128":{"tf":1.0},"144":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"130":{"tf":1.0},"161":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"229":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0}}}},"w":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"71":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"117":{"tf":1.4142135623730951},"14":{"tf":1.0},"171":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"226":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"209":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"210":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"119":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":3.3166247903554},"182":{"tf":1.0},"226":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"91":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"146":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"104":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"132":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"180":{"tf":1.0},"232":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"215":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":5,"docs":{"116":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"200":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"168":{"tf":1.0},"215":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"126":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.7320508075688772},"218":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.4142135623730951},"25":{"tf":2.0},"30":{"tf":2.0},"43":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":2.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"135":{"tf":1.0},"199":{"tf":1.0},"34":{"tf":1.7320508075688772},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"120":{"tf":3.1622776601683795},"122":{"tf":1.7320508075688772},"148":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"193":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"_":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"137":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"218":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"163":{"tf":5.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"189":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":3,"docs":{"146":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":3,"docs":{"158":{"tf":3.1622776601683795},"160":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"223":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":15,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":2.6457513110645907},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"25":{"tf":1.4142135623730951},"51":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.4142135623730951},"186":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"159":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"204":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":8,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"202":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"181":{"tf":1.4142135623730951},"202":{"tf":3.3166247903554},"203":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"161":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0}},"r":{"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":46,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":3.1622776601683795},"180":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"108":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":2.8284271247461903},"209":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.4142135623730951},"225":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"199":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"n":{"d":{"df":12,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"29":{"tf":2.8284271247461903},"74":{"tf":2.6457513110645907},"75":{"tf":2.23606797749979},"76":{"tf":3.0},"77":{"tf":2.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0}}},"x":{"df":5,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"138":{"tf":1.7320508075688772},"22":{"tf":1.0},"232":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"234":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":6,"docs":{"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"233":{"tf":1.0}}}}}},"i":{"d":{"df":6,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":2.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":2.0},"179":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"182":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":3.3166247903554},"171":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"182":{"tf":2.6457513110645907},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"125":{"tf":2.0},"126":{"tf":1.0},"230":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"138":{"tf":1.0},"145":{"tf":1.0}}},"t":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.605551275463989},"161":{"tf":2.6457513110645907},"165":{"tf":1.0},"172":{"tf":2.23606797749979},"190":{"tf":1.0},"234":{"tf":1.7320508075688772},"99":{"tf":2.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"214":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.7320508075688772},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.0},"232":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"178":{"tf":2.23606797749979},"180":{"tf":3.872983346207417}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"212":{"tf":1.0},"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"160":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"201":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"t":{"a":{"df":12,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"127":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"25":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"110":{"tf":1.4142135623730951},"15":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"163":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"210":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":45,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":3.0},"109":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"40":{"tf":3.0},"41":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"165":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"233":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"139":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"115":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"36":{"tf":1.0},"41":{"tf":2.23606797749979},"43":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"177":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.0},"211":{"tf":1.0},"231":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"182":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.4142135623730951},"155":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"19":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"142":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"c":{"df":5,"docs":{"15":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"15":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.8284271247461903},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"45":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":1,"docs":{"192":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"232":{"tf":1.0},"27":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"214":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"4":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":23,"docs":{"101":{"tf":3.3166247903554},"103":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"161":{"tf":2.6457513110645907},"168":{"tf":1.0},"172":{"tf":2.8284271247461903},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"172":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":1.0},"208":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"187":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"155":{"tf":1.0},"188":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"214":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"9":{"tf":1.0},"95":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"178":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":2.0},"116":{"tf":1.4142135623730951},"160":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"228":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":12,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"142":{"tf":1.0},"163":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"91":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"168":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.0},"22":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":2,"docs":{"139":{"tf":1.4142135623730951},"230":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"162":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"202":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"182":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"201":{"tf":3.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":23,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":2.449489742783178},"140":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"208":{"tf":1.0},"76":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":49,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":2.6457513110645907},"204":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":22,"docs":{"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":2.0},"202":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":5,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"138":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"125":{"tf":1.0},"162":{"tf":1.4142135623730951},"193":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"160":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"214":{"tf":1.0}}}},"s":{"df":2,"docs":{"185":{"tf":1.0},"202":{"tf":1.0}}}},"r":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"126":{"tf":3.605551275463989},"128":{"tf":2.23606797749979},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"88":{"tf":2.8284271247461903},"90":{"tf":2.23606797749979},"91":{"tf":3.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.6457513110645907}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"225":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"148":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"122":{"tf":1.0},"172":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"s":{"df":9,"docs":{"126":{"tf":1.0},"132":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"178":{"tf":2.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}},"_":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":37,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":20,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":24,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}}},"x":{"df":4,"docs":{"163":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"30":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"125":{"tf":2.0},"126":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}},"s":{"df":2,"docs":{"170":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"!":{"(":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.0}}}},"df":2,"docs":{"174":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":2,"docs":{"202":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"186":{"tf":1.0},"209":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"55":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":3,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"(":{"_":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":82,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"141":{"tf":3.3166247903554},"142":{"tf":3.0},"143":{"tf":2.23606797749979},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":3.1622776601683795},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.449489742783178},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.0},"77":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":2.6457513110645907}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"186":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":73,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":3.0},"148":{"tf":2.0},"150":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}}}},"g":{"a":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"204":{"tf":1.0},"207":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":3.0},"169":{"tf":1.7320508075688772},"170":{"tf":2.8284271247461903},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"185":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"50":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"161":{"tf":1.0},"175":{"tf":1.0},"34":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"204":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"df":9,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"57":{"tf":1.0},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0}},"n":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"86":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"155":{"tf":1.0},"62":{"tf":1.0}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"139":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"105":{"tf":2.0},"106":{"tf":1.0},"141":{"tf":1.0},"25":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"223":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"178":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"l":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"122":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"161":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"18":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"182":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"73":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":3,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"`":{"]":{"(":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"p":{"df":5,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"211":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"n":{"c":{"df":3,"docs":{"121":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"64":{"tf":1.0},"93":{"tf":1.0}}},"df":13,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"171":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"146":{"tf":3.4641016151377544},"147":{"tf":3.3166247903554},"148":{"tf":3.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"\"":{"\"":{">":{"0":{"df":0,"docs":{},"x":{"1":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{">":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"/":{"a":{">":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"<":{"/":{"a":{">":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"'":{"df":1,"docs":{"182":{"tf":1.0}}},"df":18,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"180":{"tf":2.23606797749979},"185":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"199":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"101":{"tf":2.449489742783178},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"234":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"163":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":2.0},"34":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"230":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":37,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":3.4641016151377544},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"25":{"tf":2.6457513110645907},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":13,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"170":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"122":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"122":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":9,"docs":{"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"180":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"172":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"188":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"137":{"tf":1.0},"159":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":2.23606797749979},"184":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"'":{"df":10,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":7,"docs":{"133":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":2.8284271247461903},"188":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"221":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"y":{"df":20,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.7320508075688772},"188":{"tf":3.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.7320508075688772},"212":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"200":{"tf":1.0},"209":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"'":{"df":22,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"133":{"tf":1.0},"141":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"2":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":9,"docs":{"129":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":2.0}}},"k":{"df":4,"docs":{"173":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.0},"45":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"52":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":3.4641016151377544}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":2.0},"147":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"128":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"161":{"tf":1.0},"217":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0}}},"p":{"df":8,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":2.8284271247461903},"128":{"tf":2.6457513110645907},"129":{"tf":3.4641016151377544},"130":{"tf":3.7416573867739413},"131":{"tf":2.449489742783178},"209":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"178":{"tf":2.0},"180":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"138":{"tf":2.0},"217":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"208":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":2,"docs":{"146":{"tf":2.0},"148":{"tf":1.4142135623730951}},"g":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"3":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"188":{"tf":2.6457513110645907},"189":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":3,"docs":{"19":{"tf":1.0},"199":{"tf":1.0},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"169":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"170":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951}}}}}}}},"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"117":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"111":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"202":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"19":{"tf":1.0},"29":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"130":{"tf":1.0},"15":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"57":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"66":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"170":{"tf":2.0},"188":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"138":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":3.605551275463989},"148":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"4":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":3.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"171":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"163":{"tf":2.23606797749979},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"222":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":92,"docs":{"101":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":2.8284271247461903},"104":{"tf":2.8284271247461903},"105":{"tf":3.605551275463989},"106":{"tf":2.449489742783178},"108":{"tf":3.1622776601683795},"109":{"tf":1.0},"110":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":1.0},"141":{"tf":2.449489742783178},"143":{"tf":2.23606797749979},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.23606797749979},"149":{"tf":2.6457513110645907},"15":{"tf":1.0},"150":{"tf":2.449489742783178},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"18":{"tf":2.449489742783178},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":3.1622776601683795},"191":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"30":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":3.605551275463989},"71":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":3.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"148":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":33,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"101":{"tf":1.0},"162":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"199":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"4":{":":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":93,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"154":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"167":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"127":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"169":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"144":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"180":{"tf":2.449489742783178},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"120":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"147":{"tf":2.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":2.23606797749979},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"229":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":2.449489742783178},"97":{"tf":3.1622776601683795}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"126":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"11":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"185":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"162":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"18":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"115":{"tf":1.4142135623730951},"189":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"108":{"tf":1.0},"121":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"166":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"68":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"114":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.4142135623730951},"187":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"89":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":34,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"220":{"tf":2.0},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"225":{"tf":2.449489742783178},"227":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":2.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"186":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"188":{"tf":1.0},"220":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"c":{"df":7,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"231":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0}}},"df":18,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"202":{"tf":1.0},"225":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"2":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":30,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":2.449489742783178},"84":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"122":{"tf":1.0}}}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}},"u":{"1":{"6":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"110":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":2.23606797749979},"118":{"tf":2.8284271247461903},"126":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"169":{"tf":1.4142135623730951},"226":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"159":{"tf":1.0},"23":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":7,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"233":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"128":{"tf":1.0},"230":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":2.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"223":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"155":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"178":{"tf":1.0},"180":{"tf":1.0},"220":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":50,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.449489742783178},"111":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.0},"169":{"tf":3.0},"188":{"tf":2.23606797749979},"39":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":3.1622776601683795},"172":{"tf":2.6457513110645907},"184":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"142":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"t":{"df":14,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.0},"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":3.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"122":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"229":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.0},"230":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"144":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"201":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":4.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.8284271247461903},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"170":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"105":{"tf":1.0},"117":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{">":{"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"b":{">":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"182":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"194":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"223":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":9,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"162":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"133":{"tf":1.4142135623730951},"163":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"161":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"178":{"tf":1.7320508075688772},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":26,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":3,"docs":{"177":{"tf":1.4142135623730951},"2":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"199":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"d":{"df":19,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":52,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":3.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":9,"docs":{"199":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"163":{"tf":2.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"139":{"tf":1.0},"226":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"160":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"189":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":6,"docs":{"117":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":2.8284271247461903},"98":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"79":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":2.0},"164":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"202":{"tf":2.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"110":{"tf":1.0},"174":{"tf":2.0},"176":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"181":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":1,"docs":{"107":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":1.0},"38":{"tf":1.4142135623730951},"5":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"201":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"130":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":2.6457513110645907},"26":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"188":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":14,"docs":{"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"2":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"147":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.0},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"223":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":38,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":3.605551275463989},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"144":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"49":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}}},"v":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"25":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"n":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"110":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":3,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"230":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"223":{"tf":1.0},"84":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"129":{"tf":1.0},"163":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":13,"docs":{"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"169":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":2.0},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":16,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}},"df":6,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"182":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"3":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":16,"docs":{"15":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":3.1622776601683795},"188":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"170":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"220":{"tf":1.4142135623730951},"233":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"76":{"tf":1.0}},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"182":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}},"df":3,"docs":{"182":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"112":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"131":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"221":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":25,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"194":{"tf":1.0},"224":{"tf":2.23606797749979},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"46":{"tf":1.0},"81":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.449489742783178},"3":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"29":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"130":{"tf":1.0},"77":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":2.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"181":{"tf":1.4142135623730951},"199":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"104":{"tf":1.0},"178":{"tf":1.0},"220":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":11,"docs":{"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"17":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":19,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"131":{"tf":1.0},"16":{"tf":1.0},"182":{"tf":1.4142135623730951},"201":{"tf":1.0},"217":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":2.23606797749979},"142":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"208":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"25":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"130":{"tf":1.0},"217":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":7,"docs":{"121":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}},"l":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":28,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"119":{"tf":3.0},"120":{"tf":2.6457513110645907},"121":{"tf":3.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"16":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"18":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"46":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":3.3166247903554},"148":{"tf":2.449489742783178},"150":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"77":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":3.605551275463989},"96":{"tf":3.3166247903554},"97":{"tf":2.8284271247461903},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":2.449489742783178}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"158":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":51,"docs":{"107":{"tf":2.0},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"222":{"tf":1.0}}}},"m":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}},"y":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"145":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":27,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"46":{"tf":1.7320508075688772},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}}}},"df":15,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"141":{"tf":1.7320508075688772},"178":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"230":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}},"n":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":7,"docs":{"168":{"tf":2.6457513110645907},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":1,"docs":{"126":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"196":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":51,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":4.123105625617661},"22":{"tf":4.58257569495584},"23":{"tf":3.605551275463989},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"159":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"232":{"tf":1.0},"29":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"155":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"126":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"16":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":2.449489742783178},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":3,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}}},"l":{"df":3,"docs":{"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"25":{"tf":1.0},"61":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"178":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"119":{"tf":1.4142135623730951},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":3.872983346207417},"183":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"27":{"tf":1.0}}}},"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"180":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"122":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":2.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"169":{"tf":2.0},"171":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":11,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"2":{"df":1,"docs":{"99":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":77,"docs":{"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":3.4641016151377544},"169":{"tf":4.0},"170":{"tf":2.6457513110645907},"171":{"tf":4.358898943540674},"172":{"tf":3.1622776601683795},"174":{"tf":2.449489742783178},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"22":{"tf":1.0},"233":{"tf":1.7320508075688772},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":3.1622776601683795},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":5,"docs":{"180":{"tf":1.0},"221":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":17,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"163":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"92":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":2.8284271247461903}},"i":{"d":{"df":12,"docs":{"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":2,"docs":{"120":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"154":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":12,"docs":{"105":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":9,"docs":{"141":{"tf":1.0},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}},"x":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"132":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"144":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.4142135623730951}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"170":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":2.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":6,"docs":{"218":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"39":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"26":{"tf":1.0}}}},"d":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}},"df":142,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":2.0},"15":{"tf":1.0},"150":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":2.23606797749979},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":2.0},"138":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"117":{"tf":2.449489742783178},"126":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"127":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.8284271247461903}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"113":{"tf":1.0},"122":{"tf":2.6457513110645907},"142":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":61,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.6457513110645907},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":3.0},"202":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"117":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.6457513110645907},"88":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"170":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"210":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"215":{"tf":1.0},"89":{"tf":1.0}},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"188":{"tf":1.0},"221":{"tf":1.0}}}}}},"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"89":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":14,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":3.872983346207417},"114":{"tf":2.449489742783178},"115":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"127":{"tf":1.0},"148":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"226":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.7320508075688772},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":3.605551275463989},"221":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":2.0},"41":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"df":8,"docs":{"107":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"63":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"147":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"141":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"182":{"tf":1.0},"229":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"113":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"y":{"df":28,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"v":{"df":4,"docs":{"128":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"208":{"tf":1.0},"21":{"tf":1.0},"93":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"230":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"189":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"204":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"223":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":1.7320508075688772},"172":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"233":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"202":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":16,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0}}},"l":{"d":{"df":13,"docs":{"121":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"120":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"185":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"126":{"tf":2.449489742783178},"128":{"tf":2.449489742783178},"129":{"tf":2.449489742783178},"130":{"tf":2.6457513110645907},"131":{"tf":2.8284271247461903},"132":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"y":{"df":7,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}},"df":1,"docs":{"80":{"tf":1.0}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"46":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"128":{"tf":2.449489742783178},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"163":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"96":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":8,"docs":{"121":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"108":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0}}},"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"46":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"46":{"tf":1.0}}},"6":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":3,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":5,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951}}},"2":{"4":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"128":{"tf":2.8284271247461903},"131":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"217":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"1":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}}},"3":{"df":1,"docs":{"23":{"tf":1.0}}},"4":{"df":1,"docs":{"23":{"tf":1.0}}},"5":{"df":1,"docs":{"75":{"tf":1.0}}},"6":{"df":1,"docs":{"81":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":32,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"9":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"2":{"df":1,"docs":{"2":{"tf":1.0}}},"3":{"df":1,"docs":{"2":{"tf":1.0}}},"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"14":{"tf":2.6457513110645907},"153":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"171":{"tf":1.0}}},"4":{"df":1,"docs":{"200":{"tf":1.0}},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"144":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"187":{"tf":1.0},"231":{"tf":2.0},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":6,"docs":{"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"114":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":3,"docs":{"79":{"tf":1.4142135623730951},"81":{"tf":2.0},"83":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":2,"docs":{"163":{"tf":1.0},"99":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"215":{"tf":1.0},"75":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"46":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"81":{"tf":1.4142135623730951}}},"9":{"0":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"180":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"a":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.4641016151377544},"115":{"tf":1.0},"160":{"tf":2.6457513110645907},"161":{"tf":2.449489742783178},"170":{"tf":1.0},"172":{"tf":3.3166247903554},"174":{"tf":1.0},"180":{"tf":1.0},"190":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"53":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":3.1622776601683795}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":18,"docs":{"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":3.0},"138":{"tf":2.8284271247461903},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":3.4641016151377544},"23":{"tf":1.0},"231":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"v":{"df":15,"docs":{"117":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"149":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"204":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"31":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"32":{"tf":1.0},"53":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"29":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"1":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"a":{"df":2,"docs":{"141":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"139":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"157":{"tf":1.0},"54":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}}}},"df":38,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.8284271247461903},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"42":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"46":{"tf":4.242640687119285},"47":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.8284271247461903},"73":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":3.7416573867739413},"86":{"tf":2.449489742783178}}}}}}},"df":13,"docs":{"107":{"tf":1.7320508075688772},"147":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":37,"docs":{"127":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":2,"docs":{"144":{"tf":2.449489742783178},"170":{"tf":2.449489742783178}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"216":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"72":{"tf":1.0}},"s":{"df":7,"docs":{"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0}}}},"c":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.449489742783178},"24":{"tf":1.0},"27":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"30":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"168":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"108":{"tf":1.7320508075688772},"119":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":15,"docs":{"187":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"df":3,"docs":{"178":{"tf":1.0},"218":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"148":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"119":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":2.0},"234":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"95":{"tf":3.0},"96":{"tf":2.8284271247461903},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":5,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"126":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"5":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":11,"docs":{"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":2.449489742783178},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":2.0}}}},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"126":{"tf":2.0},"135":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"2":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"188":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"107":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"159":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.4142135623730951},"162":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"19":{"tf":1.0},"89":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},">":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"188":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"13":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":113,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":2,"docs":{"110":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"158":{"tf":2.8284271247461903},"160":{"tf":2.0},"32":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":4,"docs":{"127":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"223":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"130":{"tf":1.0},"161":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"229":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0}}}},"w":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"71":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"117":{"tf":1.4142135623730951},"14":{"tf":1.0},"171":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"226":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":2.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"209":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"210":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"119":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":3.4641016151377544},"182":{"tf":1.0},"226":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":1.0},"91":{"tf":3.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"146":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"104":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"132":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"180":{"tf":1.0},"232":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"215":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"118":{"tf":1.0}}},"df":5,"docs":{"116":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"200":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"168":{"tf":1.0},"215":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"126":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.7320508075688772},"218":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"25":{"tf":2.0},"30":{"tf":2.0},"43":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":2.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"135":{"tf":1.0},"199":{"tf":1.0},"34":{"tf":1.7320508075688772},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"120":{"tf":3.3166247903554},"122":{"tf":1.7320508075688772},"148":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"193":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"_":{"a":{"d":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"137":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"218":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"163":{"tf":5.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"189":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":3,"docs":{"146":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":3,"docs":{"158":{"tf":3.1622776601683795},"160":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"223":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":15,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":2.6457513110645907},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"25":{"tf":1.4142135623730951},"51":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.4142135623730951},"186":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"159":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"204":{"tf":2.449489742783178},"208":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":8,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"202":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"181":{"tf":1.7320508075688772},"202":{"tf":3.3166247903554},"203":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"161":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0}},"r":{"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":46,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.0},"199":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"231":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":3.1622776601683795},"180":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"108":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":2.8284271247461903},"209":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":2.449489742783178},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.4142135623730951},"225":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"199":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"n":{"d":{"df":12,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"29":{"tf":3.0},"74":{"tf":3.0},"75":{"tf":2.6457513110645907},"76":{"tf":3.3166247903554},"77":{"tf":2.449489742783178}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.0},"206":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"22":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0}}},"x":{"df":5,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"126":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"138":{"tf":1.7320508075688772},"22":{"tf":1.0},"232":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"221":{"tf":2.449489742783178},"223":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":2.0},"147":{"tf":1.4142135623730951},"234":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":6,"docs":{"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"233":{"tf":1.0}}}}}},"i":{"d":{"df":6,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":2.449489742783178},"134":{"tf":2.0},"135":{"tf":2.0},"137":{"tf":1.0},"139":{"tf":2.23606797749979},"179":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"182":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":3.3166247903554},"171":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"182":{"tf":3.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"230":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"138":{"tf":1.0},"145":{"tf":1.0}}},"t":{"df":5,"docs":{"134":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.872983346207417},"161":{"tf":3.0},"165":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"190":{"tf":1.0},"234":{"tf":1.7320508075688772},"99":{"tf":2.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.7320508075688772},"160":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"214":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.7320508075688772},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.23606797749979},"232":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":2.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"96":{"tf":2.0},"97":{"tf":1.7320508075688772}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"57":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"178":{"tf":2.23606797749979},"180":{"tf":3.872983346207417}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"212":{"tf":1.0},"38":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"160":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"201":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"t":{"a":{"df":12,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"127":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"25":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"110":{"tf":1.4142135623730951},"15":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":2.23606797749979},"163":{"tf":1.0},"19":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"210":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":45,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":3.1622776601683795},"109":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":3.0},"40":{"tf":3.0},"41":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"233":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"139":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"36":{"tf":1.0},"41":{"tf":2.449489742783178},"43":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"177":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.23606797749979},"211":{"tf":1.0},"231":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"182":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.4142135623730951},"155":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"142":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"c":{"df":6,"docs":{"15":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.23606797749979},"30":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"15":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":3.0},"30":{"tf":2.449489742783178},"31":{"tf":1.0},"45":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":1,"docs":{"192":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"232":{"tf":1.0},"27":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"214":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"4":{"tf":1.0},"5":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":24,"docs":{"100":{"tf":1.0},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"161":{"tf":2.8284271247461903},"168":{"tf":1.0},"172":{"tf":2.8284271247461903},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.23606797749979}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"172":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"178":{"tf":1.0},"208":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"187":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":13,"docs":{"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"155":{"tf":1.0},"188":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"130":{"tf":2.0},"132":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"212":{"tf":2.8284271247461903},"214":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"9":{"tf":1.0},"95":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"178":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":2.0},"116":{"tf":1.4142135623730951},"160":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"228":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":12,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"142":{"tf":1.0},"163":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.8284271247461903},"91":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"168":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.0},"22":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":2,"docs":{"139":{"tf":1.4142135623730951},"230":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"162":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"202":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"182":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"201":{"tf":3.3166247903554},"202":{"tf":1.7320508075688772},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":23,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"208":{"tf":1.0},"76":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"228":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":49,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":2.8284271247461903},"204":{"tf":1.0},"229":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":22,"docs":{"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":2.0},"202":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":5,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"138":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"125":{"tf":1.0},"162":{"tf":1.4142135623730951},"193":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"160":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"214":{"tf":1.0}}}},"s":{"df":2,"docs":{"185":{"tf":1.0},"202":{"tf":1.0}}}},"r":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"126":{"tf":3.605551275463989},"128":{"tf":2.23606797749979},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":3.0},"88":{"tf":3.1622776601683795},"89":{"tf":1.0},"90":{"tf":2.449489742783178},"91":{"tf":3.1622776601683795},"92":{"tf":2.0},"93":{"tf":3.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"225":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"122":{"tf":1.0},"172":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.8284271247461903},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"s":{"df":9,"docs":{"126":{"tf":1.0},"132":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"178":{"tf":2.449489742783178},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}},"_":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":37,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":20,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":41,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}}},"x":{"df":4,"docs":{"163":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"30":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}},"s":{"df":2,"docs":{"170":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"!":{"(":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.0}}}},"df":2,"docs":{"174":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":2,"docs":{"202":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"186":{"tf":1.0},"209":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"213":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"55":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":3,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"(":{"_":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":82,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"141":{"tf":3.605551275463989},"142":{"tf":3.3166247903554},"143":{"tf":2.6457513110645907},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":3.1622776601683795},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.449489742783178},"219":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.0},"77":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":2.8284271247461903}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"186":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":73,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":3.0},"148":{"tf":2.0},"150":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"g":{"a":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"204":{"tf":1.0},"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"167":{"tf":2.23606797749979},"168":{"tf":3.3166247903554},"169":{"tf":2.0},"170":{"tf":3.1622776601683795},"171":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"185":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"50":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"161":{"tf":1.0},"175":{"tf":1.0},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"204":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"df":9,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"57":{"tf":1.0},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0}},"n":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"86":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"155":{"tf":1.0},"62":{"tf":1.0}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"139":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"141":{"tf":1.0},"25":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":27,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"178":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"l":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"122":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"161":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"18":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"182":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"73":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":3,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"`":{"]":{"(":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":5,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"211":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"n":{"c":{"df":3,"docs":{"121":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"64":{"tf":1.0},"93":{"tf":1.0}}},"df":13,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"171":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"146":{"tf":3.4641016151377544},"147":{"tf":3.3166247903554},"148":{"tf":3.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"=":{"\"":{"\"":{">":{"0":{"df":0,"docs":{},"x":{"1":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{">":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"/":{"a":{">":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"\"":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"<":{"/":{"a":{">":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"d":{"#":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"'":{"df":1,"docs":{"182":{"tf":1.0}}},"df":19,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"185":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979}},"e":{"a":{"df":4,"docs":{"11":{"tf":2.0},"199":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"101":{"tf":2.449489742783178},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"234":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"163":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"133":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":2.0},"34":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"230":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":37,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":2.6457513110645907},"105":{"tf":3.7416573867739413},"106":{"tf":2.449489742783178},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"25":{"tf":2.8284271247461903},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":13,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"170":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"122":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"122":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":9,"docs":{"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"180":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"172":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"188":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"5":{"tf":1.0},"6":{"tf":2.23606797749979},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}},"n":{"c":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":2.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"137":{"tf":1.0},"159":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":2.0},"51":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":2.449489742783178},"184":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"'":{"df":10,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":7,"docs":{"133":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":2.8284271247461903},"188":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":2.449489742783178}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"221":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":20,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.7320508075688772},"188":{"tf":3.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.7320508075688772},"212":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"200":{"tf":1.0},"209":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"'":{"df":22,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"133":{"tf":1.0},"141":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"2":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":3.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":9,"docs":{"129":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":2.0}}},"k":{"df":4,"docs":{"173":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"142":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"52":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":3.605551275463989}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":2.0},"147":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"128":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"161":{"tf":1.0},"217":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0}}},"p":{"df":8,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":3.0},"128":{"tf":2.8284271247461903},"129":{"tf":3.605551275463989},"130":{"tf":3.872983346207417},"131":{"tf":2.449489742783178},"209":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"178":{"tf":2.0},"180":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"138":{"tf":2.0},"217":{"tf":2.23606797749979}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"208":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":2,"docs":{"146":{"tf":2.0},"148":{"tf":1.4142135623730951}},"g":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"167":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"3":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"188":{"tf":2.6457513110645907},"189":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":3,"docs":{"19":{"tf":1.0},"199":{"tf":1.0},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"169":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"170":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"227":{"tf":2.0},"228":{"tf":1.7320508075688772}}}}}}}},"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"117":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"111":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"202":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"19":{"tf":1.0},"29":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"130":{"tf":1.0},"15":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"57":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"66":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"170":{"tf":2.0},"188":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"138":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":3.0},"147":{"tf":3.872983346207417},"148":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"4":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":3.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"171":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"141":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":2.23606797749979},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"222":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":93,"docs":{"101":{"tf":1.0},"102":{"tf":2.6457513110645907},"103":{"tf":3.1622776601683795},"104":{"tf":3.0},"105":{"tf":3.7416573867739413},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":1.0},"141":{"tf":2.449489742783178},"143":{"tf":2.23606797749979},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.23606797749979},"149":{"tf":2.6457513110645907},"15":{"tf":1.0},"150":{"tf":2.449489742783178},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"18":{"tf":2.6457513110645907},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":3.1622776601683795},"191":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"30":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":3.0},"70":{"tf":3.872983346207417},"71":{"tf":2.449489742783178},"72":{"tf":2.6457513110645907},"73":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"_":{"a":{"df":2,"docs":{"230":{"tf":1.0},"231":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"2":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"3":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":33,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"101":{"tf":1.0},"162":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"199":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"4":{":":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":98,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":2.449489742783178},"150":{"tf":1.0},"154":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"167":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.8284271247461903},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"127":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"169":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"144":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"180":{"tf":2.449489742783178},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"120":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"0":{"df":0,"docs":{},"x":{"0":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{">":{"<":{"/":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.23606797749979},"107":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"147":{"tf":2.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":2.23606797749979},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"229":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":2.449489742783178},"97":{"tf":3.1622776601683795}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":1,"docs":{"89":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"126":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"11":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"185":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"162":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"18":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"78":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":3,"docs":{"115":{"tf":1.7320508075688772},"189":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"108":{"tf":1.0},"121":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"166":{"tf":1.4142135623730951},"43":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"68":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"114":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.4142135623730951},"187":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"78":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"89":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":36,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"220":{"tf":2.23606797749979},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"225":{"tf":2.6457513110645907},"227":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":2.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":3.0},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":2.8284271247461903},"63":{"tf":2.449489742783178},"64":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"186":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"188":{"tf":1.0},"220":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"c":{"df":7,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"231":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0}}},"df":18,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"202":{"tf":1.0},"225":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":2.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"2":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":30,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.0},"90":{"tf":2.449489742783178},"96":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"122":{"tf":1.0}}}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}},"u":{"1":{"6":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"110":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":2.449489742783178},"118":{"tf":3.1622776601683795},"126":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"169":{"tf":1.4142135623730951},"226":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"159":{"tf":1.0},"23":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":7,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"233":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"128":{"tf":1.0},"230":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"223":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"155":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"178":{"tf":1.0},"180":{"tf":1.0},"220":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":50,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.6457513110645907},"111":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":3.1622776601683795},"33":{"tf":2.8284271247461903},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.0},"169":{"tf":3.0},"188":{"tf":2.23606797749979},"39":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"202":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":3.3166247903554},"172":{"tf":2.8284271247461903},"184":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"142":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"t":{"df":14,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.0},"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"163":{"tf":3.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"17":{"tf":1.0},"178":{"tf":2.449489742783178},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"122":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"229":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"157":{"tf":1.0},"178":{"tf":1.0},"230":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"144":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"201":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"130":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.4142135623730951},"29":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":4.123105625617661},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":2.8284271247461903},"64":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"180":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"170":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"105":{"tf":1.0},"117":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"210":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{">":{"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{">":{"<":{"b":{">":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"/":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"182":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"194":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"223":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":9,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"162":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"133":{"tf":1.4142135623730951},"163":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"116":{"tf":1.0},"161":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"141":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"178":{"tf":1.7320508075688772},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":26,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":35,"docs":{"177":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"199":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"d":{"df":19,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":52,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":3.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"25":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":9,"docs":{"199":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"163":{"tf":2.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"139":{"tf":1.0},"226":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"160":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"154":{"tf":1.0},"189":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"25":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"140":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":6,"docs":{"117":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":2.8284271247461903},"98":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"79":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"162":{"tf":2.23606797749979},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"202":{"tf":2.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"110":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"181":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":1,"docs":{"107":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":1.0},"38":{"tf":1.4142135623730951},"5":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"201":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"130":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":2.6457513110645907},"26":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"188":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":14,"docs":{"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"181":{"tf":1.0},"202":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"178":{"tf":1.4142135623730951},"2":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"147":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.0},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"223":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":38,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.7320508075688772},"132":{"tf":3.7416573867739413},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"144":{"tf":2.6457513110645907},"146":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"49":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}}},"v":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"25":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772}}}},"n":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"110":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":3,"docs":{"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"223":{"tf":1.0},"84":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"129":{"tf":1.0},"163":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":13,"docs":{"154":{"tf":2.6457513110645907},"155":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":2.8284271247461903},"159":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"169":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":2.0},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":16,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}},"df":6,"docs":{"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"182":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"3":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":3.1622776601683795},"188":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"170":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"220":{"tf":1.4142135623730951},"233":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"76":{"tf":1.0}},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"182":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}},"df":3,"docs":{"182":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"112":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"131":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"221":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":25,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"194":{"tf":1.0},"224":{"tf":2.449489742783178},"225":{"tf":2.0},"226":{"tf":1.7320508075688772},"46":{"tf":1.0},"81":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":2.6457513110645907},"3":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"29":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"130":{"tf":1.0},"77":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":2.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"181":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"104":{"tf":1.0},"178":{"tf":1.0},"220":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":11,"docs":{"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"17":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":19,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"226":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"131":{"tf":1.0},"16":{"tf":1.0},"182":{"tf":1.4142135623730951},"201":{"tf":1.0},"217":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":2.23606797749979},"142":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"208":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":2,"docs":{"110":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"25":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"19":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"130":{"tf":1.0},"217":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":7,"docs":{"121":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}},"l":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"119":{"tf":3.3166247903554},"120":{"tf":3.0},"121":{"tf":3.3166247903554},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"18":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"46":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":2.8284271247461903},"147":{"tf":3.4641016151377544},"148":{"tf":2.6457513110645907},"150":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"214":{"tf":2.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"77":{"tf":1.7320508075688772},"94":{"tf":2.0},"95":{"tf":3.872983346207417},"96":{"tf":3.4641016151377544},"97":{"tf":3.1622776601683795},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":2.6457513110645907}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"158":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"218":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":57,"docs":{"107":{"tf":2.0},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"119":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"55":{"tf":2.23606797749979},"56":{"tf":2.8284271247461903},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"222":{"tf":1.0}}}},"m":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"y":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"145":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":113,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"215":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"46":{"tf":1.7320508075688772},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}}}},"df":15,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"141":{"tf":1.7320508075688772},"178":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"230":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}},"n":{"df":2,"docs":{"57":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":7,"docs":{"168":{"tf":2.6457513110645907},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":1,"docs":{"126":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"196":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":51,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"21":{"tf":4.358898943540674},"22":{"tf":4.795831523312719},"23":{"tf":3.7416573867739413},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"159":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"232":{"tf":1.0},"29":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"155":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"126":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"16":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"184":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"202":{"tf":2.8284271247461903},"203":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":3,"docs":{"182":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.0},"44":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}}},"l":{"df":3,"docs":{"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"25":{"tf":1.0},"61":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"178":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":30,"docs":{"119":{"tf":1.4142135623730951},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":4.123105625617661},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"52":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"27":{"tf":1.0}}}},"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"180":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"122":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":2.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"169":{"tf":2.0},"171":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":11,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"2":{"df":1,"docs":{"99":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":77,"docs":{"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":2.449489742783178},"115":{"tf":2.0},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":3.4641016151377544},"169":{"tf":4.123105625617661},"170":{"tf":2.6457513110645907},"171":{"tf":4.47213595499958},"172":{"tf":3.3166247903554},"174":{"tf":2.8284271247461903},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"22":{"tf":1.0},"233":{"tf":1.7320508075688772},"32":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":3.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":3.1622776601683795},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":5,"docs":{"180":{"tf":1.0},"221":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":17,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"163":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"92":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":2.8284271247461903}},"i":{"d":{"df":12,"docs":{"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"191":{"tf":1.0},"202":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":2,"docs":{"120":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"154":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":12,"docs":{"105":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":9,"docs":{"141":{"tf":1.0},"197":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}},"x":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"132":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"144":{"tf":1.0},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.4142135623730951}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"170":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":8,"docs":{"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"39":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"171":{"tf":1.7320508075688772}}},"df":145,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":2.0},"15":{"tf":1.0},"150":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":2.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":2.23606797749979},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"59":{"tf":2.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.23606797749979},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":2.0},"138":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"117":{"tf":2.449489742783178},"126":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"127":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":3.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.4142135623730951},"232":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"113":{"tf":1.0},"122":{"tf":2.6457513110645907},"142":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":61,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.6457513110645907},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":3.0},"202":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"1":{"df":1,"docs":{"96":{"tf":1.0}}},"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"117":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"163":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"170":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"210":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"215":{"tf":1.0},"89":{"tf":1.0}},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"188":{"tf":1.0},"221":{"tf":1.0}}}}}},"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"89":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":14,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"113":{"tf":4.123105625617661},"114":{"tf":2.8284271247461903},"115":{"tf":2.8284271247461903},"116":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"127":{"tf":1.0},"148":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"226":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.7320508075688772},"211":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":3.7416573867739413},"221":{"tf":2.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"df":8,"docs":{"107":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"63":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"147":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"147":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"141":{"tf":1.0},"149":{"tf":2.6457513110645907},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"182":{"tf":1.0},"229":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"113":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"y":{"df":28,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"v":{"df":4,"docs":{"128":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"208":{"tf":1.0},"21":{"tf":1.0},"93":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"230":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"189":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"223":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":1.7320508075688772},"172":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"233":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"202":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":16,"docs":{"121":{"tf":1.4142135623730951},"129":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0}}},"l":{"d":{"df":15,"docs":{"121":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"120":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"185":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"126":{"tf":2.449489742783178},"128":{"tf":2.449489742783178},"129":{"tf":2.449489742783178},"130":{"tf":2.6457513110645907},"131":{"tf":2.8284271247461903},"132":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"y":{"df":7,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}},"df":1,"docs":{"80":{"tf":1.0}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"14":{"tf":1.0}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"57":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"46":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"0":{"2":{"4":{"df":2,"docs":{"14":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.0}}},"3":{"df":1,"docs":{"232":{"tf":1.0}}},"8":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"160":{"tf":1.0},"234":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"231":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"185":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":4,"docs":{"107":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"138":{"tf":1.0},"232":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"158":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"223":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"231":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"29":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"206":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"227":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"193":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"43":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"231":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"101":{"tf":1.0},"161":{"tf":1.0},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"139":{"tf":1.0},"229":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"54":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"125":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.0},"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"152":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"140":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"185":{"tf":1.0},"205":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"210":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.0},"55":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"25":{"tf":1.0},"61":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"k":{"df":2,"docs":{"35":{"tf":1.0},"45":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":10,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"211":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"169":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"164":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"134":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"212":{"tf":1.0},"25":{"tf":1.0},"56":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"179":{"tf":1.0},"192":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"215":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"116":{"tf":1.0},"118":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"108":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"157":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"117":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"140":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"106":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"232":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"198":{"tf":1.0},"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"154":{"tf":1.0},"158":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"131":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"190":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"146":{"tf":1.0},"168":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":7,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"224":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"115":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"26":{"tf":1.0}}}},"df":7,"docs":{"118":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/sui/tomorrow-night.css b/sui/tomorrow-night.css new file mode 100644 index 00000000..81fe276e --- /dev/null +++ b/sui/tomorrow-night.css @@ -0,0 +1,102 @@ +/* Tomorrow Night Theme */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment { + color: #969896; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #cc6666; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #de935f; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rule .hljs-attribute { + color: #f0c674; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.hljs-name, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #b5bd68; +} + +/* Tomorrow Aqua */ +.hljs-title, +.css .hljs-hexcolor { + color: #8abeb7; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #81a2be; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #b294bb; +} + +.hljs { + display: block; + overflow-x: auto; + background: #1d1f21; + color: #c5c8c6; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} + +.hljs-addition { + color: #718c00; +} + +.hljs-deletion { + color: #c82829; +}